Skip to content

Commit

Permalink
feat: 1.4.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fy0 committed Dec 10, 2023
1 parent 2056501 commit fafe50a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
20 changes: 10 additions & 10 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.1"
PROJECT_VERSION_DISPLAY: "v1.4.1 v20231110"
PROJECT_VERSION: "1.4.2"
PROJECT_VERSION_DISPLAY: "v1.4.2 v20231210"

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.1" >> "$GITHUB_OUTPUT";
echo "PROJECT_VERSION_DISPLAY=v1.4.1 v20231110" >> "$GITHUB_OUTPUT";
echo "PROJECT_VERSION=1.4.2" >> "$GITHUB_OUTPUT";
echo "PROJECT_VERSION_DISPLAY=v1.4.2 v20231210" >> "$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 @@ -107,7 +107,7 @@ jobs:
uses: actions/setup-go@v3
if: ${{ steps.cache-gocq-dist.outputs.cache-hit != 'true' }}
with:
go-version: stable
go-version: '1.20'
- name: Build Binary
if: ${{ steps.cache-gocq-dist.outputs.cache-hit != 'true' }}
working-directory: ./go-cqhttp
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
if: ${{ steps.cache-gocq-dist.outputs.cache-hit != 'true' }}
uses: actions/setup-go@v3
with:
go-version: stable
go-version: '1.20'
- name: Setup Android NDK
id: setup-ndk
if: ${{ steps.cache-gocq-dist.outputs.cache-hit != 'true' }}
Expand Down Expand Up @@ -275,7 +275,7 @@ jobs:
uses: actions/setup-go@v3
if: steps.cache-core-dist.outputs.cache-hit != 'true'
with:
go-version: stable
go-version: '1.20'
- name: Install Dependencies
if: steps.cache-core-dist.outputs.cache-hit != 'true'
working-directory: ./sealdice-core
Expand Down Expand Up @@ -361,7 +361,7 @@ jobs:
if: steps.cache-core-dist.outputs.cache-hit != 'true'
uses: actions/setup-go@v3
with:
go-version: stable
go-version: '1.20'
- name: Install dependencies
if: steps.cache-core-dist.outputs.cache-hit != 'true'
working-directory: ./sealdice-core
Expand Down Expand Up @@ -428,7 +428,7 @@ jobs:
if: steps.cache-core-dist.outputs.cache-hit != 'true'
uses: actions/setup-go@v3
with:
go-version: 1.18
go-version: '1.20'
- name: Install dependencies
if: steps.cache-core-dist.outputs.cache-hit != 'true'
working-directory: ./sealdice-core
Expand Down Expand Up @@ -673,7 +673,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v1.4.1
tag_name: v1.4.2
name: ${{ env.PROJECT_VERSION_DISPLAY }}
prerelease: false
body: '[改动日志](https://sealdice.com/changelog)'
Expand Down
2 changes: 1 addition & 1 deletion sealdice-builtins
2 changes: 1 addition & 1 deletion sealdice-core
Submodule sealdice-core updated 61 files
+60 −4 .github/workflows/build.yml
+8 −5 .github/workflows/test_and_lint.yml
+2 −0 .gitignore
+8 −2 api/api_bind.go
+163 −37 api/conn.go
+41 −19 api/dice_config.go
+35 −0 api/helpdoc.go
+16 −3 api/js.go
+2 −2 api/socks.go
+255 −169 dice/builtin_commands.go
+13 −1 dice/cmd_parse.go
+89 −17 dice/config.go
+21 −10 dice/dice.go
+7 −15 dice/dice_backup.go
+13 −1 dice/dice_ban.go
+110 −12 dice/dice_help.go
+163 −31 dice/dice_jsvm.go
+3 −3 dice/ext.go
+20 −9 dice/ext_coc7.go
+1 −0 dice/ext_deck.go
+42 −21 dice/ext_dnd5e.go
+48 −1 dice/ext_exp.go
+2 −2 dice/ext_fun.go
+33 −22 dice/ext_log.go
+1 −0 dice/ext_reply.go
+3 −2 dice/ext_story.go
+96 −0 dice/im_helpers.go
+126 −41 dice/im_session.go
+0 −33 dice/im_vars.go
+2 −1 dice/model/backup.go
+8 −5 dice/platform_adapter.go
+32 −7 dice/platform_adapter_cqcode_helper.go
+1 −1 dice/platform_adapter_dodo.go
+321 −98 dice/platform_adapter_gocq.go
+61 −40 dice/platform_adapter_gocq_actions.go
+2 −5 dice/platform_adapter_gocq_helper.go
+29 −4 dice/platform_adapter_http.go
+498 −0 dice/platform_adapter_official_qq.go
+98 −0 dice/platform_adapter_official_qq_helper.go
+38 −15 dice/platform_adapter_red.go
+485 −0 dice/platform_adapter_sealchat.go
+311 −0 dice/platform_adapter_slack.go
+69 −0 dice/platform_adapter_slack_helper.go
+0 −70 dice/set_DNS.go
+0 −0 dice/set_dns_empty.s
+7 −0 dice/utils.go
+24 −23 go.mod
+125 −51 go.sum
+18 −6 main.go
+55 −0 migrate/v141_deprecated_config.go
+1 −1 readme.md
+1 −1 sealdice-builtins
+1 −1 sealdice-ui
+60 −0 signature/gen/sign_mods.go
+4 −0 signature/signature.go
+9 −0 static/scripts/seal_mod.public.pem
+4 −1 static/static.go
+83 −0 utils/crypto/utils_rsa.go
+119 −0 utils/satori/element.go
+209 −0 utils/satori/protocol.go
+61 −0 utils/split_text.go

0 comments on commit fafe50a

Please sign in to comment.