Merge pull request #570 from Materialious/update/1.5.1

Update/1.5.1
This commit is contained in:
Ward
2024-09-20 20:39:10 +12:00
committed by GitHub
5 changed files with 10 additions and 7 deletions
+3
View File
@@ -29,6 +29,9 @@ jobs:
- name: Build package
run: cd ../ && npm run build
- name: Build android nodejs packages
run: cd ../static/nodejs-android && npm install
- name: Sync package
run: cd ../ && npx cap sync
+2 -2
View File
@@ -7,8 +7,8 @@ android {
applicationId "us.materialio.app"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 41
versionName "1.5.0"
versionCode 42
versionName "1.5.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "Materialious",
"version": "1.5.0",
"version": "1.5.1",
"description": "Modern material design for Invidious.",
"author": {
"name": "Ward Pearce",
@@ -41,4 +41,4 @@
"capacitor",
"electron"
]
}
}
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "materialious",
"version": "1.5.0",
"version": "1.5.1",
"private": true,
"scripts": {
"dev": "vite dev",
@@ -71,4 +71,4 @@
"terser": "^5.33.0",
"vidstack": "^1.12.9"
}
}
}
+1 -1
View File
@@ -5,7 +5,7 @@ import json
import os
import re
LATEST_VERSION = "1.5.0"
LATEST_VERSION = "1.5.1"
WORKING_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), "materialious")
ROOT_PACKAGE = os.path.join(WORKING_DIR, "package.json")