diff --git a/README.md b/README.md index cbc8f3c9ad5001162d4225529a126a58b940d9e8..a3a4f7d0579f4cd3a5eea469ab02d9c57a9f7567 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 +### 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 +- 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 2dc3bcbd4b4b635599da2f2281cf47ad9ce6a8df..281080fd4fa33a843b377857f543b6ac60cca3c3 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/pkg/arch/PKGBUILD b/pkg/arch/PKGBUILD index c3aa66138ecfac66a05296eddad5a4f7b15117dc..911e122b018d25df57e0dead018b6324b54559dc 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 d91211613fa7da3b5e1cb2105dd113c3e4939cfd..e29a8bc1b5e5f1577a52db551d96503501a64c69 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/src/main/java/ecorp/easy/installer/AppConstants.java b/src/main/java/ecorp/easy/installer/AppConstants.java index a9354b43606bb8dcc3a9c2acbaeb1401b5912950..4b44aa8e94ec74caadcbf0efd084de700c8fd3b1 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"); diff --git a/windows-installer-mui.nsi b/windows-installer-mui.nsi index cac7713295f64007cbc84b4a883410aeedfa4ec6..5adee58bee283616d8a60672b5846221244d5256 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"