Skip to content

Commit

Permalink
发布版本 2.3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
10miaomiao committed Nov 13, 2024
1 parent 49f87ff commit f7012e1
Show file tree
Hide file tree
Showing 5 changed files with 3,578 additions and 1,795 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew -Pchannel=Github app:assembleRelease
run: |
./gradlew -Pchannel=Github app:assembleFullRelease
./gradlew app:assembleFossRelease
- name: Move apk to release
run: |
release_dir=${{ github.workspace }}/release
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
# 更新日志
## [2.3.11] - (106) - 2024-11-11
+ 增加 个人中心头像及动态大图查看功能
+ 增加 启用横屏/竖屏自动全屏时,旋转至对应的屏幕方向自动全屏
+ 修复 部分设备通知栏同时出现两个播放器控制器
+ 修复 点击剧情分区闪退
+ 修复 时光机分区视频列表经常网络错误问题
+ 修复 视频字幕错乱或有字幕找不到字幕问题
+ ( •̀ ω •́ )y

## [2.3.10] - (105) - 2024-10-06
+ 新增 新版用户空间页面
+ 修复 播放列表多P播放时失效
Expand Down
11 changes: 9 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ android {
applicationId = "com.a10miaomiao.bilimiao"
minSdk = 21
targetSdk = 34
versionCode = 105
versionName = "2.3.10"
versionCode = 106
versionName = "2.3.11"

flavorDimensions("default")

Expand Down Expand Up @@ -95,6 +95,13 @@ android {
checkReleaseBuilds = false
abortOnError = false
}

dependenciesInfo {
// Disables dependency metadata when building APKs.
includeInApk = false
// Disables dependency metadata when building Android App Bundles.
includeInBundle = false
}
}

dependencies {
Expand Down
Loading

0 comments on commit f7012e1

Please sign in to comment.