From 2073a65a3036fd9f79cfe8e5cbd6df63fa2a490a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20P=C3=A4per?= Date: Wed, 5 Apr 2017 22:53:25 +0200 Subject: [PATCH] Update twemoji-generator.js for Emoji 5.0 Emoji VS15/16 sequences have been moved from [`StandardizedVariants.txt`](http://unicode.org/Public/UNIDATA/StandardizedVariants.txt) to [`emoji-variation-sequences.txt`](http://unicode.org/Public/emoji/latest/emoji-variation-sequences.txt) with Unicode Emoji 5.0 / Unicode 10.0 (works already). File format is the same. --- twemoji-generator.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/twemoji-generator.js b/twemoji-generator.js index 2ebe9f63..a8cbd381 100755 --- a/twemoji-generator.js +++ b/twemoji-generator.js @@ -141,9 +141,9 @@ Queue([ // grab the list of emoji that behave differently when // variants such \uFE0E and \uFE0F are in place function grabStandardVariants(q) { - console.log('fetching StandardizedVariants.txt ... '); + console.log('fetching emoji-variation-sequences.txt ... '); http.get( - "http://unicode.org/Public/UNIDATA/StandardizedVariants.txt", + "http://unicode.org/Public/emoji/latest/emoji-variation-sequences.txt", function(res) { var chunks = []; if (res.statusCode == 200) {