Skip to content

Commit

Permalink
feat: 1.4.4rc1 测试版
Browse files Browse the repository at this point in the history
  • Loading branch information
fy0 committed Mar 7, 2024
1 parent f30a7e9 commit a0a2281
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ env:
ANDROID_NDK_VERSION: r25c
COMMIT_ID: "${{ github.sha }}"
NO_BUILD_PROMPT: "no new commits, no need to build."
PROJECT_VERSION: "1.4.3"
PROJECT_VERSION_DISPLAY: "v1.4.3 v20240110"
PROJECT_VERSION: "1.4.4rc1"
PROJECT_VERSION_DISPLAY: "v1.4.4rc1 v20240310"

jobs:
commit-num-check:
Expand Down Expand Up @@ -36,8 +36,8 @@ jobs:
run: |
cd sealdice-core
# echo "PROJECT_VERSION=dev-${COMMIT_ID::7}" >> "$GITHUB_OUTPUT";
echo "PROJECT_VERSION=1.4.3" >> "$GITHUB_OUTPUT";
echo "PROJECT_VERSION_DISPLAY=v1.4.3 v20240110" >> "$GITHUB_OUTPUT";
echo "PROJECT_VERSION=1.4.4rc1" >> "$GITHUB_OUTPUT";
echo "PROJECT_VERSION_DISPLAY=v1.4.4rc1 v20240310" >> "$GITHUB_OUTPUT";
- name: Warning
run: if [ $(git log --oneline --since '24 hours ago' | wc -l) <= 0 ]; then echo $NO_BUILD_PROMPT; fi
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
with:
ndk-version: ${{ env.ANDROID_NDK_VERSION }}
link-to-sdk: true
local-cache: true
local-cache: false
- name: Build Binary
if: ${{ steps.cache-gocq-dist.outputs.cache-hit != 'true' }}
working-directory: ./go-cqhttp
Expand Down Expand Up @@ -426,7 +426,7 @@ jobs:
with:
ndk-version: ${{ env.ANDROID_NDK_VERSION }}
link-to-sdk: true
local-cache: true
local-cache: false
- name: Install Go
if: steps.cache-core-dist.outputs.cache-hit != 'true'
uses: actions/setup-go@v3
Expand Down Expand Up @@ -676,9 +676,9 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v1.4.3
tag_name: v1.4.4rc1
name: ${{ env.PROJECT_VERSION_DISPLAY }}
prerelease: false
prerelease: true
body: '[改动日志](https://sealdice.com/changelog)'
files: |
./dist/sealdice*
Expand Down
2 changes: 1 addition & 1 deletion sealdice-core
Submodule sealdice-core updated 63 files
+0 −224 .github/workflows/build.yml
+4 −4 .github/workflows/test_and_lint.yml
+4 −2 .gitignore
+6 −0 .golangci.yml
+12 −0 .idea/codeStyles/Project.xml
+7 −0 .vscode/settings.json
+9 −7 api/api_bind.go
+2 −1 api/backup.go
+2 −1 api/ban.go
+4 −3 api/censor.go
+7 −5 api/conn.go
+2 −1 api/custom.go
+2 −1 api/deck.go
+23 −2 api/dice_config.go
+3 −3 api/group.go
+2 −1 api/helpdoc.go
+2 −1 api/js.go
+2 −1 api/reply.go
+2 −2 api/socks.go
+3 −2 api/story_log.go
+4 −5 api/utils.go
+15 −12 dice/builtin_commands.go
+82 −17 dice/config.go
+41 −20 dice/dice.go
+4 −3 dice/dice_backup.go
+39 −22 dice/dice_ban.go
+4 −3 dice/dice_censor.go
+288 −17 dice/dice_jsvm.go
+269 −0 dice/dice_jsvm_test.go
+94 −80 dice/ext_coc7.go
+56 −32 dice/ext_deck.go
+3 −1 dice/ext_dnd5e.go
+16 −14 dice/ext_log.go
+74 −28 dice/im_session.go
+2 −1 dice/im_vars.go
+2 −1 dice/model/censor_log.go
+4 −4 dice/model/db_init.go
+3 −2 dice/model/db_utils.go
+1 −0 dice/platform_adapter_cqcode_helper.go
+3 −0 dice/platform_adapter_discord.go
+27 −13 dice/platform_adapter_gocq.go
+2 −1 dice/platform_adapter_gocq_channel.go
+8 −7 dice/platform_adapter_gocq_helper.go
+1 −0 dice/platform_adapter_http.go
+18 −8 dice/platform_adapter_official_qq.go
+6 −5 dice/platform_adapter_official_qq_helper.go
+15 −14 dice/platform_adapter_walleq.go
+13 −7 dice/platform_adapter_walleq_helper.go
+14 −14 go.mod
+30 −31 go.sum
+26 −21 main.go
+1 −0 migrate/log_item_fix_type.go
+5 −4 migrate/v131_deprecated_config.go
+47 −0 migrate/v144_remote_old_helpdoc.go
+17 −5 readme.md
+1 −1 sealdice-ui
+2 −1 signature/gen/sign_mods.go
+4 −2 tray_darwin.go
+3 −1 tray_others.go
+4 −3 tray_windows.go
+3 −20 update.go
+5 −5 update_updater.go
+23 −0 utils/crypto/sha256.go

0 comments on commit a0a2281

Please sign in to comment.