forked from jsnbuchanan/crowd-funder-for-time-pwa
bump version to 0.2.3, add endpoint name update
This commit is contained in:
@@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
## [Unreleased]
|
||||
|
||||
|
||||
## [0.2.3] - 2024.01.09
|
||||
### Added
|
||||
- Mark for a trade as opposed to a donation
|
||||
|
||||
|
||||
## [0.2.2] - 2024.01.05
|
||||
### Added
|
||||
- Check for notification capability on front screen
|
||||
|
||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "TimeSafari_Test",
|
||||
"version": "0.2.2",
|
||||
"version": "0.2.3",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "TimeSafari_Test",
|
||||
"version": "0.2.2",
|
||||
"version": "0.2.3",
|
||||
"dependencies": {
|
||||
"@ethersproject/hdnode": "^5.7.0",
|
||||
"@fortawesome/fontawesome-svg-core": "^6.4.2",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "TimeSafari_Test",
|
||||
"version": "0.2.3-beta",
|
||||
"version": "0.2.3",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"serve": "vue-cli-service serve",
|
||||
|
||||
@@ -1,6 +1,9 @@
|
||||
|
||||
tasks:
|
||||
|
||||
- add registration step to onboard help
|
||||
- update dependencies, especially Veramo
|
||||
|
||||
- record donations vs gives
|
||||
- in mobile - change give & fulfills to array of objects?
|
||||
- migrate all existing records to gifts (after clients send DonateAction)
|
||||
|
||||
@@ -332,7 +332,6 @@ export async function createAndSubmitGive(
|
||||
identifier: fulfillsProjectHandleId,
|
||||
});
|
||||
}
|
||||
console.log("createAndSubmitGive vcClaim", vcClaim);
|
||||
return createAndSubmitClaim(
|
||||
vcClaim as GenericServerRecord,
|
||||
identity,
|
||||
|
||||
@@ -473,7 +473,7 @@ export default class ProjectViewView extends Vue {
|
||||
|
||||
const givesInUrl =
|
||||
this.apiServer +
|
||||
"/api/v2/report/givesForPlans?planIds=" +
|
||||
"/api/v2/report/givesToPlans?planIds=" +
|
||||
encodeURIComponent(JSON.stringify([projectId]));
|
||||
try {
|
||||
const resp = await this.axios.get(givesInUrl, { headers });
|
||||
|
||||
Reference in New Issue
Block a user