update emoji

This commit is contained in:
tateisu 2018-09-23 04:12:47 +09:00
parent 875d63fdf1
commit ac67e2d587
5 changed files with 46063 additions and 46063 deletions

View File

@ -29,7 +29,7 @@
</value>
</option>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" default="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" />
</component>
<component name="ProjectType">

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -631,14 +631,14 @@ for my $name (sort keys %name_map){
}
my %categoryNameMapping =(
'smileys & people'=>'emoji_category_people',
'animals & nature'=>'emoji_category_nature',
'food & drink'=>'emoji_category_foods',
'activities'=>'emoji_category_activity',
'travel & places'=>'emoji_category_places',
'objects'=>'emoji_category_objects',
'symbols'=>'emoji_category_symbols',
'flags'=>'emoji_category_flags',
'smileys & people'=>'CATEGORY_PEOPLE',
'animals & nature'=>'CATEGORY_NATURE',
'food & drink'=>'CATEGORY_FOODS',
'activities'=>'CATEGORY_ACTIVITY',
'travel & places'=>'CATEGORY_PLACES',
'objects'=>'CATEGORY_OBJECTS',
'symbols'=>'CATEGORY_SYMBOLS',
'flags'=>'CATEGORY_FLAGS',
);
# カテゴリを書きだす
@ -650,7 +650,7 @@ for my $category( @{ $category_data->{categories} } ){
$catResName or die "missing category resource name for $cname\n";
for my $name( @$emojis ){
$name = parseShortName($name);
addCode( qq{category(R.string.$catResName, "$name");} );
addCode( qq{category($catResName, "$name");} );
}
}
@ -663,7 +663,7 @@ if( $line_num > 0 ){
# write function to call init**()
print $fh "\tstatic final int utf16_max_length=$utf16_max_length;\n\n";
print $fh "\tpublic static final int utf16_max_length=$utf16_max_length;\n\n";
print $fh "\tstatic void initAll(){\n";
for(my $i=1;$i <= $func_num;++$i){
print $fh "\t\tinit$i();\n";

File diff suppressed because it is too large Load Diff