Skip to content

Commit

Permalink
release: v1.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
MliKiowa committed May 30, 2024
1 parent decc5fb commit 6cf209c
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions docs/changelogs/CHANGELOG.v1.4.4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# v1.4.4

QQ Version: Windows 9.9.10-24108 / Linux 3.2.7-23361

## 更新
* **重大更新:**更新了版本号


新增的 API 详细见[API文档](https://napneko.github.io/zh-CN/develop/extends_api)

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "napcat",
"private": true,
"type": "module",
"version": "1.4.3",
"version": "1.4.4",
"scripts": {
"watch:dev": "vite --mode development",
"watch:prod": "vite --mode production",
Expand Down
2 changes: 1 addition & 1 deletion src/onebot11/action/group/GetGroupMemberInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class GetGroupMemberInfo extends BaseAction<Payload, OB11GroupMember> {
throw (`群(${payload.group_id})不存在`);
}
const webGroupMembers = await WebApi.getGroupMembers(payload.group_id.toString());
if (payload.no_cache == true /*|| payload.no_cache === 'true'*/) {
if (payload.no_cache == true || payload.no_cache === 'true') {
groupMembers.set(group.groupCode, await NTQQGroupApi.getGroupMembers(payload.group_id.toString()));
}
const member = await getGroupMember(payload.group_id.toString(), payload.user_id.toString());
Expand Down
2 changes: 1 addition & 1 deletion src/onebot11/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '1.4.3';
export const version = '1.4.4';
2 changes: 1 addition & 1 deletion src/webui/ui/NapCat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function onSettingWindowCreated(view: Element) {
SettingItem(
'<span id="napcat-update-title">Napcat</span>',
undefined,
SettingButton('V1.4.3', 'napcat-update-button', 'secondary')
SettingButton('V1.4.4', 'napcat-update-button', 'secondary')
),
]),
SettingList([
Expand Down
2 changes: 1 addition & 1 deletion static/assets/renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ async function onSettingWindowCreated(view) {
SettingItem(
'<span id="napcat-update-title">Napcat</span>',
void 0,
SettingButton("V1.4.3", "napcat-update-button", "secondary")
SettingButton("V1.4.4", "napcat-update-button", "secondary")
)
]),
SettingList([
Expand Down

0 comments on commit 6cf209c

Please sign in to comment.