Skip to content

Commit

Permalink
release: 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MliKiowa committed Aug 23, 2024
1 parent 89c1025 commit 9ad511a
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "NapCatQQ",
"slug": "NapCat.Framework",
"description": "高性能的 OneBot 11 协议实现",
"version": "2.2.0",
"version": "2.2.1",
"icon": "./logo.png",
"authors": [
{
Expand Down
4 changes: 2 additions & 2 deletions 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": "2.2.0",
"version": "2.2.1",
"scripts": {
"build:framework": "vite build --mode framework",
"build:shell": "vite build --mode shell",
Expand Down Expand Up @@ -48,7 +48,7 @@
"ajv": "^8.13.0",
"async-mutex": "^0.5.0",
"chalk": "^5.3.0",
"commander": "^12.2.0",
"commander": "^12.2.1",
"cors": "^2.8.5",
"express": "^5.0.0-beta.2",
"fast-xml-parser": "^4.3.6",
Expand Down
2 changes: 1 addition & 1 deletion src/common/framework/napcat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import path, { dirname } from 'path';
import { fileURLToPath } from 'url';
import fs from 'fs';

export const napcat_version = '2.2.0';
export const napcat_version = '2.2.1';

export class NapCatPathWrapper {
binaryPath: string;
Expand Down
4 changes: 4 additions & 0 deletions src/core/external/appid.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,9 @@
"9.9.15-27254":{
"appid": 537240709,
"qua": "V1_WIN_NQ_9.9.15_27254_GW_B"
},
"9.9.15-27333": {
"appid": 537240709,
"qua": "V1_WIN_NQ_9.9.15_27333_GW_B"
}
}
3 changes: 2 additions & 1 deletion src/framework/napcat.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// 用于 NapCat 对QQ流程分析
// 此代码禁止除NapCat外任何地方使用 使用需获取许可

let Process = require('process');
let os = require('os');
let path = require('path');
Expand Down
2 changes: 1 addition & 1 deletion src/onebot/action/msg/SendMsg/create-send-elements.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ const _handlers: {
} else {
postData = data;
}
// Mlikiowa V2.2.0 Refactor Todo
// Mlikiowa V2.2.1 Refactor Todo
const signUrl = obContext.configLoader.configData.musicSignUrl;
if (!signUrl) {
if (data.type === 'qq') {
Expand Down
2 changes: 1 addition & 1 deletion src/webui/ui/NapCat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ async function onSettingWindowCreated(view: Element) {
SettingItem(
'<span id="napcat-update-title">Napcat</span>',
undefined,
SettingButton('V2.2.0', 'napcat-update-button', 'secondary'),
SettingButton('V2.2.1', '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 @@ -164,7 +164,7 @@ async function onSettingWindowCreated(view) {
SettingItem(
'<span id="napcat-update-title">Napcat</span>',
void 0,
SettingButton("V2.2.0", "napcat-update-button", "secondary")
SettingButton("V2.2.1", "napcat-update-button", "secondary")
)
]),
SettingList([
Expand Down

0 comments on commit 9ad511a

Please sign in to comment.