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 +4 -4
- data/dist/aliases.json +2 -2
- data/dist/emoji_to_name.json +1 -1
- data/dist/emojis.json +1 -1
- data/dist/groups.json +1 -1
- data/dist/search_aliases.json +2 -2
- data/lib/discourse_emojis/constants.rb +2 -1
- data/lib/discourse_emojis/railtie.rb +0 -1
- data/lib/discourse_emojis/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bfae8855fd6d99574cd566b99a58c6b8cc95cbece463f02d6bfbed4adcc96974
|
4
|
+
data.tar.gz: 935f4ca7c7e5eb621e79a20b236800d4f9c0fbc1b3a20bb2cc187aedb08af45a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c07838b1c2ff855113bad67eaaadcb17bc5390cd51b785a6e136cb5b0f306d29eb0b72961bd55cf309eec3b6e64383b6164b87893ae278ddbbc664f7ceabc933
|
7
|
+
data.tar.gz: b5c75201a1c791b68eed598be5348eee59be73ea3f3ebdde24927359843af4c0b602cbba0d173cb78f87e31e0e531553a409ff9bc850afcc67e2d0469d042d95
|
data/dist/aliases.json
CHANGED
data/dist/emoji_to_name.json
CHANGED
data/dist/emojis.json
CHANGED
data/dist/groups.json
CHANGED
data/dist/search_aliases.json
CHANGED
@@ -10248,8 +10248,8 @@
|
|
10248
10248
|
"dividers",
|
10249
10249
|
"index"
|
10250
10250
|
],
|
10251
|
-
"
|
10252
|
-
"
|
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
|
-
"
|
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
|