diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 6377497d..618329ff 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -32,8 +32,8 @@ android { defaultConfig { applicationId = "com.pyamsoft.tetherfi" - versionCode = 50 - versionName = "20241107-1" + versionCode = 51 + versionName = "20241107-2" minSdk = rootProject.extra["minSdk"] as Int targetSdk = rootProject.extra["targetSdk"] as Int diff --git a/app/src/main/java/com/pyamsoft/tetherfi/main/MainActivity.kt b/app/src/main/java/com/pyamsoft/tetherfi/main/MainActivity.kt index be4cab7b..854c3fd9 100644 --- a/app/src/main/java/com/pyamsoft/tetherfi/main/MainActivity.kt +++ b/app/src/main/java/com/pyamsoft/tetherfi/main/MainActivity.kt @@ -63,17 +63,12 @@ class MainActivity : AppCompatActivity() { override val applicationIcon = R.mipmap.ic_launcher override val changelog = buildChangeLog { - feature( - "Support for RNDIS tethering proxy support instead of requiring Wi-Fi Direct") - bugfix("Hopefully for real this time - implement a per-client Bandwidth Limit") bugfix( - "Fix a crash that would happen if the Connection screen was visited before the first device connected in specific cases.") + "Fix RNDIS connection for some devices") change( - "Power Balance expert setting has been deprecated and will be removed in the next release. This expert setting was made largely obsolete by new, more efficient code.") + "Due to community feedback, the Power Balance Expert Setting will NOT be removed.") change( - "Idle Timeout Tweak is now always ON. The UI will be removed in the next version.") - change("Deprecated Wake Locks UI has been removed") - change("Reduce memory allocation") + "Reduce idle timeout default from 1 minute to 10 seconds to reduce memory usage") } }, )