Browse Source

bump to v 0.2.17; add "personalized" message and better confirmation-result messages

kb/add-usage-guide 0.2.17
Trent Larson 7 months ago
parent
commit
3612ea4224
  1. 2
      CHANGELOG.md
  2. 13
      README.md
  3. 4
      package-lock.json
  4. 2
      package.json
  5. 1
      project.task.yaml
  6. 12
      src/views/QuickActionBvcBeginView.vue
  7. 15
      src/views/QuickActionBvcEndView.vue

2
CHANGELOG.md

@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- ?
## [0.2.16] - 2024.03.01
## [0.2.17] - 2024.03.01
### Added
- Shortcut page for Bountiful Voluntaryist Community
### Changed

13
README.md

@ -32,11 +32,7 @@ npm run lint
* `npx prettier --write ./sw_scripts/`
* Update the project.task.yaml & CHANGELOG.md & the version in package.json, run `npm install`, and commit. Then record the new hash in the changelog.
* [Tag wth the new version.](https://gitea.anomalistdesign.com/trent_larson/crowd-funder-for-time-pwa/releases)
... though maybe you do that after testing and release, since that isn't used in the build (and you often increment a lot during testing).
* Update the project.task.yaml & CHANGELOG.md & the version in package.json, run `npm install`.
* If production: change src/constants/app.ts DEFAULT_*_SERVER to be "PROD" and package.json to remove "_Test". Also record what version is on production.
@ -46,7 +42,12 @@ npm run lint
* `rsync -azvu -e "ssh -i ~/.ssh/..." dist ubuntutest@test.timesafari.app:time-safari`
* Revert src/constants/app.ts and package.json (if that was prod), edit package.json to increment version & add "-beta", `npm install`, and commit. Tag if you didn't before. Also record what version is on production.
* Revert src/constants/app.ts and package.json (if that was prod).
* Commit changes. Record the new hash in the changelog. Edit package.json to increment version & add "-beta", `npm install`, and commit. Tag if you didn't before. Also record what version is on production.
* [Tag wth the new version.](https://gitea.anomalistdesign.com/trent_larson/crowd-funder-for-time-pwa/releases)

4
package-lock.json

@ -1,12 +1,12 @@
{
"name": "TimeSafari_Test",
"version": "0.2.16",
"version": "0.2.17",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "TimeSafari_Test",
"version": "0.2.16",
"version": "0.2.17",
"dependencies": {
"@dicebear/collection": "^5.3.5",
"@dicebear/core": "^5.3.5",

2
package.json

@ -1,6 +1,6 @@
{
"name": "TimeSafari_Test",
"version": "0.2.16",
"version": "0.2.17",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",

1
project.task.yaml

@ -73,6 +73,7 @@ tasks :
- create a help-desk document & add screenshots
- .1 update "offer" units to have same functionality as "give" units
- .5 add a link to any 'give' records that fulfill an offer on ClaimView
- 01 on home page, prompt for install check in addition to "supports notifications" check (since they won't get notified if Chrome is closed)
- 01 on Mac (& Windows?) desktop, add a help blurb so that they can find it again (since it doesn't show in Application list)
- bug (that is hard to reproduce) - got error adding on Firefox user #0 as contact for themselves

12
src/views/QuickActionBvcBeginView.vue

@ -142,7 +142,7 @@ export default class QuickActionBvcBeginView extends Vue {
if (timeResult.type === "success") {
timeSuccess = true;
} else {
console.error("Error sending give:", timeResult);
console.error("Error sending time:", timeResult);
this.$notify(
{
group: "alert",
@ -169,7 +169,7 @@ export default class QuickActionBvcBeginView extends Vue {
if (attendResult.type === "success") {
attendedSuccess = true;
} else {
console.error("Error sending give:", attendResult);
console.error("Error sending attendance:", attendResult);
this.$notify(
{
group: "alert",
@ -187,16 +187,16 @@ export default class QuickActionBvcBeginView extends Vue {
if (timeSuccess || attendedSuccess) {
const actions =
timeSuccess && attendedSuccess
? "attendance and time have been"
? "Your attendance and time have been recorded."
: timeSuccess
? "time has been"
: "attendance has been";
? "Your time has been recorded."
: "Your attendance has been recorded.";
this.$notify(
{
group: "alert",
type: "success",
title: "Success",
text: `Your ${actions} recorded.`,
text: actions,
},
-1,
);

15
src/views/QuickActionBvcEndView.vue

@ -95,6 +95,8 @@
size="20"
class="border border-slate-400 h-6 px-2"
/>
<br />
(Everyone likes personalized messages! 😁)
</span>
<!-- This is to match input height to avoid shifting when hiding & showing. -->
<span v-else class="h-6">...</span>
@ -326,7 +328,7 @@ export default class QuickActionBvcBeginView extends Vue {
title: "Error",
text:
(giveResult as ErrorResult)?.error?.userMessage ||
"There was an error sending the give.",
"There was an error sending that give.",
},
-1,
);
@ -338,19 +340,20 @@ export default class QuickActionBvcBeginView extends Vue {
confirmsSucceeded.length === 1 ? "confirmation" : "confirmations";
const actions =
confirmsSucceeded.length > 0 && giveSucceeded
? `${confirms} and give have been`
? `Your ${confirms} and that give have been recorded.`
: giveSucceeded
? "give has been"
: confirms +
? "That give has been recorded."
: "Your " +
confirms +
" " +
(confirmsSucceeded.length === 1 ? "has" : "have") +
" been";
" been recorded.";
this.$notify(
{
group: "alert",
type: "success",
title: "Success",
text: `Your ${actions} recorded.`,
text: actions,
},
-1,
);

Loading…
Cancel
Save