@ -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
- Check for notification capability on front screen
@ -1,12 +1,12 @@
{
"name": "TimeSafari_Test",
"version": "0.2.2",
"version": "0.2.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"dependencies": {
"@ethersproject/hdnode": "^5.7.0",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
@ -1,6 +1,6 @@
"version": "0.2.3-beta",
"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 });