Browse Source

bump to version 0.3.11 (and enhance warning on profile deletion)

pull/117/head
Trent Larson 4 months ago
parent
commit
567bcad88d
  1. 11
      CHANGELOG.md
  2. 4
      package-lock.json
  3. 2
      package.json
  4. 3
      src/views/AccountViewView.vue

11
CHANGELOG.md

@ -10,7 +10,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Nothing - 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 ### Added
- Share an image - Share an image
- Choose a file on the device for a profile image - Choose a file on the device for a profile image

4
package-lock.json

@ -1,12 +1,12 @@
{ {
"name": "TimeSafari", "name": "TimeSafari",
"version": "0.3.11-beta", "version": "0.3.11",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "TimeSafari", "name": "TimeSafari",
"version": "0.3.11-beta", "version": "0.3.11",
"dependencies": { "dependencies": {
"@dicebear/collection": "^5.4.1", "@dicebear/collection": "^5.4.1",
"@dicebear/core": "^5.4.1", "@dicebear/core": "^5.4.1",

2
package.json

@ -1,6 +1,6 @@
{ {
"name": "TimeSafari", "name": "TimeSafari",
"version": "0.3.11-beta", "version": "0.3.11",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",

3
src/views/AccountViewView.vue

@ -1388,7 +1388,8 @@ export default class AccountViewView extends Vue {
{ {
group: "modal", group: "modal",
type: "confirm", 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: "", text: "",
onYes: this.deleteImage, onYes: this.deleteImage,
}, },

Loading…
Cancel
Save