Merge pull request #816 from Materialious/update/1.7.14
Fix manifest editing
This commit is contained in:
@@ -39,10 +39,9 @@ jobs:
|
||||
CHECKSUM=$(curl -L ${{ steps.get_release.outputs.aarch64_url }} | sha256sum | awk '{ print $1 }')
|
||||
echo "aarch64_sha256=$CHECKSUM" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Update manifest file with new version and checksums
|
||||
- name: Update manifest file with new urls and checksums
|
||||
run: |
|
||||
MANIFEST_FILE="us.materialio.Materialious.yml"
|
||||
yq eval -i ".version = \"${{ steps.get_release.outputs.version }}\"" $MANIFEST_FILE
|
||||
yq eval -i ".modules[0].sources[0].url = \"${{ steps.get_release.outputs.x86_url }}\"" $MANIFEST_FILE
|
||||
yq eval -i ".modules[0].sources[0].sha256 = \"${{ steps.sha256_x86.outputs.x86_64_sha256 }}\"" $MANIFEST_FILE
|
||||
yq eval -i ".modules[0].sources[1].url = \"${{ steps.get_release.outputs.aarch64_url }}\"" $MANIFEST_FILE
|
||||
|
||||
@@ -7,8 +7,8 @@ android {
|
||||
applicationId "us.materialio.app"
|
||||
minSdkVersion rootProject.ext.minSdkVersion
|
||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||
versionCode 95
|
||||
versionName "1.7.13"
|
||||
versionCode 96
|
||||
versionName "1.7.14"
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
aaptOptions {
|
||||
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
|
||||
|
||||
@@ -56,7 +56,11 @@
|
||||
|
||||
|
||||
|
||||
<release version="1.7.13" date="2025-2-21">
|
||||
|
||||
<release version="1.7.14" date="2025-2-21">
|
||||
<url>https://github.com/Materialious/Materialious/releases/tag/1.7.14</url>
|
||||
</release>
|
||||
<release version="1.7.13" date="2025-2-21">
|
||||
<url>https://github.com/Materialious/Materialious/releases/tag/1.7.13</url>
|
||||
</release>
|
||||
<release version="1.7.12" date="2025-2-21">
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Materialious",
|
||||
"version": "1.7.13",
|
||||
"version": "1.7.14",
|
||||
"description": "Modern material design for Invidious.",
|
||||
"author": {
|
||||
"name": "Ward Pearce",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "materialious",
|
||||
"version": "1.7.13",
|
||||
"version": "1.7.14",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vite dev",
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@ import os
|
||||
import re
|
||||
from datetime import datetime
|
||||
|
||||
LATEST_VERSION = "1.7.13"
|
||||
LATEST_VERSION = "1.7.14"
|
||||
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")
|
||||
|
||||
Reference in New Issue
Block a user