Skip to content

Commit

Permalink
remove component group
Browse files Browse the repository at this point in the history
  • Loading branch information
jjaffeux committed Feb 21, 2025
1 parent 16ea464 commit a1b17a0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 23 deletions.
22 changes: 0 additions & 22 deletions dist/groups.json
Original file line number Diff line number Diff line change
Expand Up @@ -2803,28 +2803,6 @@
],
"tabicon": "wave"
},
{
"name": "component",
"icons": [
{
"name": "red_hair",
"tonable": false
},
{
"name": "curly_hair",
"tonable": false
},
{
"name": "white_hair",
"tonable": false
},
{
"name": "bald",
"tonable": false
}
],
"tabicon": null
},
{
"name": "animals_&_nature",
"icons": [
Expand Down
2 changes: 1 addition & 1 deletion lib/discourse_emojis/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module DiscourseEmojis
VERSION = "1.0.5"
VERSION = "1.0.6"
end
3 changes: 3 additions & 0 deletions lib/tasks/db.rake
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,9 @@ def generate_groups(output_file)

emoji_groups << current_group

# component is not a real group, it's only used in combination with other emojis
emoji_groups.delete_if { |hash| hash[:name] == "component" }

File.open(output_file, "w") { |f| f.write(JSON.pretty_generate(emoji_groups)) }
end

Expand Down

0 comments on commit a1b17a0

Please sign in to comment.