Browse Source

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

pull/4/head
Eugen Rochko 5 years ago
committed by GitHub
parent
commit
2ee779dcd3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions
  1. +1
    -1
      app/javascript/mastodon/features/emoji/emoji_map.json
  2. +3
    -1
      lib/tasks/emojis.rake

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


+ 3
- 1
lib/tasks/emojis.rake View File

@ -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…
Cancel
Save