forked from NapNeko/NapCatQQ
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
103 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: "Build" | ||
name: "Build Action" | ||
on: | ||
workflow_dispatch: | ||
push: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
name: "Build Test" | ||
on: | ||
workflow_dispatch: | ||
|
||
permissions: write-all | ||
|
||
jobs: | ||
build-linux: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
target_platform: [linux] | ||
target_arch: [x64, arm64] | ||
steps: | ||
- name: Clone Main Repository | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: 'NapNeko/NapCatQQ' | ||
submodules: true | ||
ref: main | ||
token: ${{ secrets.NAPCAT_BUILD }} | ||
- name: Use Node.js 20.X | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20.x | ||
- name: Build NuCat Linux | ||
run: | | ||
npm i --arch=${{ matrix.target_arch }} --platform=${{ matrix.target_platform }} | ||
npm run build:prod | ||
cd dist | ||
npm i --omit=dev --arch=${{ matrix.target_arch }} --platform=${{ matrix.target_platform }} | ||
cd .. | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: NapCat.${{ matrix.target_platform }}.${{ matrix.target_arch }} | ||
path: dist | ||
build-win32: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
target_platform: [win32] | ||
target_arch: [x64,ia32] | ||
steps: | ||
- name: Clone Main Repository | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: 'NapNeko/NapCatQQ' | ||
submodules: true | ||
ref: main | ||
token: ${{ secrets.NAPCAT_BUILD }} | ||
- name: Use Node.js 20.X | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20.x | ||
- name: Build NuCat Linux | ||
run: | | ||
npm i --arch=${{ matrix.target_arch }} --platform=${{ matrix.target_platform }} | ||
npm run build:prod | ||
cd dist | ||
npm i --omit=dev --arch=${{ matrix.target_arch }} --platform=${{ matrix.target_platform }} | ||
cd .. | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: NapCat.${{ matrix.target_platform }}.${{ matrix.target_arch }} | ||
path: dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# v1.6.2 | ||
|
||
QQ Version: Windows 9.9.11-24815 / Linux 3.2.9-24815 | ||
|
||
## 修复与优化 | ||
* 修复获取Cookies异常崩溃问题 | ||
* 尝试修复成员退群缓存问题 | ||
* 修复自身退群后群缓存清理问题 | ||
|
||
## 新增与调整 | ||
|
||
|
||
新增的 API 详细见[API文档](https://napneko.github.io/zh-CN/develop/extends_api) |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule core
updated
from 88dc74 to 33aeed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export const version = '1.6.1'; | ||
export const version = '1.6.2'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters