diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5c3695c..c57cb32 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,11 +25,7 @@ jobs: echo "读取配置" source ${{ github.workspace }}/app/version_code.properties version=$VERSION_CODE - hun=$(expr ${version} / 100) - ten=$(expr ${version} / 10) - ten=$(expr ${ten} % 10) - one=$(expr ${version} % 10) - versionN=v$hun.$ten.$one + versionN=v${version:0:1}.${version:1:1}.${version:2:1} echo ::set-output name=need_create_release::"$CREATE_RELEASE" echo ::set-output name=version_name::"$versionN" diff --git a/app/release.md b/app/release.md index b36dc1f..e4ad621 100644 --- a/app/release.md +++ b/app/release.md @@ -1,6 +1 @@ -* 1、新增部分提示 -* 2、修复书籍无法导出缓存的问题 -* 3、修复部分书源bug -* 4、修复同名书籍详情页加载bug -* 5、修复搜索时当前分组不存在时无法搜索的问题 -* 6、Cookie支持备份&恢复 \ No newline at end of file +* 1、修复书源过多时搜索界面卡死的问题 \ No newline at end of file diff --git a/app/version_code.properties b/app/version_code.properties index 6e84c85..64df2c5 100644 --- a/app/version_code.properties +++ b/app/version_code.properties @@ -17,5 +17,5 @@ # #Fri Jun 18 21:45:31 CST 2021 -VERSION_CODE=245 -CREATE_RELEASE=false \ No newline at end of file +VERSION_CODE=246 +CREATE_RELEASE=true \ No newline at end of file