Update emoji codepoint mappings to v11.0 (#9618)
This commit is contained in:
parent
5f387995d9
commit
2ee779dcd3
File diff suppressed because one or more lines are too long
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue