bump version to 23.0 in-dev

merge-requests/33/head
Christopher Roy Bratusek 4 years ago
parent de1b9fcf0d
commit 33431f5871

@ -1,6 +1,6 @@
id=NanoDroid_BromiteWebView
name=NanoDroid (Bromite WebView sub module)
version=v22.9.20200910
version=v23.0.99999999
versionCode=19
author=Nanolx
description=NanoDroid (Bromite WebView sub module)

@ -1,5 +1,23 @@
# ChangeLog
## 22.10 in-dev "[---]"
### Bug Fixes
* Installer
* update privapp-permission detection to fix bootloops on Android 11
### General Changes
* Installer
* improve functions to auto-detect wether we use official or Nanolx GmsCore/DroidGuard and migrate between, if required
* (there's no public Nanolx GmsCore build as of now, I'm using this for internal testing)
* sysconfig
* whitelist Aurora Services for `allow-in-power-save-except-idle`
* whitelist Aurora Services for `system-user-whitelisted-app`
* drop whitelist for Yalp Store (removed from NanoDroid since ages)
## 22.9.20200910 "[Tiefseequappe]"
### General Changes

@ -16,7 +16,7 @@ source /tmp/backuptool.functions
MODID=@MODID@
OUTFD=
VERSION=22.9.20200910
VERSION=23.0.99999999
NANODROID_LIST=/data/adb/NanoDroid_FileList

@ -1,6 +1,6 @@
#!/sbin/sh
VERSION=22.9.20200910
VERSION=23.0.99999999
NANODROID_UPGRADE=0
INSTALL_SUCCESS=TRUE
NANODROID_LIST=/data/adb/NanoDroid_FileList

@ -1,6 +1,6 @@
id=NanoDroid_FDroid
name=NanoDroid (F-Droid sub module)
version=v22.9.20200910
version=v23.0.99999999
versionCode=79
author=Nanolx
description=NanoDroid (F-Droid sub module)

@ -1,6 +1,6 @@
id=NanoDroid
name=NanoDroid
version=v22.9.20200910
version=v23.0.99999999
versionCode=83
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=v22.9.20200910
version=v23.0.99999999
versionCode=83
author=Nanolx
description=NanoDroid: Google Sync Adapters and Swipe libraries sub-module.

@ -1,6 +1,6 @@
id=NanoDroid_OsmAnd
name=NanoDroid (OsmAnd)
version=v22.9.20200910
version=v23.0.99999999
versionCode=18
author=Nanolx
description=NanoDroid (OsmAnd sub module)

@ -1,7 +1,7 @@
#!/bin/bash
version_code=22.9
version_date=20200910
version_code=23.0
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=v22.9.20200910
version=v23.0.99999999
versionCode=82
author=Nanolx
description=NanoDroid (microG sub module)

@ -6,7 +6,7 @@
#
##########################################################################################
VERSION=22.9.20200910
VERSION=23.0.99999999
MAGISKBASE=/data/adb
MODID=NanoDroid_Patcher

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

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

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

Loading…
Cancel
Save