diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ca5b74..e1eb553 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ 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.4] - 2026-03-11 + +### Added +- Directory browser for changing ISO directory in settings +- Create new directories from the directory browser +- Delete directories created by the app (long press) +- Shows ISO/IMG files with OS icons in directory browser + +### Changed +- Empty state on home screen now shows current path and helpful hints +- Version number is now read dynamically from app config +- Renamed "folder" to "directory" throughout the UI + ## [1.3] - 2025-03-11 ### Changed diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 6f77f77..24d6067 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 = 1 - versionName = "1.3" + versionCode = 4 + versionName = "1.4" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" }