Skip to content

Commit

Permalink
Adjust for AMO release
Browse files Browse the repository at this point in the history
bump version
fix translation JSONs
add file/script things
  • Loading branch information
rugk committed Apr 3, 2019
1 parent 6008c3b commit 367177c
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@ node_modules/

# do not commit emoji images
src/popup/img/emoji-images/*.png

# private AMO stuff
assets/texts/en/amo-review.txt
3 changes: 2 additions & 1 deletion scripts/make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ zip -r -FS "../build/$EXTENSION_NAME.xpi" ./* -x "tests/*" -x "**/tests/*" \
-x "docs/*" -x "**/docs/*" \
-x "examples/*" -x "**/examples/*" -x "**/*.example" \
-x "**/README.md" -x "**/CONTRIBUTING.md" -x "**/manifest.json" \
-x "**/.git" -x "**/.gitignore" -x "**/.gitmodules" -x "**/.eslintrc" \
-x "**/.git" -x "**/.gitignore" -x "**/.gitmodules" -x "**/.gitkeep" \
-x "**/.eslintrc" \
-x "**/package.json" -x "**/package-lock.json" -x "**/webpack.config.js" \
-x "popup/lib/emoji-mart-embed/src.js" \
-x "**/.editorconfig"
Expand Down
2 changes: 1 addition & 1 deletion scripts/manifests/dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "AwesomeEmojiPicker DEV VERSION",
"short_name": "__MSG_extensionNameShort__",
"version": "0.4",
"version": "0.7",
"author": "rugk",

"description": "__MSG_extensionDescription__",
Expand Down
2 changes: 1 addition & 1 deletion scripts/manifests/firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "__MSG_extensionName__",
"short_name": "__MSG_extensionNameShort__",
"version": "0.4",
"version": "0.7",
"author": "rugk",

"description": "__MSG_extensionDescription__",
Expand Down
8 changes: 4 additions & 4 deletions src/_locales/de/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,10 @@
"message": "Wie die Emojis aussehen sollen.",
"description": "This is an option shown in the add-on settings. It describes the optionEmojiPickerSet setting."
},
"optionEmojiPickerEmojiSize": {
"message": "Emoji-Größe:",
"description": "This is an option shown in the add-on settings."
},
"optionEmojiSize16px": {
"message": "Klein (16px)",
"description": "Option of the emoji size. Do mention a 'human-readbable' description first, followed by the technical pixel size."
Expand All @@ -133,10 +137,6 @@
"message": "Breite des Auswahlfensters:",
"description": "This is an option shown in the add-on settings."
},
"optionEmojiPickerShowTooltip": {
"message": "Zeige einen Tooltip",
"description": "This is an option shown in the add-on settings."
},
"optionEmojisPerLineStatusSingular": {
"message": "($INTEGER$ Emoji pro Zeile)",
"description": "This is the number of emojis per line in its singular form.",
Expand Down
4 changes: 0 additions & 4 deletions src/_locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,6 @@
"message": "Emoji size:",
"description": "This is an option shown in the add-on settings."
},
"optionEmojiPickerSetDescr": {
"message": "What style to use for the Emojis.",
"description": "This is an option shown in the add-on settings. It describes the optionEmojiPickerEmojiSize setting."
},
"optionEmojiSize16px": {
"message": "Small (16px)",
"description": "Option of the emoji size. Do mention a 'human-readbable' description first, followed by the technical pixel size."
Expand Down
4 changes: 2 additions & 2 deletions src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
"manifest_version": 2,
"name": "AwesomeEmojiPicker DEV VERSION",
"short_name": "__MSG_extensionNameShort__",
"version": "0.4",
"version": "0.7",
"author": "rugk",

"description": "__MSG_extensionDescription__",
"homepage_url": "https://github.com/rugk/awesome-emoji-picker",

"browser_action": {
"browser_style": true,
"browser_style": false,
"default_icon": "icons/fa-grin-dark.svg",
"default_title": "__MSG_browserActionButtonTitle__",
"default_popup": "popup/index.html",
Expand Down

0 comments on commit 367177c

Please sign in to comment.