Skip to content

Commit

Permalink
Bump to v1.4.0 (#21)
Browse files Browse the repository at this point in the history
* a small fix

* update screenshots

* update README.md

* Bump to v1.4.0
  • Loading branch information
TinyHai authored May 30, 2024
1 parent 9af3c02 commit b279b70
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 7 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
- Support Brazilian Portuguese by @baianohak
- 添加操作记录功能
- 一些UI调整
- 更新版本号
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,23 @@ To translate BanUninstall to your language, please use [Crowdin](https://crowdin


### Screenshots
| 1 | 2 | 3 |
|:----------------------------------------:|:----------------------------------------:|:----------------------------------------:|
| <img src="screenshots/screenshot1.jpg"/> | <img src="screenshots/screenshot2.jpg"/> | <img src="screenshots/screenshot3.jpg"/> |
| 1 | 2 | 3 | 4 |
|:------------------------------------------:|:----------------------------------------:|:----------------------------------------:|:----------------------------------------:|
| <img src="screenshots/screenshot1.jpg"/> | <img src="screenshots/screenshot2.jpg"/> | <img src="screenshots/screenshot3.jpg"/> | <img src="screenshots/screenshot4.jpg"/> |


### Compatibility
Xposed:

Android 5.0 - Android 14

> Please don't activate with root when any Xposed Framework is running
Root:

Android 8.1 - Android 14


I have tested with my phone on Android 14, and it works well. I can't ensure it works on your phone.

**So before you use it, you must test it with an irrelevant app by yourself.**
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ android {
applicationId = "cn.tinyhai.ban_uninstall"
minSdk = 21
targetSdk = 34
versionCode = 7
versionName = "1.3.2"
versionCode = 8
versionName = "1.4.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ private fun OpRecordList(
val refreshState = rememberPullRefreshState(refreshing = isRefreshing, onRefresh = onRefreshing)
val groupedRecords = records.groupBy {
val date = it.opDate
Date(date.year, date.month, date.day)
Date(date.year, date.month, date.date)
}
Box(modifier = modifier.pullRefresh(refreshState)) {
LazyColumn(modifier = Modifier.fillMaxSize(), contentPadding = PaddingValues(16.dp, 8.dp)) {
Expand Down
Binary file modified screenshots/screenshot1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/screenshot3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/screenshot4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b279b70

Please sign in to comment.