Browse Source

Update emoji codepoint mappings to v11.0 (#9618)

Eugen Rochko 5 years ago
parent
commit
2ee779dcd3
2 changed files with 3 additions and 1 deletions
  1. 0 0
      app/javascript/mastodon/features/emoji/emoji_map.json
  2. 3 1
      lib/tasks/emojis.rake

File diff suppressed because it is too large
+ 0 - 0
app/javascript/mastodon/features/emoji/emoji_map.json


+ 3 - 1
lib/tasks/emojis.rake

@@ -15,7 +15,7 @@ end
 namespace :emojis do
   desc 'Generate a unicode to filename mapping'
   task :generate do
-    source = 'http://www.unicode.org/Public/emoji/5.0/emoji-test.txt'
+    source = 'http://www.unicode.org/Public/emoji/11.0/emoji-test.txt'
     codes  = []
     dest   = Rails.root.join('app', 'javascript', 'mastodon', 'features', 'emoji', 'emoji_map.json')
 
@@ -43,6 +43,8 @@ namespace :emojis do
     existence_maps.each do |group|
       existing_one = group.key(true)
 
+      next if existing_one.nil?
+
       group.each_key do |key|
         map[codepoints_to_unicode(key)] = codepoints_to_filename(existing_one)
       end

Some files were not shown because too many files changed in this diff