Skip to content

Commit

Permalink
Release 1.8.8 ver 118
Browse files Browse the repository at this point in the history
  • Loading branch information
ultranity committed Jul 21, 2023
1 parent ac1abbb commit 626986f
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ android {
minSdk = 21
//noinspection ExpiredTargetSdkVersion
targetSdk = 29
versionCode = 115
versionName = "1.8.5"
versionCode = 118
versionName = "1.8.8"
multiDexEnabled = true
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
//vectorDrawables.useSupportLibrary = true
Expand Down Expand Up @@ -105,7 +105,7 @@ android {
// By default all ABIs are included, so use reset() and include to specify
reset()
// Specifies a list of ABIs that Gradle should create APKs for.
include("x86", "x86_64", "armeabi-v7a", "arm64-v8a")
include("x86_64", "arm64-v8a")

// Specifies that we do not want to also generate a universal APK that includes all ABIs.
isUniversalApk = true
Expand Down Expand Up @@ -291,8 +291,8 @@ dependencies {
implementation("com.afollestad.material-dialogs:bottomsheets:$materialDialogsVersion")
implementation("com.afollestad.material-dialogs:lifecycle:$materialDialogsVersion")
implementation("com.afollestad.material-dialogs:input:$materialDialogsVersion")
implementation("com.afollestad:drag-select-recyclerview:2.4.0")
}
implementation("com.afollestad:drag-select-recyclerview:2.4.0")

implementation("org.greenrobot:eventbus:3.3.1")

Expand Down Expand Up @@ -324,7 +324,7 @@ dependencies {

debugImplementation("io.github.knight-zxw:blockcanary:0.0.5")
debugImplementation("io.github.knight-zxw:blockcanary-ui:0.0.5")
debugImplementation("com.squareup.leakcanary:leakcanary-android:2.12")
//debugImplementation("com.squareup.leakcanary:leakcanary-android:2.12")

//debugImplementation("com.bytedance.tools.codelocator:codelocator-core:2.0.0")
//debugImplementation("com.bytedance.tools.codelocator:codelocator-lancet-all:2.0.0")
Expand Down
21 changes: 21 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/118.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
## 1.8.8:
- [x] features: Remove tencent Bugly dependencies, detect updates manually using github (now main branch is fully FOSS )
- [x] optim: boost cold start up speed~
- [x] feature: Configurable image download quality (Thanks to @GHolk)
- [x] feature: Token Export & Token Login(use it Carefully!)
- [x] feature: Monochrome icon for Android 13
- [x] feature: Material You theme support
- [x] optim: UI component optimization
- [x] feature: top bar shrinks in User pages
- [x] feature: click chips to jump from the user information page
- [x] fix: double-click back to top fails in some page
- [x] fix: ugoira/GIF hint
- [x] fix: Loading progress bar in the original/GIF image view, replace with material progressIndicator
- [x] fix: Content overlaps, duplicates loading after rotation
- [x] optim: Animation misalignment
- [x] optim: more lazyload & kotlin coroutine
- [-] BUG: Toasty memory leak
- [x] optim: Migrate all dependencies to AndroidX, remove KAPT and switch to KSP
- [x] optim: Project migration to AGP & Gradle 8.0
- [x] optim: DataBinding is deprecated
- [x] optim: Code cleanup and other tweaks
21 changes: 21 additions & 0 deletions fastlane/metadata/android/zh-CN/changelogs/118.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
## 1.8.8:
- [x] 特性:移除 Bugly 依赖,手动使用github检测更新(主分支同样FOSS)
- [x] 优化:修复一个严重影响冷启动速度的bug
- [x] 特性:图片下载质量可调整 (Thanks to @GHolk)
- [x] 特性:Token 导出 & Token 登录
- [x] 特性:单色图标 for Android 13
- [x] 特性:material you 主题支持
- [x] 优化:界面组件优化
- [x] 特性:用户界面顶栏收缩
- [x] 特性:用户信息页chip点击跳转
- [x] 修复:部分双击回顶失效
- [x] 修复:ugoira/GIF 提示
- [x] 修复:原图加载进度条, 换用material progressIndicator
- [x] 修复:旋转后内容重叠、重复加载
- [x] 优化:动画错位
- [x] 优化:lazyload & 协程
- [-] BUG:Toasty内存泄露
- [x] 优化:迁移所有依赖到AndroidX, 移除KAPT 转用 KSP
- [x] 优化:项目迁移到 AGP&Gradle 8.0
- [x] 优化:弃用databinding
- [x] 优化:代码清理和其他调整

0 comments on commit 626986f

Please sign in to comment.