Browse Source

bump version to 0.2.3, add endpoint name update

starred-projects
Trent Larson 8 months ago
parent
commit
48cb45d230
  1. 5
      CHANGELOG.md
  2. 4
      package-lock.json
  3. 2
      package.json
  4. 3
      project.task.yaml
  5. 1
      src/libs/endorserServer.ts
  6. 2
      src/views/ProjectViewView.vue

5
CHANGELOG.md

@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.2.3] - 2024.01.09
### Added
- Mark for a trade as opposed to a donation
## [0.2.2] - 2024.01.05 ## [0.2.2] - 2024.01.05
### Added ### Added
- Check for notification capability on front screen - Check for notification capability on front screen

4
package-lock.json

@ -1,12 +1,12 @@
{ {
"name": "TimeSafari_Test", "name": "TimeSafari_Test",
"version": "0.2.2", "version": "0.2.3",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "TimeSafari_Test", "name": "TimeSafari_Test",
"version": "0.2.2", "version": "0.2.3",
"dependencies": { "dependencies": {
"@ethersproject/hdnode": "^5.7.0", "@ethersproject/hdnode": "^5.7.0",
"@fortawesome/fontawesome-svg-core": "^6.4.2", "@fortawesome/fontawesome-svg-core": "^6.4.2",

2
package.json

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

3
project.task.yaml

@ -1,6 +1,9 @@
tasks: tasks:
- add registration step to onboard help
- update dependencies, especially Veramo
- record donations vs gives - record donations vs gives
- in mobile - change give & fulfills to array of objects? - in mobile - change give & fulfills to array of objects?
- migrate all existing records to gifts (after clients send DonateAction) - migrate all existing records to gifts (after clients send DonateAction)

1
src/libs/endorserServer.ts

@ -332,7 +332,6 @@ export async function createAndSubmitGive(
identifier: fulfillsProjectHandleId, identifier: fulfillsProjectHandleId,
}); });
} }
console.log("createAndSubmitGive vcClaim", vcClaim);
return createAndSubmitClaim( return createAndSubmitClaim(
vcClaim as GenericServerRecord, vcClaim as GenericServerRecord,
identity, identity,

2
src/views/ProjectViewView.vue

@ -473,7 +473,7 @@ export default class ProjectViewView extends Vue {
const givesInUrl = const givesInUrl =
this.apiServer + this.apiServer +
"/api/v2/report/givesForPlans?planIds=" + "/api/v2/report/givesToPlans?planIds=" +
encodeURIComponent(JSON.stringify([projectId])); encodeURIComponent(JSON.stringify([projectId]));
try { try {
const resp = await this.axios.get(givesInUrl, { headers }); const resp = await this.axios.get(givesInUrl, { headers });

Loading…
Cancel
Save