Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}

Expand Down
13 changes: 0 additions & 13 deletions app/src/main/res/layout/activity_about_us.xml
Original file line number Diff line number Diff line change
Expand Up @@ -233,19 +233,6 @@
android:textAppearance="@style/TextAppearance.Material3.BodyLarge"/>
</com.google.android.material.card.MaterialCardView>

<com.google.android.material.card.MaterialCardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardCornerRadius="16dp"
android:layout_marginBottom="8dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/designer_name"
android:padding="16dp"
android:textAppearance="@style/TextAppearance.Material3.BodyLarge"/>
</com.google.android.material.card.MaterialCardView>

<com.google.android.material.card.MaterialCardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<resources>

<string name="app_name">Passcodes</string>
<string name="app_version" translatable="false">v1.1.0 - Alpha</string>
<string name="app_version" translatable="false">v1.1.1 - Alpha</string>

<!-- Contributor Names -->
<string name="developer_name">Developed by: Dobariya Jeel</string>
Expand Down
23 changes: 23 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

<details>
<summary>View Internal Details</summary>

```
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"
```
</details>


### 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)

<details>
Expand Down Expand Up @@ -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)

<details>
Expand Down Expand Up @@ -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)

<details>
Expand Down
24 changes: 23 additions & 1 deletion docs/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

<details>
<summary>View Internal Details</summary>

```
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"
```
</details>

`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)

<details>
<summary>View Internal Details</summary>
Expand Down