diff --git a/.gitignore b/.gitignore index 015e043..a3a093a 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/scripts/make.sh b/scripts/make.sh index 1e59585..2ea847c 100755 --- a/scripts/make.sh +++ b/scripts/make.sh @@ -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" diff --git a/scripts/manifests/dev.json b/scripts/manifests/dev.json index 57a7744..7500885 100644 --- a/scripts/manifests/dev.json +++ b/scripts/manifests/dev.json @@ -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__", diff --git a/scripts/manifests/firefox.json b/scripts/manifests/firefox.json index 0ef3a5b..5bc3e83 100644 --- a/scripts/manifests/firefox.json +++ b/scripts/manifests/firefox.json @@ -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__", diff --git a/src/_locales/de/messages.json b/src/_locales/de/messages.json index ca611f7..277bc34 100644 --- a/src/_locales/de/messages.json +++ b/src/_locales/de/messages.json @@ -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." @@ -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.", diff --git a/src/_locales/en/messages.json b/src/_locales/en/messages.json index b5f6a86..7c790f8 100644 --- a/src/_locales/en/messages.json +++ b/src/_locales/en/messages.json @@ -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." diff --git a/src/manifest.json b/src/manifest.json index a9070e2..7500885 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -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",