diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 114e712a..eb7cd94a 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -20,7 +20,7 @@ android { minSdk = 26 targetSdk = 34 versionCode = 2 - versionName = "v1.1.0-Alpha" + versionName = "v1.1.1-Alpha" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } diff --git a/app/src/main/kotlin/com/jeeldobariya/passcodes/ui/PasswordManagerActivity.kt b/app/src/main/kotlin/com/jeeldobariya/passcodes/ui/PasswordManagerActivity.kt index 4c4556fc..3796e70f 100644 --- a/app/src/main/kotlin/com/jeeldobariya/passcodes/ui/PasswordManagerActivity.kt +++ b/app/src/main/kotlin/com/jeeldobariya/passcodes/ui/PasswordManagerActivity.kt @@ -154,7 +154,7 @@ class PasswordManagerActivity : AppCompatActivity() { private fun importCsvFilePicker() { val intent = Intent(Intent.ACTION_OPEN_DOCUMENT).apply { addCategory(Intent.CATEGORY_OPENABLE) - type = "text/csv" + type = "text/*" putExtra(Intent.EXTRA_TITLE, "passwords.csv") } diff --git a/app/src/main/res/layout/activity_about_us.xml b/app/src/main/res/layout/activity_about_us.xml index f381d08b..e824392f 100644 --- a/app/src/main/res/layout/activity_about_us.xml +++ b/app/src/main/res/layout/activity_about_us.xml @@ -233,19 +233,6 @@ android:textAppearance="@style/TextAppearance.Material3.BodyLarge"/> - - - - Passcodes - v1.1.0 - Alpha + v1.1.1 - Alpha Developed by: Dobariya Jeel diff --git a/changelog.md b/changelog.md index 7bb162bc..80423257 100644 --- a/changelog.md +++ b/changelog.md @@ -8,6 +8,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Release Notes: [docs/release-notes.md](docs/release-notes.md), there you will find short and sweet release notes. +## v1.1.1 - Alpha (Sept 11, 2025) + +
+ View Internal Details + + ``` + Pacakage Name = "com.jeeldobariya.passcodes" + Min Android = 8.0 (API level 26) + Max Android = 14 (API level 34) + Version Code = 2 + Version Name = "v1.1.1-Alpha" + Master Database Version = "v1" + ``` +
+ + +### Fixed + +- **Fixed Import Passwords**: fix the bug, that was not let user select csv files from file picker. due to incorrect mimetype in code.. Contributed by [@JeelDobariya] + + ## v1.1.0 - Alpha (Sept 1, 2025)
@@ -36,6 +57,7 @@ Release Notes: [docs/release-notes.md](docs/release-notes.md), there you will fi - **Mirgated Project**: Migrate project from `JeelDobariya38 (personal)` to `PasscodesApp (my organization)` account. To reflect my long term vision. Contributed by [@JeelDobariya]. + ## v1.0.0 - Stable (Aug 16, 2025)
@@ -63,6 +85,7 @@ Release Notes: [docs/release-notes.md](docs/release-notes.md), there you will fi - **Improve Safety By Kotlin Implementaion**: Move from `Java` to `Kotlin` Language. Contributed by [@JeelDobariya]. - **Improve Data Storing Process**: Move from `SqliteDatabase` to `Room` Libaray for better datastorage. Contributed by [@JeelDobariya]. + ## v0.1.0 - Alpha (Aug 26, 2024)
diff --git a/docs/release-notes.md b/docs/release-notes.md index be91378c..242bee41 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -3,7 +3,29 @@ Here, You will find short ad sweet and casual `tldrs` for release notes or changelog. For more details and more professional tone, see [changelog.md](/changelog.md). -## v1.0.0-Stable (Sept 1, 2025) +## v1.1.1-Alpha (Sept 11, 2025) + +
+ View Internal Details + + ``` + Pacakage Name = "com.jeeldobariya.passcodes" + Min Android = 8.0 (API level 26) + Max Android = 14 (API level 34) + Version Code = 2 + Version Name = "v1.1.1-Alpha" + Master Database Version = "v1" + ``` +
+ +`TL;DR`: Sorry for delay, but we have fix import files feature... + +We are very sorry for the delay.. we have offically fix the import password csv file selection bug... + +In big project, such small mistakes/things happens.. so, ignore it please... + + +## v1.1.0-Alpha (Sept 1, 2025)
View Internal Details