release: 1.8.0

This commit is contained in:
手瓜一十雪 2024-08-06 09:13:03 +08:00
parent 16b1a6b153
commit 1070278eaf
6 changed files with 9 additions and 7 deletions

View File

@ -1,4 +1,4 @@
# v1.7.9 # v1.8.0
QQ Version: Windows 9.9.15-26702 / Linux 3.2.12-26702 QQ Version: Windows 9.9.15-26702 / Linux 3.2.12-26702

View File

@ -2,7 +2,7 @@
"name": "napcat", "name": "napcat",
"private": true, "private": true,
"type": "module", "type": "module",
"version": "1.7.9", "version": "1.8.0",
"scripts": { "scripts": {
"watch:dev": "vite --mode development", "watch:dev": "vite --mode development",
"watch:prod": "vite --mode production", "watch:prod": "vite --mode production",

View File

@ -99,8 +99,10 @@ class MessageUniqueWrapper {
} }
createMsg(peer: Peer, msgId: string): number | undefined { createMsg(peer: Peer, msgId: string): number | undefined {
const key = `${msgId}|${peer.chatType}|${peer.peerUid}`; const key = `${msgId}|${peer.chatType}|${peer.peerUid}`;
const hash = crypto.createHash('md5').update(key); const hash = crypto.createHash('md5').update(key).digest();
const shortId = hash.digest().readUInt32BE(0); //设置第一个bit为0 保证shortId为正数
hash[0] &= 0x7f;
const shortId = hash.readInt32BE(0);
//减少性能损耗 //减少性能损耗
// const isExist = this.msgIdMap.getKey(shortId); // const isExist = this.msgIdMap.getKey(shortId);
// if (isExist && isExist === msgId) { // if (isExist && isExist === msgId) {

View File

@ -1 +1 @@
export const version = '1.7.9'; export const version = '1.8.0';

View File

@ -29,7 +29,7 @@ async function onSettingWindowCreated(view: Element) {
SettingItem( SettingItem(
'<span id="napcat-update-title">Napcat</span>', '<span id="napcat-update-title">Napcat</span>',
undefined, undefined,
SettingButton('V1.7.9', 'napcat-update-button', 'secondary') SettingButton('V1.8.0', 'napcat-update-button', 'secondary')
), ),
]), ]),
SettingList([ SettingList([

View File

@ -163,7 +163,7 @@ async function onSettingWindowCreated(view) {
SettingItem( SettingItem(
'<span id="napcat-update-title">Napcat</span>', '<span id="napcat-update-title">Napcat</span>',
void 0, void 0,
SettingButton("V1.7.9", "napcat-update-button", "secondary") SettingButton("V1.8.0", "napcat-update-button", "secondary")
) )
]), ]),
SettingList([ SettingList([