diff --git a/CHANGELOG.md b/CHANGELOG.md index d4d069b..6513565 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.6] - 2026-03-13 + +### Added +- Disclaimer screen in welcome wizard about user responsibility +- USB services restart warning dialog before mount/unmount operations +- Toggle in Settings to enable/disable USB restart warning + +### Fixed +- Prevent shell escape exploits in shell commands +- Disable logcat on release builds + ## [1.5] - 2026-03-12 ### Added diff --git a/app/build.gradle.kts b/app/build.gradle.kts index c4a5c52..745ffb0 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -12,8 +12,8 @@ android { applicationId = "sh.sar.isodroid" minSdk = 26 targetSdk = 36 - versionCode = 5 - versionName = "1.5" + versionCode = 6 + versionName = "1.6" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } diff --git a/fastlane/metadata/android/en-US/changelogs/6.txt b/fastlane/metadata/android/en-US/changelogs/6.txt new file mode 100644 index 0000000..f53f948 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/6.txt @@ -0,0 +1,5 @@ +• Added disclaimer screen in welcome wizard about user responsibility +• Added USB services restart warning before mount/unmount (with "Don't show again" option) +• Added toggle in Settings to enable/disable USB restart warning +• Fixed shell escape exploits in shell commands +• Disabled logcat on release builds