discourse-emojis 1.0.15 → 1.0.16

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: 3bc1697dc89c305119f34242b3d42363b10982c9cb60b4719e3b61004a5d2ff5
4
- data.tar.gz: d5b61c5b761e85d59a51d6c11fb7b1aefcab9dfa16c690b92aca1493444a4f64
3
+ metadata.gz: bfae8855fd6d99574cd566b99a58c6b8cc95cbece463f02d6bfbed4adcc96974
4
+ data.tar.gz: 935f4ca7c7e5eb621e79a20b236800d4f9c0fbc1b3a20bb2cc187aedb08af45a
5
5
  SHA512:
6
- metadata.gz: c77670177a3b6d3ecbdeac66fda99831f3c45000a3783d3a887041142be4822eb89bb198c76a83e2b4d51be0c62a85e4b11a5e0954362721fac32e33afef3b2e
7
- data.tar.gz: 19b6cbed6364729e83b75e9a940ac56dfcc93866edad24adbd61bb7fc4675328319344543489a52f568d9e884f0eb75da782cc360f3590262d0720fba0b0c5cf
6
+ metadata.gz: c07838b1c2ff855113bad67eaaadcb17bc5390cd51b785a6e136cb5b0f306d29eb0b72961bd55cf309eec3b6e64383b6164b87893ae278ddbbc664f7ceabc933
7
+ data.tar.gz: b5c75201a1c791b68eed598be5348eee59be73ea3f3ebdde24927359843af4c0b602cbba0d173cb78f87e31e0e531553a409ff9bc850afcc67e2d0469d042d95
data/dist/aliases.json CHANGED
@@ -1638,8 +1638,8 @@
1638
1638
  "pencil": [
1639
1639
  "pencil2"
1640
1640
  ],
1641
- "calendar": [
1642
- "date"
1641
+ "date": [
1642
+ "calendar"
1643
1643
  ],
1644
1644
  "tear_off_calendar": [
1645
1645
  "calendar"
@@ -1297,7 +1297,7 @@
1297
1297
  "📁️": "file_folder",
1298
1298
  "📂️": "open_file_folder",
1299
1299
  "🗂️": "card_index_dividers",
1300
- "📅️": "calendar",
1300
+ "📅️": "date",
1301
1301
  "📆️": "tear_off_calendar",
1302
1302
  "🗒️": "spiral_notepad",
1303
1303
  "🗓️": "spiral_calendar",
data/dist/emojis.json CHANGED
@@ -5192,7 +5192,7 @@
5192
5192
  "code": "1f5c2"
5193
5193
  },
5194
5194
  {
5195
- "name": "calendar",
5195
+ "name": "date",
5196
5196
  "code": "1f4c5"
5197
5197
  },
5198
5198
  {
data/dist/groups.json CHANGED
@@ -6239,7 +6239,7 @@
6239
6239
  "tonable": false
6240
6240
  },
6241
6241
  {
6242
- "name": "calendar",
6242
+ "name": "date",
6243
6243
  "tonable": false
6244
6244
  },
6245
6245
  {
@@ -10248,8 +10248,8 @@
10248
10248
  "dividers",
10249
10249
  "index"
10250
10250
  ],
10251
- "calendar": [
10252
- "date"
10251
+ "date": [
10252
+ "calendar"
10253
10253
  ],
10254
10254
  "tear_off_calendar": [
10255
10255
  "calendar",
@@ -42,6 +42,7 @@ module DiscourseEmojis
42
42
  "keycap_8" => "eight",
43
43
  "keycap_9" => "nine",
44
44
  "keycap_10" => "ten",
45
+ "calendar" => "date",
45
46
  }
46
47
 
47
48
  EMOJI_ALIASES = {
@@ -570,7 +571,7 @@ module DiscourseEmojis
570
571
  "open_mailbox_with_lowered_flag" => ["mailbox_with_no_mail"],
571
572
  "ballot_box_with_ballot" => ["ballot_box"],
572
573
  "pencil" => ["pencil2"],
573
- "calendar" => ["date"],
574
+ "date" => ["calendar"],
574
575
  "tear_off_calendar" => ["calendar"],
575
576
  "chart_increasing" => ["chart_with_upwards_trend"],
576
577
  "chart_decreasing" => ["chart_with_downwards_trend"],
@@ -6,7 +6,6 @@ module DiscourseEmojis
6
6
  emoji_dir = File.join(app.config.root, "public/images/emoji")
7
7
  FileUtils.rm_rf(emoji_dir)
8
8
  Discourse::Utils.atomic_ln_s(DiscourseEmojis.path_for_emojis, emoji_dir)
9
- STDERR.puts "\nCreated emoji symlink: #{DiscourseEmojis.path_for_emojis} -> #{emoji_dir}\n\n"
10
9
  end
11
10
  end
12
11
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DiscourseEmojis
4
- VERSION = "1.0.15"
4
+ VERSION = "1.0.16"
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.15
4
+ version: 1.0.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joffrey Jaffeux