From ca1b83275b820618ea6a94f6bce9e89e83924d4d Mon Sep 17 00:00:00 2001 From: cupcakearmy Date: Mon, 12 Oct 2020 01:39:39 +0200 Subject: [PATCH] footer & store assets --- .gitignore | 1 + manifest.json | 4 +- package.json | 2 +- src/dashboard/App.svelte | 3 ++ src/options/App.svelte | 3 ++ src/shared/footer.svelte | 19 +++++++++ src/shared/utils.js | 2 +- store/a.png | Bin 0 -> 86103 bytes store/b.png | Bin 0 -> 31644 bytes store/c.png | Bin 0 -> 32830 bytes store/logo.png | Bin 0 -> 7031 bytes yarn.lock | 83 ++++++++++----------------------------- 12 files changed, 50 insertions(+), 67 deletions(-) create mode 100644 src/shared/footer.svelte create mode 100644 store/a.png create mode 100644 store/b.png create mode 100644 store/c.png create mode 100644 store/logo.png diff --git a/.gitignore b/.gitignore index d190d47..734e4b1 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,5 @@ dist *.zip *.pem *.crx +*.afphoto web-ext-artifacts \ No newline at end of file diff --git a/manifest.json b/manifest.json index a6a1cb3..3f03123 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Ora", - "version": "0.4", + "version": "0.5", "description": "See how much time you spend on each website and set limits", "icons": { @@ -33,5 +33,5 @@ "js": ["./src/client/index.js"] } ], - "web_accessible_resources": ["./icons/watch.svg"] + "web_accessible_resources": ["./icons/watch.png", "./icons/watch-alt.png"] } diff --git a/package.json b/package.json index 875ace0..a4cc735 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "devDependencies": { "@types/firefox-webext-browser": "^78.0.1", "@types/lodash": "^4.14.161", - "crx": "^5.0.1", + "crx3": "^1.1.2", "parcel-bundler": "^1.12.4", "parcel-plugin-svelte": "^4.0.6", "parcel-plugin-web-extension": "^1.6.1", diff --git a/src/dashboard/App.svelte b/src/dashboard/App.svelte index e50ccd6..8e5d9ac 100644 --- a/src/dashboard/App.svelte +++ b/src/dashboard/App.svelte @@ -4,6 +4,7 @@ import Dev from './components/Dev.svelte' import Dashboard from './pages/Dashboard.svelte' import Limits from './pages/Limits.svelte' + import Footer from '../shared/footer.svelte' import { isDev } from '../shared/utils' @@ -34,4 +35,6 @@ + +