diff --git a/.github/workflows/prod-flathub.yml b/.github/workflows/prod-flathub.yml index 0e4c54ce..2fa445ee 100644 --- a/.github/workflows/prod-flathub.yml +++ b/.github/workflows/prod-flathub.yml @@ -39,6 +39,13 @@ jobs: CHECKSUM=$(curl -L ${{ steps.get_release.outputs.aarch64_url }} | sha256sum | awk '{ print $1 }') echo "aarch64_sha256=$CHECKSUM" >> "$GITHUB_OUTPUT" + - name: Generate SHA256 checksum for materialious.metainfo.xml + id: sha256_metainfo + run: | + METAINFO_URL="https://raw.githubusercontent.com/Materialious/Materialious/main/materialious/electron/materialious.metainfo.xml" + CHECKSUM=$(curl -L $METAINFO_URL | sha256sum | awk '{ print $1 }') + echo "metainfo_sha256=$CHECKSUM" >> "$GITHUB_OUTPUT" + - name: Update manifest file with new urls and checksums run: | MANIFEST_FILE="us.materialio.Materialious.yml" @@ -46,6 +53,7 @@ jobs: 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 yq eval -i ".modules[0].sources[1].sha256 = \"${{ steps.sha256_arm.outputs.aarch64_sha256 }}\"" $MANIFEST_FILE + yq eval -i ".modules[0].sources[5].sha256 = \"${{ steps.sha256_metainfo.outputs.metainfo_sha256 }}\"" $MANIFEST_FILE - name: Set Git user identity run: | diff --git a/README.md b/README.md index 208864a1..00a9f198 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,6 @@ - [Invidious API extended integration!](https://github.com/Materialious/api-extended) - Sync your watch progress between Invidious sessions. - Watch sync parties! -- Silence skipper (Experimental.) - [YouTube.js](https://github.com/LuanRT/YouTube.js) fallback if Invidious fails loading videos for Desktop & Android. - Preview video on hover. - Sponsorblock built-in. @@ -120,7 +119,6 @@ Deploy Materialious for your Invidious instance using Docker. Follow the steps o - [SecularSteve](https://github.com/SecularSteve) for creating Materialious' logo. - [Invidious](https://github.com/iv-org) - [Clipious](https://github.com/lamarios/clipious) for inspiration & a good source for learning more about undocumented Invidious routes. -- [Vidstack player](https://github.com/vidstack/player) - [Beer CSS](https://github.com/beercss/beercss) (Especially the [YouTube template](https://github.com/beercss/beercss/tree/main/src/youtube) what was used as the base for Materialious.) - Every dependency in [package.json](/materialious/package.json). diff --git a/materialious/android/.idea/other.xml b/materialious/android/.idea/other.xml index 1811ddc7..22069ff9 100644 --- a/materialious/android/.idea/other.xml +++ b/materialious/android/.idea/other.xml @@ -14,6 +14,17 @@