diff --git a/CHANGELOG.md b/CHANGELOG.md index b8a7f7a2..0c08a6c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.1.0] - 2023.11.?? +## [0.1.1] - 2023.10.31 ### Added - Basics: create ID, record a give, declare a project, search, and get notifications. diff --git a/package-lock.json b/package-lock.json index 8c49dd3e..c03a367a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "kickstart-for-time-pwa", - "version": "0.1.0", + "version": "0.1.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "kickstart-for-time-pwa", - "version": "0.1.0", + "version": "0.1.1", "dependencies": { "@ethersproject/hdnode": "^5.7.0", "@fortawesome/fontawesome-svg-core": "^6.4.0", diff --git a/package.json b/package.json index 1faeb6cd..5fb2b6c2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kickstart-for-time-pwa", - "version": "0.1.0", + "version": "0.1.1", "private": true, "scripts": { "serve": "vue-cli-service serve", diff --git a/project.task.yaml b/project.task.yaml index ec6eb3a7..3a3cf5c4 100644 --- a/project.task.yaml +++ b/project.task.yaml @@ -38,7 +38,7 @@ tasks: - .2 fix rate limit verbiage (with the new one-per-day allowance) assignee:trent - .1 remove the logic to exclude beforeId in list of plans after server has commit 26b25af605e715600d4f12b6416ed9fd7142d164 - .2 in SeedBackupView, don't load the mnemonic and keep it in memory; only load it when they click "show" -- .1 change default server in app.ts +- .1 Make give description text box into something that expands as they type - Discuss whether the remaining tasks are worthwhile before MVP release. diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue index b2e31d0e..b938062a 100644 --- a/src/views/HomeView.vue +++ b/src/views/HomeView.vue @@ -415,6 +415,7 @@ export default class HomeView extends Vue { } giveDescription(giveRecord: GiveServerRecord) { + // similar code is in endorser-mobile utility.ts // claim.claim happen for some claims wrapped in a Verifiable Credential // eslint-disable-next-line @typescript-eslint/no-explicit-any const claim = (giveRecord.fullClaim as any).claim || giveRecord.fullClaim; @@ -429,7 +430,7 @@ export default class HomeView extends Vue { ); const gaveAmount = claim.object?.amountOfThisGood ? this.displayAmount(claim.object.unitCode, claim.object.amountOfThisGood) - : claim.description || "something unknown"; + : claim.description || "something without description"; // recipient.did is for legacy data, before March 2023 const gaveRecipientId = // eslint-disable-next-line @typescript-eslint/no-explicit-any @@ -443,7 +444,7 @@ export default class HomeView extends Vue { this.allContacts, ) : ""; - return giverInfo + " gave " + gaveAmount + gaveRecipientInfo; + return giverInfo + " gave" + gaveRecipientInfo + ": " + gaveAmount; } displayAmount(code: string, amt: number) {