diff --git a/.github/workflows/prod-flathub.yml b/.github/workflows/prod-flathub.yml index cd9cba67..5f59d212 100644 --- a/.github/workflows/prod-flathub.yml +++ b/.github/workflows/prod-flathub.yml @@ -23,21 +23,21 @@ jobs: VERSION=$(echo $RELEASE_DATA | jq -r .tag_name) X86_URL=$(echo $RELEASE_DATA | jq -r '.assets[] | select(.name | contains("linux-x64.zip")) | .browser_download_url') AARCH64_URL=$(echo $RELEASE_DATA | jq -r '.assets[] | select(.name | contains("linux-arm64.zip")) | .browser_download_url') - echo "version=${VERSION}" >> $GITHUB_STATE - echo "x86_url=${X86_URL}" >> $GITHUB_STATE - echo "aarch64_url=${AARCH64_URL}" >> $GITHUB_STATE + echo "version=$VERSION" >> "$GITHUB_OUTPUT" + echo "x86_url=$X86_URL" >> "$GITHUB_OUTPUT" + echo "aarch64_url=$AARCH64_URL" >> "$GITHUB_OUTPUT" - name: Generate SHA256 checksum for x86_64 release id: sha256_x86 run: | CHECKSUM=$(curl -L ${{ steps.get_release.outputs.x86_url }} | sha256sum | awk '{ print $1 }') - echo "x86_64_sha256=${CHECKSUM}" >> $GITHUB_STATE + echo "x86_64_sha256=$CHECKSUM" >> "$GITHUB_OUTPUT" - name: Generate SHA256 checksum for aarch64 release id: sha256_arm run: | CHECKSUM=$(curl -L ${{ steps.get_release.outputs.aarch64_url }} | sha256sum | awk '{ print $1 }') - echo "aarch64_sha256=${CHECKSUM}" >> $GITHUB_STATE + echo "aarch64_sha256=$CHECKSUM" >> "$GITHUB_OUTPUT" - name: Update manifest file with new version and checksums run: | diff --git a/materialious/android/app/build.gradle b/materialious/android/app/build.gradle index bfed9fd0..3ba2b2a3 100644 --- a/materialious/android/app/build.gradle +++ b/materialious/android/app/build.gradle @@ -7,8 +7,8 @@ android { applicationId "us.materialio.app" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 94 - versionName "1.7.12" + versionCode 95 + versionName "1.7.13" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" aaptOptions { // Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps. diff --git a/materialious/electron/materialious.metainfo.xml b/materialious/electron/materialious.metainfo.xml index 7ac31451..2e73ad6a 100644 --- a/materialious/electron/materialious.metainfo.xml +++ b/materialious/electron/materialious.metainfo.xml @@ -55,7 +55,11 @@ - + + + https://github.com/Materialious/Materialious/releases/tag/1.7.13 + + https://github.com/Materialious/Materialious/releases/tag/1.7.12 diff --git a/materialious/electron/package.json b/materialious/electron/package.json index 8eab6ada..cef00410 100644 --- a/materialious/electron/package.json +++ b/materialious/electron/package.json @@ -1,6 +1,6 @@ { "name": "Materialious", - "version": "1.7.12", + "version": "1.7.13", "description": "Modern material design for Invidious.", "author": { "name": "Ward Pearce", diff --git a/materialious/package.json b/materialious/package.json index 2c9c3c63..61c179d7 100644 --- a/materialious/package.json +++ b/materialious/package.json @@ -1,6 +1,6 @@ { "name": "materialious", - "version": "1.7.12", + "version": "1.7.13", "private": true, "scripts": { "dev": "vite dev", diff --git a/update_versions.py b/update_versions.py index 1a9fedbb..ab69979b 100644 --- a/update_versions.py +++ b/update_versions.py @@ -3,7 +3,7 @@ import os import re from datetime import datetime -LATEST_VERSION = "1.7.12" +LATEST_VERSION = "1.7.13" 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")