bump version to 23.2 in-dev

merge-requests/37/merge
Christopher Roy Bratusek 3 years ago
parent b84c2bb438
commit 636da5bacc

@ -1,6 +1,6 @@
id=NanoDroid_BromiteWebView
name=NanoDroid (Bromite WebView sub module)
version=v23.1.2.20210117
version=v23.2.99999999
versionCode=24
author=Nanolx
description=NanoDroid (Bromite WebView sub module)

@ -1,8 +1,22 @@
# ChangeLog
## 23.2.in-dev
### Bug Fixes
* Installer
* update priv-app permission detection for some Android 11 ROMs
* abort with proper error message if detecting block devices fails (TWRP)
* re-add free space check (TWRP)
### General Changes
* Documentation
* various minor corrections, aswell as improved wording and layout @w1nst0n
## 23.1.2.20210117 "BusyCompat"
## Bug Fixes
### Bug Fixes
* Installer, Uninstaller, SysTest, Patcher
* fix critial bug when running from TWRP that comes with busybox instead of toolbox
@ -12,7 +26,7 @@
## 23.1.1.20210116 "[Zora](https://memory-alpha.fandom.com/wiki/Zora_(artificial_intelligence))"
## Bug Fixes
### Bug Fixes
* Installer, Uninstaller, SysTest, Patcher
* fix bugs regarding mounting `/system` from TWRP
@ -20,7 +34,7 @@
* Patcher
* fix a regression causing Patcher not to be properly executed
## General Changes
### General Changes
* Installer, Uninstaller, SysTest, Patcher
* improve mounting code `/system` from TWRP
@ -28,7 +42,7 @@
* NanoDroid-Overlay
* check whether configuration file exists before doing anything (`-x`/`--create`)
## Updates
### Updates
* automatic
* microG GmsCore (0.2.17.204714)
@ -43,7 +57,7 @@ NOTE: There's now a git repository as central place/navigational point for all c
* https://gitlab.com/Nanolx/nanodroid-patches
## Bug Fixes
### Bug Fixes
* Installer, Addon
* read configuration files from `/system/addon.d` (fallback if TWRP can't mount `/data`)
@ -59,7 +73,7 @@ NOTE: There's now a git repository as central place/navigational point for all c
* Full, microG packages
* fix that (in Magisk Mode) GmsCore was not automatically ensured to be a user app
## General Changes
### General Changes
* CommonInstaller
* resturctured, consolidated and cleaned-up code

@ -16,7 +16,7 @@ source /tmp/backuptool.functions || source /postinstall/tmp/backuptool.functions
MODID=NanoDroid
OUTFD=
VERSION=23.1.2.20210117
VERSION=23.2.99999999
NANODROID_LIST=/system/addon.d/NanoDroid_FileList

@ -1,6 +1,6 @@
#!/sbin/sh
VERSION=23.1.2.20210117
VERSION=23.2.99999999
NANODROID_UPGRADE=0
INSTALL_SUCCESS=TRUE
NANODROID_LIST=/system/addon.d/NanoDroid_FileList

@ -1,6 +1,6 @@
id=NanoDroid_FDroid
name=NanoDroid (F-Droid sub module)
version=v23.1.2.20210117
version=v23.2.99999999
versionCode=84
author=Nanolx
description=NanoDroid (F-Droid sub module)

@ -1,6 +1,6 @@
id=NanoDroid
name=NanoDroid
version=v23.1.2.20210117
version=v23.2.99999999
versionCode=88
author=Nanolx
description=NanoDroid: microG, FLOSS apps, pseudo-debloat, Zelda ringtones, Shell utilities and more.

@ -1,6 +1,6 @@
id=NanoDroid
name=NanoDroid_Google
version=v23.1.2.20210117
version=v23.2.99999999
versionCode=88
author=Nanolx
description=NanoDroid: Google Sync Adapters and Swipe libraries sub-module.

@ -1,6 +1,6 @@
id=NanoDroid_OsmAnd
name=NanoDroid (OsmAnd)
version=v23.1.2.20210117
version=v23.2.99999999
versionCode=23
author=Nanolx
description=NanoDroid (OsmAnd sub module)

@ -1,7 +1,7 @@
#!/bin/bash
version_code=23.1.2
version_date=20210117
version_code=23.2
version_date=99999999
build_date=$(LANG='en_US' date +"%Y%m%d")

@ -1,6 +1,6 @@
id=NanoDroid_microG
name=NanoDroid (microG sub module)
version=v23.1.2.20210117
version=v23.2.99999999
versionCode=87
author=Nanolx
description=NanoDroid (microG sub module)

@ -6,7 +6,7 @@
#
##########################################################################################
VERSION=23.1.2.20210117
VERSION=23.2.99999999
MAGISKBASE=/data/adb
MODID=NanoDroid_Patcher

@ -1,6 +1,6 @@
id=NanoDroid_Patcher
name=NanoDroid Patcher
version=v23.1.2.20210117
version=v23.2.99999999
versionCode=8
author=Nanolx
description=NanoDroid Patcher: module contaning microG-read services.jar and org.spoofing.apk support app

@ -6,7 +6,7 @@
#
##########################################################################################
VERSION=23.1.2.20210117
VERSION=23.2.99999999
TMPDIR=/dev/tmp
LOGFILE="/data/media/0/nanodroid_logs/NanoDroid-SysTest-$(date +%Y%m%d-%H.%M.%S).log"

@ -3,7 +3,7 @@
OUTFD=$2
ZIP=$3
BACKUP_DIR="/data/media/0/nanodroid_backups"
VERSION=23.1.2.20210117
VERSION=23.2.99999999
detect_bootmode () {
[ -z ${BOOTMODE} ] && ps | grep zygote | grep -qv grep && BOOTMODE=true

Loading…
Cancel
Save