From acbf81792eccd84f2bc46b8b442dbcf4f70aafb5 Mon Sep 17 00:00:00 2001 From: frankpreel Date: Thu, 13 Oct 2022 14:47:50 +0200 Subject: [PATCH 1/3] 8 and 8Pro support --- README.md | 5 ++--- flash-scripts/windows/install-e-recovery.bat | 2 +- src/main/java/ecorp/easy/installer/AppConstants.java | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index cbc8f3c9..5233e36a 100644 --- a/README.md +++ b/README.md @@ -45,14 +45,13 @@ developer: - Israel Yago pereira ## Changelogs -### v0.16.0 (candidate) - - OnePlus 8 Pro - - OnePlus 8 ### v0.15.1 - 431 optionally lock bootloader after flashing - 432 Check the path to the files in MSWindows - 434 Easy Installer detect 2e as not compatible +- OnePlus 8 Pro (disabled until fingerprint issue fixed) +- OnePlus 8 (disabled until fingerprint issue fixed) ### v0.15.0 - No shortcut created when installing from a non-admin account on Windows diff --git a/flash-scripts/windows/install-e-recovery.bat b/flash-scripts/windows/install-e-recovery.bat index 2dc3bcbd..281080fd 100644 --- a/flash-scripts/windows/install-e-recovery.bat +++ b/flash-scripts/windows/install-e-recovery.bat @@ -41,4 +41,4 @@ SET FASTBOOT_CMD="%FASTBOOT_PATH%fastboot" SET ADB_CMD="%FASTBOOT_PATH%adb" -%FASTBOOT_CMD% flash recovery %E_IMAGE_PATH% +%FASTBOOT_CMD% flash recovery "%E_IMAGE_PATH%" diff --git a/src/main/java/ecorp/easy/installer/AppConstants.java b/src/main/java/ecorp/easy/installer/AppConstants.java index a9354b43..4b44aa8e 100644 --- a/src/main/java/ecorp/easy/installer/AppConstants.java +++ b/src/main/java/ecorp/easy/installer/AppConstants.java @@ -28,7 +28,7 @@ import java.nio.file.Paths; public abstract class AppConstants { - public final static String APP_VERSION = "v0.16.0"; + public final static String APP_VERSION = "v0.15.1"; public final static String Separator = FileSystems.getDefault().getSeparator(); public final static String OsName = System.getProperty("os.name"); public final static String JavaHome = System.getProperty("java.home"); -- GitLab From 3ec412f9cb344da2866c879291a5c3d6f662b0a1 Mon Sep 17 00:00:00 2001 From: Vincent Bourgmayer Date: Fri, 14 Oct 2022 08:58:25 +0000 Subject: [PATCH 2/3] Apply 1 suggestion(s) to 1 file(s) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5233e36a..a3a4f7d0 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ developer: ## Changelogs -### v0.15.1 +### v0.15.1 (candidate) - 431 optionally lock bootloader after flashing - 432 Check the path to the files in MSWindows - 434 Easy Installer detect 2e as not compatible -- GitLab From 821ca66a4106f4653e1b0de06bdf06f9561aaa80 Mon Sep 17 00:00:00 2001 From: frankpreel Date: Fri, 14 Oct 2022 11:01:14 +0200 Subject: [PATCH 3/3] Fix version --- pkg/arch/PKGBUILD | 2 +- snap/snapcraft.yaml | 2 +- windows-installer-mui.nsi | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/arch/PKGBUILD b/pkg/arch/PKGBUILD index 33211426..e38c0b13 100644 --- a/pkg/arch/PKGBUILD +++ b/pkg/arch/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: efoundation # Maintainer: steadfasterX pkgname=easy-installer -pkgver=0.15.0 +pkgver=0.15.1 pkgrel=1 pkgdesc="The Easy Installer is a desktop application which helps users install Android /e/ (https://doc.e.foundation/what-s-e) on supported devices." arch=('x86_64') diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index d9121161..e29a8bc1 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,5 +1,5 @@ name: easy-installer -version: 'v0.15.0' +version: 'v0.15.1' summary: Easy installation of /e/ OS - the Google-free Android-based mobile OS description: | The /e/ OS Installer has been created to make the installation of diff --git a/windows-installer-mui.nsi b/windows-installer-mui.nsi index cac77132..5adee58b 100644 --- a/windows-installer-mui.nsi +++ b/windows-installer-mui.nsi @@ -9,7 +9,7 @@ #-------------------------------- RequestExecutionLevel admin #if 'user' then it can't install in C:\Program files !define MUI_ICON "buildSrc/windows/easy-installer.ico" -!define appVersion "v0.15.0" +!define appVersion "v0.15.1" Name "Easy-installer ${appVersion}" # define installation directory InstallDir "$PROGRAMFILES64\easy-installer" -- GitLab