From 3bfdc932c22f78d1ae1372b740909f048f4a35f9 Mon Sep 17 00:00:00 2001 From: Pun Date: Mon, 10 Jul 2023 21:27:20 +0700 Subject: [PATCH 1/4] chore: update app description MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 👍👍 Patch your favourite apps, right on your device. --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index a831f51b..a724dcb0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: revanced_manager -description: The official ReVanced Manager. +description: Patch your favourite apps, right on your device. homepage: https://github.com/revanced/revanced-manager publish_to: 'none' From 9a57f8b858a8d3a884492b8a460af3dc0f54b1f0 Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Mon, 10 Jul 2023 21:37:02 +0700 Subject: [PATCH 2/4] ci(build): use correct JDK version There's no reasons to go higher than JDK 11 since we compile the application using JDK 11 --- .github/workflows/pull-request-build.yml | 2 +- .github/workflows/release-build.yml | 4 ++-- .github/workflows/release.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pull-request-build.yml b/.github/workflows/pull-request-build.yml index b2f9b208..c778e70a 100644 --- a/.github/workflows/pull-request-build.yml +++ b/.github/workflows/pull-request-build.yml @@ -18,7 +18,7 @@ jobs: - name: Setup JDK uses: actions/setup-java@v3 with: - java-version: '17' + java-version: '11' distribution: 'zulu' cache: 'gradle' - name: Setup Flutter diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index 0c909e8c..4b414eb7 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -12,10 +12,10 @@ jobs: - uses: actions/checkout@v3 - name: Set env run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV - - name: Set up JDK 12 + - name: Set up JDK 11 uses: actions/setup-java@v3 with: - java-version: "12" + java-version: "11" distribution: "zulu" - uses: subosito/flutter-action@v2 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7baf69e6..fd07befd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: - name: Setup JDK uses: actions/setup-java@v3 with: - java-version: '17' + java-version: '11' distribution: 'zulu' cache: 'gradle' - name: Setup Node.js From 85b166cbdac05a296ebadb3a5ddbfc54348592ae Mon Sep 17 00:00:00 2001 From: Aunali321 Date: Tue, 11 Jul 2023 01:21:45 +0530 Subject: [PATCH 3/4] fix: update hardcoded patch name --- lib/ui/views/installer/installer_viewmodel.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/views/installer/installer_viewmodel.dart b/lib/ui/views/installer/installer_viewmodel.dart index 63631df0..a1e95e30 100644 --- a/lib/ui/views/installer/installer_viewmodel.dart +++ b/lib/ui/views/installer/installer_viewmodel.dart @@ -166,7 +166,7 @@ class InstallerViewModel extends BaseViewModel { try { _app.isRooted = installAsRoot; final bool hasMicroG = - _patches.any((p) => p.name.endsWith('microg-support')); + _patches.any((p) => p.name.endsWith('MicroG support')); final bool rootMicroG = installAsRoot && hasMicroG; final bool rootFromStorage = installAsRoot && _app.isFromStorage; final bool ytWithoutRootMicroG = From 217d525cb2f3201ad811097128a537fee569e20a Mon Sep 17 00:00:00 2001 From: Aunali321 Date: Tue, 11 Jul 2023 01:22:57 +0530 Subject: [PATCH 4/4] build: update app version to v1.4.0 --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index a724dcb0..3a99a5ba 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -4,7 +4,7 @@ homepage: https://github.com/revanced/revanced-manager publish_to: 'none' -version: 1.3.9+100300009 +version: 1.4.0+100400000 environment: sdk: '>=3.0.0 <4.0.0'