From ce39fbd462355c9a8feb42656ad2c60786398cbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikola=20Forr=C3=B3?= Date: Wed, 7 Oct 2020 11:25:42 +0200 Subject: [PATCH] Update directory structure and add Makefile --- .gitignore | 1 + Makefile | 8 ++ LICENSE => improved-crowdcast-ux/LICENSE | 0 .../content.css | 0 .../content.js | 0 emojis.js => improved-crowdcast-ux/emojis.js | 0 .../icons}/128.png | Bin {icons => improved-crowdcast-ux/icons}/16.png | Bin {icons => improved-crowdcast-ux/icons}/32.png | Bin {icons => improved-crowdcast-ux/icons}/48.png | Bin {icons => improved-crowdcast-ux/icons}/64.png | Bin improved-crowdcast-ux/icons/x.svg | 86 ++++++++++++++++++ .../manifest.json | 2 +- popup.css => improved-crowdcast-ux/popup.css | 0 .../popup.html | 0 popup.js => improved-crowdcast-ux/popup.js | 0 16 files changed, 96 insertions(+), 1 deletion(-) create mode 100644 Makefile rename LICENSE => improved-crowdcast-ux/LICENSE (100%) rename content.css => improved-crowdcast-ux/content.css (100%) rename content.js => improved-crowdcast-ux/content.js (100%) rename emojis.js => improved-crowdcast-ux/emojis.js (100%) rename {icons => improved-crowdcast-ux/icons}/128.png (100%) rename {icons => improved-crowdcast-ux/icons}/16.png (100%) rename {icons => improved-crowdcast-ux/icons}/32.png (100%) rename {icons => improved-crowdcast-ux/icons}/48.png (100%) rename {icons => improved-crowdcast-ux/icons}/64.png (100%) create mode 100644 improved-crowdcast-ux/icons/x.svg rename manifest.json => improved-crowdcast-ux/manifest.json (96%) rename popup.css => improved-crowdcast-ux/popup.css (100%) rename popup.html => improved-crowdcast-ux/popup.html (100%) rename popup.js => improved-crowdcast-ux/popup.js (100%) diff --git a/.gitignore b/.gitignore index 85583dc..bcb16e1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +Credentials.mk .web-extension-id improved-crowdcast-ux.xpi improved-crowdcast-ux.crx diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..370abe8 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +include Credentials.mk + +.PHONY: improved-crowdcast-ux.xpi + +improved-crowdcast-ux.xpi: + web-ext sign --api-key=$(API_KEY) --api-secret=$(API_SECRET) \ + --source-dir=improved-crowdcast-ux \ + --artifacts-dir=. --filename=improved-crowdcast-ux.xpi diff --git a/LICENSE b/improved-crowdcast-ux/LICENSE similarity index 100% rename from LICENSE rename to improved-crowdcast-ux/LICENSE diff --git a/content.css b/improved-crowdcast-ux/content.css similarity index 100% rename from content.css rename to improved-crowdcast-ux/content.css diff --git a/content.js b/improved-crowdcast-ux/content.js similarity index 100% rename from content.js rename to improved-crowdcast-ux/content.js diff --git a/emojis.js b/improved-crowdcast-ux/emojis.js similarity index 100% rename from emojis.js rename to improved-crowdcast-ux/emojis.js diff --git a/icons/128.png b/improved-crowdcast-ux/icons/128.png similarity index 100% rename from icons/128.png rename to improved-crowdcast-ux/icons/128.png diff --git a/icons/16.png b/improved-crowdcast-ux/icons/16.png similarity index 100% rename from icons/16.png rename to improved-crowdcast-ux/icons/16.png diff --git a/icons/32.png b/improved-crowdcast-ux/icons/32.png similarity index 100% rename from icons/32.png rename to improved-crowdcast-ux/icons/32.png diff --git a/icons/48.png b/improved-crowdcast-ux/icons/48.png similarity index 100% rename from icons/48.png rename to improved-crowdcast-ux/icons/48.png diff --git a/icons/64.png b/improved-crowdcast-ux/icons/64.png similarity index 100% rename from icons/64.png rename to improved-crowdcast-ux/icons/64.png diff --git a/improved-crowdcast-ux/icons/x.svg b/improved-crowdcast-ux/icons/x.svg new file mode 100644 index 0000000..8a45715 --- /dev/null +++ b/improved-crowdcast-ux/icons/x.svg @@ -0,0 +1,86 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/manifest.json b/improved-crowdcast-ux/manifest.json similarity index 96% rename from manifest.json rename to improved-crowdcast-ux/manifest.json index eca9c3a..d3d155b 100644 --- a/manifest.json +++ b/improved-crowdcast-ux/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Improved Crowdcast UX", - "version": "0.1", + "version": "0.2", "icons": { "16": "icons/16.png", "32": "icons/32.png", diff --git a/popup.css b/improved-crowdcast-ux/popup.css similarity index 100% rename from popup.css rename to improved-crowdcast-ux/popup.css diff --git a/popup.html b/improved-crowdcast-ux/popup.html similarity index 100% rename from popup.html rename to improved-crowdcast-ux/popup.html diff --git a/popup.js b/improved-crowdcast-ux/popup.js similarity index 100% rename from popup.js rename to improved-crowdcast-ux/popup.js