From 567bcad88dfb7e9ac8fea72530d1163985e4a7cc Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Sun, 19 May 2024 08:39:18 -0600 Subject: [PATCH] bump to version 0.3.11 (and enhance warning on profile deletion) --- CHANGELOG.md | 11 ++++++++++- package-lock.json | 4 ++-- package.json | 2 +- src/views/AccountViewView.vue | 3 ++- 4 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8b038f..3c57861 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Nothing -## [0.3.10] - 2024.05.11 +## [0.3.11] - 2024.05.19 +### Added +- Choose a file for gifts, and a URL for gifts & profiles +### Fixed +- Multiple button pushes required to switch camera +### Changed in DB or environment +- Nothing + + +## [0.3.10] - 2024.05.11 - 03ac31d98110f7828cf9acb366db8d01b185f64c ### Added - Share an image - Choose a file on the device for a profile image diff --git a/package-lock.json b/package-lock.json index f40aa5e..c7479ea 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "TimeSafari", - "version": "0.3.11-beta", + "version": "0.3.11", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "TimeSafari", - "version": "0.3.11-beta", + "version": "0.3.11", "dependencies": { "@dicebear/collection": "^5.4.1", "@dicebear/core": "^5.4.1", diff --git a/package.json b/package.json index 3a65cb5..6cda4bb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "TimeSafari", - "version": "0.3.11-beta", + "version": "0.3.11", "private": true, "scripts": { "dev": "vite", diff --git a/src/views/AccountViewView.vue b/src/views/AccountViewView.vue index 1176c7b..5485f52 100644 --- a/src/views/AccountViewView.vue +++ b/src/views/AccountViewView.vue @@ -1388,7 +1388,8 @@ export default class AccountViewView extends Vue { { group: "modal", type: "confirm", - title: "Are you sure you want to delete your profile picture?", + title: + "Note that anyone with you already as a contact will no longer see a picture, and you will have to reshare your data with them if you save a new picture. Are you sure you want to delete your profile picture?", text: "", onYes: this.deleteImage, },