diff --git a/CHANGELOG.md b/CHANGELOG.md index 36ac5e6..d8b038f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Nothing -## [0.3.9] - 2024.04-28 +## [0.3.10] - 2024.05.11 +### Added +- Share an image +- Choose a file on the device for a profile image +### Changed in DB or environment +- Nothing + + +## [0.3.9] - 2024.04.28 - 874e717e698b93a1ace9f588e675b8a3dccd7617 ### Added - Offers on contacts page - Checks on front page until they show as registered @@ -24,7 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Nothing -## [0.3.8] - 2024.04-20 - 15c026c80ce03a26cae3ff80b0888934c101c7e2 +## [0.3.8] - 2024.04.20 - 15c026c80ce03a26cae3ff80b0888934c101c7e2 ### Added - Profile image for user ### Fixed @@ -33,7 +41,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Nothing -## [0.3.7] - 2024.04-10 - cf18f1543a700d62a5f9e764905a4aafe1fb229b +## [0.3.7] - 2024.04.10 - cf18f1543a700d62a5f9e764905a4aafe1fb229b ### Added - Filter on home page feed - Ability to set time of daily notification diff --git a/README.md b/README.md index 7046eac..4d9e59f 100644 --- a/README.md +++ b/README.md @@ -16,28 +16,30 @@ We have pkgx.dev set up in package.json, so you can use `dev` to set up the dev npm install ``` -### Compiles and hot-reloads for development +### Compile and hot-reloads for development ``` npm run dev ``` -### Builds the production app +### Build the test & production app ``` npm run serve ``` -### Lints and fixes files +### Lint and fix files ``` npm run lint ``` -### Compiles and minifies for production +### Compile and minify for test & production * If there are DB changes: before updating the test server, open browser(s) with current version to test DB migrations. +* When deploying to a different domain, look at the "domain" note in the additional-scripts.js file. + * `npx prettier --write ./sw_scripts/` -* Update the project.task.yaml & CHANGELOG.md & the version in package.json, run `npm install`. +* Update the ClickUp tasks & CHANGELOG.md & the version in package.json, run `npm install`. * Record what version is currently on production. diff --git a/package-lock.json b/package-lock.json index e901101..08c7fbd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "TimeSafari", - "version": "0.3.10-beta", + "version": "0.3.10", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "TimeSafari", - "version": "0.3.10-beta", + "version": "0.3.10", "dependencies": { "@dicebear/collection": "^5.4.1", "@dicebear/core": "^5.4.1", diff --git a/package.json b/package.json index 95a5472..67fcdc1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "TimeSafari", - "version": "0.3.10-beta", + "version": "0.3.10", "private": true, "scripts": { "dev": "vite", diff --git a/src/components/PhotoDialog.vue b/src/components/PhotoDialog.vue index dcec9c9..93e8308 100644 --- a/src/components/PhotoDialog.vue +++ b/src/components/PhotoDialog.vue @@ -378,7 +378,7 @@ export default class PhotoDialog extends Vue { group: "alert", type: "danger", title: "Error", - text: "There was an error saving the picture. Please try again.", + text: "There was an error saving the picture.", }, 5000, ); diff --git a/src/main.ts b/src/main.ts index c4a2336..d96041c 100644 --- a/src/main.ts +++ b/src/main.ts @@ -13,6 +13,7 @@ import { library } from "@fortawesome/fontawesome-svg-core"; import { faArrowLeft, faArrowRight, + faArrowRotateBackward, faArrowUpRightFromSquare, faBan, faBitcoinSign, @@ -77,6 +78,7 @@ import { library.add( faArrowLeft, faArrowRight, + faArrowRotateBackward, faArrowUpRightFromSquare, faBan, faBitcoinSign, diff --git a/src/views/SharedPhotoView.vue b/src/views/SharedPhotoView.vue index 86d902d..9230622 100644 --- a/src/views/SharedPhotoView.vue +++ b/src/views/SharedPhotoView.vue @@ -35,6 +35,7 @@ Cancel +
@@ -52,8 +53,10 @@