bump version to 18.1.20180909

merge-requests/23/head NanoDroid-20180909-18.1
Christopher Roy Bratusek 6 years ago
parent 4d906ca7b1
commit 62abe59d2a

@ -1,20 +1,19 @@
# ChangeLog
## 18.1 in-dev
## 18.1.20180909
### Bug Fixes
* CommonInstaller
* fix installer not detecting upgrade when flashing through Magisk Manager
* CommonAddon, PatcherAddon
* fix printing messages
* CommonAddon
* fix crashes during addon.d post-restore action
* fix printing messages
* PatcherAddon
* fix DalvikVM crash
* fix printing messages
* NanoDroid-Overlay
* fix (re-)creating overlays when flashing through Magisk Manager
@ -26,6 +25,7 @@
* CommonInstaller
* code simplifications
* ROMs with build-type userdebug are treated as Custom ROMs
* CommonAddon
* during post-restore action create NanoDroid-Overlay
@ -34,12 +34,13 @@
* tell DalvikVM to be more verbose
* remove ancient, unused files from addon.d
* for binary files only install the current-arch ones into addon.d
* clean-up addon.d environment every time addon.d is fired up
* CommonInstaller, CommonPatcher
* ROMs with build-type userdebug are treated as Custom ROMs
* remove duplicated '!!' in error messages
* Uninstaller, Patcher
* PatcherAddon
* clean-up addon.d environment every time addon.d is fired up
* Uninstaller
* remove duplicated '!!' in error messages
### Updates

@ -1,6 +1,6 @@
#!/sbin/sh
VERSION=18.1.99999999
VERSION=18.1.20180909
NANODROID_UPGRADE=0
NANODROID_LIST=/data/adb/NanoDroid_FileList

@ -1,7 +1,7 @@
id=NanoDroid_FDroid
name=NanoDroid (F-Droid sub module)
version=v18.1.99999999
versionCode=51
version=v18.1.20180909
versionCode=52
author=Nanolx
description=NanoDroid (F-Droid sub module) for LineageOS/AOSP based ROMs
minMagisk=1500

@ -1,7 +1,7 @@
id=NanoDroid
name=NanoDroid
version=v18.1.99999999
versionCode=55
version=v18.1.20180909
versionCode=56
author=Nanolx
description=NanoDroid: microG, FOSS apps, pseudo-debloat, Zelda ringtones, Shell utilities and more.
minMagisk=1500

@ -4,7 +4,7 @@ Versions until 15.1 were called **NanoMod**, starting with 16.0 they're called *
## Current Release
* Stable: 18.0.3.20180908
* Stable: 18.1.20180909
* Beta: --- (---)
## Downloads

@ -1,6 +1,6 @@
#!/bin/bash
VERSION=18.1.99999999
VERSION=18.1.20180909
CWD=$(readlink -m "${BASH_SOURCE[0]}")
CWD=$(dirname "${CWD}")

@ -1,7 +1,7 @@
id=NanoDroid_microG
name=NanoDroid (microG sub module)
version=v18.1.99999999
versionCode=54
version=v18.1.20180909
versionCode=55
author=Nanolx
description=NanoDroid (microG sub module) for LineageOS/AOSP based ROMs
minMagisk=1500

@ -23,7 +23,7 @@ detect_outfd
ui_print " "
ui_print "********************************"
ui_print " NanoDroid 18.1.99999999 "
ui_print " NanoDroid 18.1.20180909 "
ui_print " created by @Nanolx "
ui_print " Framework Patcher "
ui_print "Powered by DexPatcher (@lanchon)"

@ -32,7 +32,7 @@ NanoDroidPatcher () {
ui_print " "
ui_print "*******************************"
ui_print " NanoDroid Framework Patcher "
ui_print " addon.d 18.1.99999999 "
ui_print " addon.d 18.1.20180909 "
ui_print " created by @Nanolx "
ui_print " Utilizing DexPatcher @lanchon "
ui_print "*******************************"

@ -2,7 +2,7 @@ ini_set("rom_name", "NanoDroid Setup Wizard");
ini_set("rom_version", "18.1");
ini_set("rom_author", "Nanolx");
ini_set("rom_device", "Generic (LOS/AOSP)");
ini_set("rom_date", "99999999");
ini_set("rom_date", "20180909");
anisplash(
0, "splash/nanolx.png", 1500

@ -1,7 +1,7 @@
show_progress(1.000000, 0);
set_progress(0.0);
ui_print(" ");
ui_print("> NanoDroid Setup Wizard 18.1.99999999");
ui_print("> NanoDroid Setup Wizard 18.1.20180909");
ui_print(" ");
set_progress(0.1);

@ -50,7 +50,7 @@ nlp_prop="${aromapath}/nlp.prop"
ui_print " "
ui_print "******************************"
ui_print " NanoDroid 18.1.99999999 "
ui_print " NanoDroid 18.1.20180909 "
ui_print " created by @Nanolx "
ui_print " Setup Wizard "
ui_print "******************************"

@ -265,7 +265,7 @@ patcher_uninstall () {
ui_print " "
ui_print "*****************************"
ui_print " NanoDroid 18.1.99999999 "
ui_print " NanoDroid 18.1.20180909 "
ui_print " created by Nanolx "
ui_print " Uninstaller "
ui_print "*****************************"

Loading…
Cancel
Save