discourse-emojis 1.0.17 → 1.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 14ac2de84e544b22eec2b1e14865cef6d0969f6388e1a4889e9bb82f89af838d
4
- data.tar.gz: 3d91f117adb449fb4ff420cc98c90b70db060c831b2b041e06ec28d0f893c236
3
+ metadata.gz: 99c42bb153c0c83511ba8bf3d5243ae5a3059c4c2866de9f33d1d5a295e2227c
4
+ data.tar.gz: a9118e66cbeeb1c2f2e36e8ed1eb055191859e05852e327429c48933068fb439
5
5
  SHA512:
6
- metadata.gz: 63adf47779dcc722877eeaa258634390ff1dda7dd48f2f512356d9b9fb179bcf9dba6acfd0d0fed15318d99e2eebd624c7500fcb4a7ebc8d302561bd67446f91
7
- data.tar.gz: d843b8ef454af77a4f36a082a781f14924091b0b59fc7694c31c13c513b5b6938f89999b8735858f93cbec239603a88e418161462ebd45bc01ed101812cf8737
6
+ metadata.gz: 62d6cd6bffa04f6f668f0469f50350face146129893458048c3c358636fb43334403a0da15f1fb50d984c0049552b1c48b4b112b22758848d026cfc7f6eb9e16
7
+ data.tar.gz: f782d3c1681e8490ae67be968d8544a759ad401c4e098770095de4aa0777732378ab44ba67f0eaa0c96a0023601a2320508a8054786bdf30a5dc2512d3e4c9da
data/dist/aliases.json CHANGED
@@ -631,8 +631,8 @@
631
631
  "worried_face": [
632
632
  "worried"
633
633
  ],
634
- "face_with_open_mouth": [
635
- "open_mouth"
634
+ "open_mouth": [
635
+ "face_with_open_mouth"
636
636
  ],
637
637
  "hushed_face": [
638
638
  "hushed"
@@ -661,6 +661,9 @@
661
661
  "crying_face": [
662
662
  "cry"
663
663
  ],
664
+ "cry": [
665
+ "crying_face"
666
+ ],
664
667
  "loudly_crying_face": [
665
668
  "sob"
666
669
  ],
@@ -80,7 +80,7 @@
80
80
  "😟ī¸": "worried_face",
81
81
  "🙁ī¸": "slightly_frowning_face",
82
82
  "☚ī¸": "frowning",
83
- "😮ī¸": "face_with_open_mouth",
83
+ "😮ī¸": "open_mouth",
84
84
  "đŸ˜¯ī¸": "hushed_face",
85
85
  "😲ī¸": "astonished_face",
86
86
  "đŸ˜ŗī¸": "flushed_face",
@@ -91,7 +91,7 @@
91
91
  "😨ī¸": "fearful_face",
92
92
  "😰ī¸": "anxious_face_with_sweat",
93
93
  "đŸ˜Ĩī¸": "sad_but_relieved_face",
94
- "đŸ˜ĸī¸": "crying_face",
94
+ "đŸ˜ĸī¸": "cry",
95
95
  "😭ī¸": "loudly_crying_face",
96
96
  "😱ī¸": "face_screaming_in_fear",
97
97
  "😖ī¸": "confounded_face",
data/dist/emojis.json CHANGED
@@ -324,7 +324,7 @@
324
324
  "code": "2639"
325
325
  },
326
326
  {
327
- "name": "face_with_open_mouth",
327
+ "name": "open_mouth",
328
328
  "code": "1f62e"
329
329
  },
330
330
  {
@@ -368,7 +368,7 @@
368
368
  "code": "1f625"
369
369
  },
370
370
  {
371
- "name": "crying_face",
371
+ "name": "cry",
372
372
  "code": "1f622"
373
373
  },
374
374
  {
data/dist/groups.json CHANGED
@@ -347,7 +347,7 @@
347
347
  "tonable": false
348
348
  },
349
349
  {
350
- "name": "face_with_open_mouth",
350
+ "name": "open_mouth",
351
351
  "tonable": false
352
352
  },
353
353
  {
@@ -391,7 +391,7 @@
391
391
  "tonable": false
392
392
  },
393
393
  {
394
- "name": "crying_face",
394
+ "name": "cry",
395
395
  "tonable": false
396
396
  },
397
397
  {
@@ -1002,7 +1002,7 @@
1002
1002
  "frown",
1003
1003
  "sad"
1004
1004
  ],
1005
- "face_with_open_mouth": [
1005
+ "open_mouth": [
1006
1006
  "believe",
1007
1007
  "face",
1008
1008
  "forgot",
@@ -1152,9 +1152,8 @@
1152
1152
  "time",
1153
1153
  "whew"
1154
1154
  ],
1155
- "crying_face": [
1155
+ "cry": [
1156
1156
  "awful",
1157
- "cry",
1158
1157
  "crying",
1159
1158
  "face",
1160
1159
  "feels",
@@ -47,6 +47,8 @@ module DiscourseEmojis
47
47
  "grinning_squinting_face" => "laughing",
48
48
  "angry_face" => "angry",
49
49
  "clapping_hands" => "clap",
50
+ "face_with_open_mouth" => "open_mouth",
51
+ "crying_face" => "cry",
50
52
  }
51
53
 
52
54
  EMOJI_ALIASES = {
@@ -243,7 +245,7 @@ module DiscourseEmojis
243
245
  "face_with_crossed_out_eyes" => ["dizzy_face"],
244
246
  "confused_face" => ["confused"],
245
247
  "worried_face" => ["worried"],
246
- "face_with_open_mouth" => ["open_mouth"],
248
+ "open_mouth" => ["face_with_open_mouth"],
247
249
  "hushed_face" => ["hushed"],
248
250
  "astonished_face" => ["astonished"],
249
251
  "flushed_face" => ["flushed"],
@@ -253,6 +255,7 @@ module DiscourseEmojis
253
255
  "anxious_face_with_sweat" => ["cold_sweat"],
254
256
  "sad_but_relieved_face" => ["disappointed_relieved"],
255
257
  "crying_face" => ["cry"],
258
+ "cry" => ["crying_face"],
256
259
  "loudly_crying_face" => ["sob"],
257
260
  "face_screaming_in_fear" => ["scream"],
258
261
  "confounded_face" => ["confounded"],
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DiscourseEmojis
4
- VERSION = "1.0.17"
4
+ VERSION = "1.0.18"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: discourse-emojis
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.17
4
+ version: 1.0.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joffrey Jaffeux