From e0e0a0a183fed90c27fd925ced9a55b476f59c3b Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Sun, 5 Apr 2026 20:08:24 -0600 Subject: [PATCH] bump version and add -beta --- BUILDING.md | 8 ++++---- package-lock.json | 4 ++-- package.json | 2 +- src/constants/app.ts | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index ed09aafc..2df3ccd0 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -333,11 +333,11 @@ The `serve` functionality provides a local HTTP server for testing production bu - If there are DB changes: before updating the test server, open browser(s) with current version to test DB migrations. -- Update the ClickUp tasks & CHANGELOG.md & the version in package.json, run +- Update the ClickUp tasks & CHANGELOG.md & the version in package.json, run: `npm install`. -- Run a build to make sure package-lock version is updated, linting works, etc: -`npm install && npm run build:web` +- Run a build to make sure linting works, etc: +`npm run build:web` - Commit everything (since the commit hash is used the app). @@ -346,7 +346,7 @@ current version to test DB migrations. - Tag with the new version, [online](https://gitea.anomalistdesign.com/trent_larson/crowd-funder-for-time-pwa/releases) or -`git tag 1.0.2 && git push origin 1.0.2`. +`git tag 1.3.13 && git push origin 1.3.13`. - For test, build the app: diff --git a/package-lock.json b/package-lock.json index 448c99ae..0c88767a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "giftopia", - "version": "1.3.13-beta", + "version": "1.3.14-beta", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "giftopia", - "version": "1.3.13-beta", + "version": "1.3.14-beta", "dependencies": { "@capacitor-community/electron": "^5.0.1", "@capacitor-community/sqlite": "6.0.2", diff --git a/package.json b/package.json index 38716351..5713f521 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "giftopia", - "version": "1.3.13", + "version": "1.3.14-beta", "description": "Giftopia App", "author": { "name": "Gift Economies Team" diff --git a/src/constants/app.ts b/src/constants/app.ts index 1ae6d016..2c8cd1e1 100644 --- a/src/constants/app.ts +++ b/src/constants/app.ts @@ -6,8 +6,8 @@ export enum AppString { // This is used in titles and verbiage inside the app. // There is also an app name without spaces, for packaging in the package.json file used in the manifest. - APP_NAME = "Time Safari", - APP_NAME_NO_SPACES = "TimeSafari", + APP_NAME = "Giftopia", + APP_NAME_NO_SPACES = APP_NAME, PROD_ENDORSER_API_SERVER = "https://api.endorser.ch", TEST_ENDORSER_API_SERVER = "https://test-api.endorser.ch",