version bumps

This commit is contained in:
cupcakearmy 2021-01-04 14:21:16 +01:00
parent dd33ad7f68
commit e124a756bc
No known key found for this signature in database
GPG Key ID: D28129AE5654D9D9
7 changed files with 565 additions and 319 deletions

9
.gitignore vendored
View File

@ -1,11 +1,14 @@
.cache
node_modules node_modules
yarn-error.log yarn-error.log
# Build
.cache
dist dist
*.zip *.zip
*.pem *.pem
*.crx *.crx
web-ext-artifacts
# Design
*.afphoto *.afphoto
*.afdesign *.afdesign
web-ext-artifacts

10
RELEASE.md Normal file
View File

@ -0,0 +1,10 @@
# Release
## Building
1. Bump version in `manifest.json` and `src/shared/footer.svelte`
2. Build with `yarn run dist`
## Firefox
Upload `web-ext-artifacts/ora-*.zip` in the [console](https://addons.mozilla.org/de/developers/).

View File

@ -7,7 +7,3 @@
- Dark mode support - Dark mode support
- Options - Options
- Dashboard - Dashboard
- Add footer
- Build With ♥️
- Github link
- website link

View File

@ -1,7 +1,7 @@
{ {
"manifest_version": 2, "manifest_version": 2,
"name": "Ora", "name": "Ora",
"version": "0.5", "version": "0.6",
"description": "See how much time you spend on each website and set limits", "description": "See how much time you spend on each website and set limits",
"icons": { "icons": {

View File

@ -9,7 +9,7 @@
}, },
"homepage": "https://github.com/cupcakearmy/ora", "homepage": "https://github.com/cupcakearmy/ora",
"scripts": { "scripts": {
"clean": "rm -rf dist .cache web-ext-artifacts node_modules", "clean": "rm -rf dist .cache web-ext-artifacts ora.zip",
"dev": "parcel watch --no-hmr manifest.json src/dashboard/index.html", "dev": "parcel watch --no-hmr manifest.json src/dashboard/index.html",
"build": "parcel build --no-content-hash --no-source-maps --no-minify manifest.json src/dashboard/index.html", "build": "parcel build --no-content-hash --no-source-maps --no-minify manifest.json src/dashboard/index.html",
"dist": "rm -rf dist && yarn run build && yarn pack:ff && yarn run pack:zip", "dist": "rm -rf dist && yarn run build && yarn pack:ff && yarn run pack:zip",

View File

@ -11,8 +11,11 @@
</style> </style>
<footer> <footer>
<a href="https://github.com/cupcakearmy/ora" target="_blank" rel="noreferrer">Source Code</a> <a
- v0.5 href="https://github.com/cupcakearmy/ora"
target="_blank"
rel="noreferrer">Source Code</a>
- v0.6
<br /> <br />
Made with ❤️ by Made with ❤️ by
<a href="https://nicco.io" target="_blank" rel="noreferrer">🐘</a> <a href="https://nicco.io" target="_blank" rel="noreferrer">🐘</a>

850
yarn.lock

File diff suppressed because it is too large Load Diff