Skip to content

Commit

Permalink
v1.1.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
YuS1aN committed Mar 14, 2024
1 parent 86f6396 commit ca58cd0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
食用前需要暴露真寻Bot接口到外部网络, 比如修改 `.env.dev`:
`HOST = 127.0.0.1` => `HOST = 0.0.0.0`

或者采用 `Nginx` 等Web服务器反向代理
或者采用 `Nginx` 等Web服务器进行反向代理

## TODO (新版本适配中)
* SQL历史记录
* 新建文件/文件夹
* SQL历史记录
11 changes: 10 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ android {
minSdk 23
targetSdk 34
versionCode 1
versionName "1.0"
versionName "1.1.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand Down Expand Up @@ -65,6 +65,15 @@ android {
assets.srcDirs = ['src/release/assets'] + commonDir
}
}
applicationVariants.configureEach { variant ->
variant.outputs.configureEach { output ->
def outputFile = output.outputFile
if (outputFile != null && outputFile.name.endsWith('.apk')) {
def fileName = "zxbot" + "-" + buildType.name + "-v" + defaultConfig.versionName + ".apk"
outputFileName = fileName
}
}
}
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/dialog_edit_plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_config"
android:layout_width="match_parent"
android:layout_height="250dp"
android:layout_height="200dp"
android:layout_marginTop="@dimen/margin_normal"
android:orientation="vertical"
android:scrollbars="none"
Expand Down

0 comments on commit ca58cd0

Please sign in to comment.