Update changelog

This commit is contained in:
Tad 2017-07-18 21:44:53 -04:00
parent 4c2626ffea
commit 7bcd9ce09f
3 changed files with 27 additions and 25 deletions

View File

@ -1,28 +1,33 @@
Last Updated: 06/25/2017
Credits: https://divestos.xyz/about.html
Recommended Apps: https://divestos.xyz/apps.html
Last Updated: 07/18/2017
Credits: https://divestos.xyz/pages/about.html
Recommended Apps: https://divestos.xyz/pages/apps.php
General Changes
- Builds are dex-preopted on select devices
- Builds are signed with private release-keys
- Bundled in our custom DNS blocklist
- Compiled with OpenJDK 8
- Doze is re-enabled on devices without real Google Play Services
- Enabled GLONASS on select devices
- Nuked a *ton* of proprietary blobs
- Nuked CMStats from orbit
- Removed unnecessary/outdated/insecure packages.
- Replaced stock emoji font with EmojiOne (Standardized and Legible)
- Replaced default profiles with better ones
- Replace default SMS app with Silence
- Dialer
- Disabled FLP and PLP by default
- Settings
- Increased max password length
- Disabled "Instant Apps"
- Disabled FLP, PLP, and RLP by default
- F-Droid
- F-Droid and FDroidPrivilegedExtension are included by default
- MicroG
- GmsCore, GsfProxy, and FakeStore are included by default
- Settings
- Changed default quick tiles
- Disabled "Instant Apps"
- Increased animation speed
- Increased max password length
- Forced LTE only option
- Per app performance profiles for 170 apps
- Replaced default profiles with better ones
- Trebuchet
- Changed default settings
Device Changes
- bacon
@ -31,10 +36,5 @@ Device Changes
- osprey
- Overclocked from 1.36Ghz to 1.88Ghz (=+2.07Ghz)
- Overclocked GPU by 255Mhz
- mako
- Enabled LTE support (Requires LTE hybrid modem to be flashed)
- hammerhead
- Overclocked from 2.26Ghz to 2.95Ghz (=+2.75Ghz)
- shamu
- Overclocked from 2.64Ghz to 2.88Ghz (=+0.96Ghz)
- Underclocked from 300Mhz to 35Mhz

View File

@ -1,16 +1,16 @@
From 9ec96f3f2907396d56df980cc30ad280e25e947e Mon Sep 17 00:00:00 2001
From 54fe20779952fd850eb1d7a70054fb48dfbc63fa Mon Sep 17 00:00:00 2001
From: Daniel Micay <danielmicay@gmail.com>
Date: Tue, 18 Jul 2017 20:26:10 -0400
Date: Tue, 18 Jul 2017 21:07:37 -0400
Subject: [PATCH] LTE only option
Basically a copy of thestinger's implementation in CopperheadOS at a time where the repo was/is still licensed under Apache2
This is a modified version of thestinger's implementation in CopperheadOS from a time when the repo was/is still licensed under Apache2
https://github.com/CopperheadOS/platform_packages_services_Telephony/commit/567b8daca2d5d570e4eeecd548aa03c606ee9c18
Change-Id: Iaa5305435cc77479100b44686301140142180c14
Change-Id: I56f9e0934bb671635b87e672baf9e4f196260ca6
---
res/values/strings.xml | 16 ++++++++++++++++
src/com/android/phone/MobileNetworkSettings.java | 8 ++++++--
2 files changed, 22 insertions(+), 2 deletions(-)
src/com/android/phone/MobileNetworkSettings.java | 10 ++++++++--
2 files changed, 24 insertions(+), 2 deletions(-)
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 4ec44534..17f2ecb7 100644
@ -113,7 +113,7 @@ index 4ec44534..17f2ecb7 100644
<item>"1"</item>
</string-array>
diff --git a/src/com/android/phone/MobileNetworkSettings.java b/src/com/android/phone/MobileNetworkSettings.java
index 71feff8b..ca975b71 100644
index 71feff8b..87d97837 100644
--- a/src/com/android/phone/MobileNetworkSettings.java
+++ b/src/com/android/phone/MobileNetworkSettings.java
@@ -819,6 +819,7 @@ public class MobileNetworkSettings extends PreferenceActivity
@ -142,12 +142,14 @@ index 71feff8b..ca975b71 100644
}
break;
case Phone.NT_MODE_TDSCDMA_CDMA_EVDO_GSM_WCDMA:
@@ -1108,6 +1109,9 @@ public class MobileNetworkSettings extends PreferenceActivity
@@ -1108,6 +1109,11 @@ public class MobileNetworkSettings extends PreferenceActivity
break;
}
case Phone.NT_MODE_LTE_ONLY:
+ mButtonEnabledNetworks.setValue(
+ Integer.toString(Phone.NT_MODE_LTE_ONLY));
+ mButtonEnabledNetworks.setSummary((mShow4GForLTE == true)
+ ? R.string.network_4G_only : R.string.network_lte_only);
+ break;
case Phone.NT_MODE_LTE_WCDMA:
if (!mIsGlobalCdma) {

View File

@ -166,7 +166,7 @@ enter "packages/inputmethods/LatinIME"
patch -p1 < $patches"android_packages_inputmethods_LatinIME/0001-Voice.patch" #Remove voice input key
enter "packages/services/Telephony"
patch -p1 < $patches"android_packages_services_Telephony/0001-LTE_Only.patch" #LTE only preferred network mode choice #XXX: Only useful on VoLTE devices. TODO: Add override to isEnhanced4gLteModeSettingEnabledByUser() in ImsManager
patch -p1 < $patches"android_packages_services_Telephony/0001-LTE_Only.patch" #LTE only preferred network mode choice
enter "system/core"
cat /tmp/ar/hosts >> rootdir/etc/hosts #Merge in our HOSTS file