6.7.0 - Alpha6 - 本地化 Expandable Layout (版本 1.6.0), Recyclerview Flexible Divider (版本 1.4.0)
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$data": {
|
"$data": {
|
||||||
"v6.7.0": {
|
"v6.7.0": {
|
||||||
"released_date": "2025/09/10",
|
"released_date": "2025/09/24",
|
||||||
"feature": [
|
"feature": [
|
||||||
"zip 模块, 用于文件压缩与解压缩操作 (Ref to [Auto.js Pro](https://g.pro.autojs.org/)) (参阅 项目文档 > [Zip](https://docs.autojs6.com/#/zip))",
|
"zip 模块, 用于文件压缩与解压缩操作 (Ref to [Auto.js Pro](https://g.pro.autojs.org/)) (参阅 项目文档 > [Zip](https://docs.autojs6.com/#/zip))",
|
||||||
"mediainfo 模块, 用于查看媒体文件的详细信息 (参阅 项目文档 > [媒体信息](https://docs.autojs6.com/#/mediainfo))",
|
"mediainfo 模块, 用于查看媒体文件的详细信息 (参阅 项目文档 > [媒体信息](https://docs.autojs6.com/#/mediainfo))",
|
||||||
@@ -36,6 +36,9 @@
|
|||||||
"Gradle 构建脚本提升 7z 格式文件的解压效率"
|
"Gradle 构建脚本提升 7z 格式文件的解压效率"
|
||||||
],
|
],
|
||||||
"dependency": [
|
"dependency": [
|
||||||
|
"本地化 Root Shell 版本 1.6",
|
||||||
|
"本地化 Expandable Layout 版本 1.6.0",
|
||||||
|
"本地化 Recyclerview Flexible Divider 版本 1.4.0",
|
||||||
"附加 Androidx Core (KTX) 版本 1.15.0",
|
"附加 Androidx Core (KTX) 版本 1.15.0",
|
||||||
"升级 Gradle 版本 8.14 -> 8.14.3",
|
"升级 Gradle 版本 8.14 -> 8.14.3",
|
||||||
"升级 Apache Commons 版本 3.16.0 -> 3.18.0",
|
"升级 Apache Commons 版本 3.16.0 -> 3.18.0",
|
||||||
|
|||||||
@@ -324,13 +324,15 @@ dependencies /* Material Dialogs */ {
|
|||||||
|
|
||||||
dependencies /* Layout */ {
|
dependencies /* Layout */ {
|
||||||
// Expandable Layout
|
// Expandable Layout
|
||||||
implementation("com.github.aakira:expandable-layout:1.6.0")
|
// implementation("com.github.aakira:expandable-layout:1.6.0")
|
||||||
|
implementation(project(":libs:expandable-layout-1.6.0"))
|
||||||
|
|
||||||
// Expandable RecyclerView
|
// Expandable RecyclerView
|
||||||
implementation("com.bignerdranch.android:expandablerecyclerview:3.0.0-RC1")
|
implementation("com.bignerdranch.android:expandablerecyclerview:3.0.0-RC1")
|
||||||
|
|
||||||
// Flexible Divider
|
// Flexible Divider
|
||||||
implementation("com.yqritc:recyclerview-flexibledivider:1.4.0")
|
// implementation("com.yqritc:recyclerview-flexibledivider:1.4.0")
|
||||||
|
implementation(project(":libs:recyclerview-flexibledivider-1.4.0"))
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies /* View */ {
|
dependencies /* View */ {
|
||||||
|
|||||||
9
libs/expandable-layout-1.6.0/build.gradle.kts
Normal file
9
libs/expandable-layout-1.6.0/build.gradle.kts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
"expandable-layout-1.6.0.aar"
|
||||||
|
.let { path ->
|
||||||
|
rootProject.extra["configurationName"].toString().let { name ->
|
||||||
|
configurations.maybeCreate(name)
|
||||||
|
file(path).takeIf { it.exists() }?.also {
|
||||||
|
artifacts.add(name, it)
|
||||||
|
} ?: throw Exception("File not found: \"$path\"")
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
libs/expandable-layout-1.6.0/expandable-layout-1.6.0.aar
Normal file
BIN
libs/expandable-layout-1.6.0/expandable-layout-1.6.0.aar
Normal file
Binary file not shown.
9
libs/recyclerview-flexibledivider-1.4.0/build.gradle.kts
Normal file
9
libs/recyclerview-flexibledivider-1.4.0/build.gradle.kts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
"recyclerview-flexibledivider-1.4.0.aar"
|
||||||
|
.let { path ->
|
||||||
|
rootProject.extra["configurationName"].toString().let { name ->
|
||||||
|
configurations.maybeCreate(name)
|
||||||
|
file(path).takeIf { it.exists() }?.also {
|
||||||
|
artifacts.add(name, it)
|
||||||
|
} ?: throw Exception("File not found: \"$path\"")
|
||||||
|
}
|
||||||
|
}
|
||||||
Binary file not shown.
@@ -31,6 +31,8 @@ private val libs = listOf(
|
|||||||
"markwon-syntax-highlight-4.6.2",
|
"markwon-syntax-highlight-4.6.2",
|
||||||
|
|
||||||
"root-shell-1.6",
|
"root-shell-1.6",
|
||||||
|
"expandable-layout-1.6.0",
|
||||||
|
"recyclerview-flexibledivider-1.4.0"
|
||||||
)
|
)
|
||||||
|
|
||||||
include(
|
include(
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#Fri Sep 12 14:28:28 CST 2025
|
#Mon Sep 22 20:20:58 CST 2025
|
||||||
BUILD_TIME=1757658508250
|
BUILD_TIME=1758543658764
|
||||||
COMPILE_SDK_VERSION=35
|
COMPILE_SDK_VERSION=35
|
||||||
IMAGE_QUANT_CMAKE_VERSION=3.22.1
|
IMAGE_QUANT_CMAKE_VERSION=3.22.1
|
||||||
IMAGE_QUANT_NDK_VERSION=26.1.10909125
|
IMAGE_QUANT_NDK_VERSION=26.1.10909125
|
||||||
@@ -24,6 +24,6 @@ RAPID_OCR_OPENCV_MOBILE_LABEL_VERSION=13
|
|||||||
RAPID_OCR_OPENCV_MOBILE_VERSION=4.5.3
|
RAPID_OCR_OPENCV_MOBILE_VERSION=4.5.3
|
||||||
TARGET_SDK_VERSION=35
|
TARGET_SDK_VERSION=35
|
||||||
TARGET_SDK_VERSION_INRT=29
|
TARGET_SDK_VERSION_INRT=29
|
||||||
VERSION_BUILD=3362
|
VERSION_BUILD=3371
|
||||||
VERSION_NAME=6.7.0 Alpha5
|
VERSION_NAME=6.7.0 Alpha6
|
||||||
VSCODE_EXT_REQUIRED_VERSION=1.0.8
|
VSCODE_EXT_REQUIRED_VERSION=1.0.8
|
||||||
|
|||||||
Reference in New Issue
Block a user