Skip to content

Commit 318a35f

Browse files
author
GameKnave
committed
0.20.13
1 parent 9adfb02 commit 318a35f

10 files changed

Lines changed: 19 additions & 16 deletions

File tree

bump_version.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,6 @@ const targets = [
7777
pattern: /("productName":\s*"Angular Momentum",\s*\n\s*"version":\s*")(\d+\.\d+\.\d+)(")/,
7878
replacement: `$1${newVersion}$3`,
7979
},
80-
{
81-
file: "client/src-tauri/latest.json",
82-
pattern: new RegExp(oldVersion.replace(/\./g, "\\."), "g"),
83-
replacement: newVersion,
84-
},
8580
{
8681
file: "client/src-tauri/gen/apple/angular-momentum_iOS/Info.plist",
8782
pattern: new RegExp(`<string>${oldVersion}</string>`, "g"),

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-momentum",
3-
"version": "0.20.12",
3+
"version": "0.20.13",
44
"siteUrl": "https://angularmomentum.app",
55
"repository": "https://github.com/TheGameKnave/angular-momentum",
66
"scripts": {

client/src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "angular-momentum"
3-
version = "0.20.12"
3+
version = "0.20.13"
44
description = "A Tauri App"
55
authors = ["you"]
66
edition = "2021"

client/src-tauri/gen/apple/angular-momentum_iOS/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.20.12</string>
18+
<string>0.20.13</string>
1919
<key>CFBundleVersion</key>
2020
<string>102</string>
2121
<key>ITSAppUsesNonExemptEncryption</key>

client/src-tauri/gen/apple/project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ targets:
5151
- UIInterfaceOrientationPortraitUpsideDown
5252
- UIInterfaceOrientationLandscapeLeft
5353
- UIInterfaceOrientationLandscapeRight
54-
CFBundleShortVersionString: 0.20.12
54+
CFBundleShortVersionString: 0.20.13
5555
CFBundleVersion: 0.20.1
5656
entitlements:
5757
path: angular-momentum_iOS/angular-momentum_iOS.entitlements

client/src-tauri/tauri.conf.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "Angular Momentum",
4-
"version": "0.20.12",
4+
"version": "0.20.13",
55
"identifier": "app.angularmomentum",
66
"build": {
77
"beforeDevCommand": "ng serve --hmr --proxy-config src/proxy.conf.json --configuration=tauri-local",
@@ -48,11 +48,11 @@
4848
}
4949
},
5050
"iOS": {
51-
"bundleVersion": "113"
51+
"bundleVersion": "114"
5252
},
5353
"android": {
5454
"minSdkVersion": 35,
55-
"versionCode": 113
55+
"versionCode": 114
5656
}
5757
},
5858
"plugins": {

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-momentum",
3-
"version": "0.20.12",
3+
"version": "0.20.13",
44
"siteUrl": "https://angularmomentum.app",
55
"repository": "https://github.com/TheGameKnave/angular-momentum",
66
"private": true,

server/data/changeLog.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
export const changeLog = [
1+
export const changeLog = [
2+
{
3+
version: "0.20.13",
4+
date: "2025-11-05",
5+
description: "Automated deploy scripts",
6+
changes: [
7+
"Deploy scripts for android and iOS"
8+
]
9+
},
210
{
311
version: "0.20.12",
412
date: "2025-10-30",

0 commit comments

Comments
 (0)