Skip to content

Commit

Permalink
Merge pull request #109 from opentween/update-twemoji-pattern
Browse files Browse the repository at this point in the history
Twemojiの正規表現パターンを更新
  • Loading branch information
upsilon authored Feb 4, 2022
2 parents 6a99ce4 + 9111810 commit ef34c5a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
12 changes: 12 additions & 0 deletions OpenTween.Tests/TweetExtractorTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,18 @@ public void ExtractEmojiEntities_Unicode12Test()
Assert.Equal("https://twemoji.maxcdn.com/2/72x72/1f9c5.png", entity.Url);
}

[Fact]
public void ExtractEmojiEntities_Unicode13Test()
{
// Unicode 13.0 で追加された絵文字
var origText = "🥷"; // U+1F977 (NINJA)
var entity = TweetExtractor.ExtractEmojiEntities(origText).Single();

Assert.Equal(new[] { 0, 1 }, entity.Indices);
Assert.Equal("🥷", entity.Text);
Assert.Equal("https://twemoji.maxcdn.com/2/72x72/1f977.png", entity.Url);
}

[Fact]
public void ExtractEmojiEntities_EmojiModifiers_CombiningTest()
{
Expand Down
2 changes: 2 additions & 0 deletions OpenTween/Resources/ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

==== Ver 2.4.4-dev(2019/xx/xx)
* NEW: アカウント追加時の認可URLを右クリックでコピー可能にしました
* NEW: Twemoji 13.1 に対応しました
- Unicode 13.0 で追加された絵文字が表示されるようになります
* CHG: pic.twitter.com の画像URLのフォーマット変更に対応
* CHG: Instagramのサムネイルを表示するURLのパターンを追加
* CHG: YouTubeのサムネイルを表示するURLのパターンを追加 (thx @Hawklaver!)
Expand Down
Loading

0 comments on commit ef34c5a

Please sign in to comment.