Bump versions

This commit is contained in:
ward
2025-06-19 11:50:09 +12:00
parent 06680bba57
commit 5d06a2bf90
5 changed files with 11 additions and 7 deletions
+2 -2
View File
@@ -7,8 +7,8 @@ android {
applicationId "us.materialio.app" applicationId "us.materialio.app"
minSdkVersion rootProject.ext.minSdkVersion minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 125 versionCode 126
versionName "1.9.8" versionName "1.9.9"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions { aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps. // Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
@@ -60,7 +60,11 @@
<release version="1.9.8" date="2025-6-18">
<release version="1.9.9" date="2025-6-19">
<url>https://github.com/Materialious/Materialious/releases/tag/1.9.9</url>
</release>
<release version="1.9.8" date="2025-6-18">
<url>https://github.com/Materialious/Materialious/releases/tag/1.9.8</url> <url>https://github.com/Materialious/Materialious/releases/tag/1.9.8</url>
</release> </release>
<release version="1.9.7" date="2025-6-15"> <release version="1.9.7" date="2025-6-15">
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "Materialious", "name": "Materialious",
"version": "1.9.8", "version": "1.9.9",
"description": "Modern material design for Invidious.", "description": "Modern material design for Invidious.",
"author": { "author": {
"name": "Ward Pearce", "name": "Ward Pearce",
+2 -2
View File
@@ -1,6 +1,6 @@
{ {
"name": "materialious", "name": "materialious",
"version": "1.9.8", "version": "1.9.9",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "vite dev", "dev": "vite dev",
@@ -70,4 +70,4 @@
"svelte-persisted-store": "^0.12.0", "svelte-persisted-store": "^0.12.0",
"youtubei.js": "^14.0.0" "youtubei.js": "^14.0.0"
} }
} }
+1 -1
View File
@@ -3,7 +3,7 @@ import os
import re import re
from datetime import datetime from datetime import datetime
LATEST_VERSION = "1.9.8" LATEST_VERSION = "1.9.9"
RELEASE_DATE = datetime.now().strftime("%Y-%-m-%d") # Format: YYYY-M-D RELEASE_DATE = datetime.now().strftime("%Y-%-m-%d") # Format: YYYY-M-D
WORKING_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), "materialious") WORKING_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), "materialious")