bump version and add -beta

This commit is contained in:
2026-04-05 20:08:24 -06:00
parent ea662f4430
commit e0e0a0a183
4 changed files with 9 additions and 9 deletions

View File

@@ -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 - If there are DB changes: before updating the test server, open browser(s) with
current version to test DB migrations. 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`. `npm install`.
- Run a build to make sure package-lock version is updated, linting works, etc: - Run a build to make sure linting works, etc:
`npm install && npm run build:web` `npm run build:web`
- Commit everything (since the commit hash is used the app). - 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, - Tag with the new version,
[online](https://gitea.anomalistdesign.com/trent_larson/crowd-funder-for-time-pwa/releases) or [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: - For test, build the app:

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "giftopia", "name": "giftopia",
"version": "1.3.13-beta", "version": "1.3.14-beta",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "giftopia", "name": "giftopia",
"version": "1.3.13-beta", "version": "1.3.14-beta",
"dependencies": { "dependencies": {
"@capacitor-community/electron": "^5.0.1", "@capacitor-community/electron": "^5.0.1",
"@capacitor-community/sqlite": "6.0.2", "@capacitor-community/sqlite": "6.0.2",

View File

@@ -1,6 +1,6 @@
{ {
"name": "giftopia", "name": "giftopia",
"version": "1.3.13", "version": "1.3.14-beta",
"description": "Giftopia App", "description": "Giftopia App",
"author": { "author": {
"name": "Gift Economies Team" "name": "Gift Economies Team"

View File

@@ -6,8 +6,8 @@
export enum AppString { export enum AppString {
// This is used in titles and verbiage inside the app. // 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. // 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 = "Giftopia",
APP_NAME_NO_SPACES = "TimeSafari", APP_NAME_NO_SPACES = APP_NAME,
PROD_ENDORSER_API_SERVER = "https://api.endorser.ch", PROD_ENDORSER_API_SERVER = "https://api.endorser.ch",
TEST_ENDORSER_API_SERVER = "https://test-api.endorser.ch", TEST_ENDORSER_API_SERVER = "https://test-api.endorser.ch",