From 75b2df4de1d693d5f5885833496d5dd4a0453b9e Mon Sep 17 00:00:00 2001 From: pompurin404 Date: Wed, 16 Oct 2024 22:52:26 +0800 Subject: [PATCH] 1.5.1 --- changelog.md | 9 +++++++++ package.json | 2 +- scripts/artifact.mjs | 4 ++-- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index 62b3735..44ab60d 100644 --- a/changelog.md +++ b/changelog.md @@ -3,3 +3,12 @@ - 1.5.0 之后 macOS 改用 pkg 安装方式,不再支持 dmg 安装方式,因此本次更新需要手动下载安装包进行安装 - electron33 已不再支持 macOS 10.15,故为 10.15 提供单独的安装包,需要的用户请自行下载安装,应用内更新时会自动检测系统版本,安装后后续可正常在应用内直接更新 - 1.5.1 之后 Windows 下 `profuctName` 改为 `Mihomo Party`, 更新后若出现找不到文件报错,手动以管理员权限运行一次即可 + +### New Features + +- macOS/Linux 均不再存储 root 密码 +- 修改Windows下的 `productName` 为 `Mihomo Party` + +### Bug Fixes + +- 单独提供适用于 macOS 10.15 的安装包 diff --git a/package.json b/package.json index bb3a9b3..9ef0891 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mihomo-party", - "version": "1.5.0", + "version": "1.5.1", "description": "Mihomo Party", "main": "./out/main/index.js", "author": "mihomo-party-org", diff --git a/scripts/artifact.mjs b/scripts/artifact.mjs index 3dad1b8..cba2ca8 100644 --- a/scripts/artifact.mjs +++ b/scripts/artifact.mjs @@ -85,7 +85,7 @@ const macosMedia = macosFiles.map((file, index) => ({ type: 'document', media: `attach://file${index}` })) -macosMedia[macosMedia.length - 1].caption = `#${hash} #macOS 11+\n${message}` +macosMedia[macosMedia.length - 1].caption = `#${hash} #macOS11+\n${message}` const macosForm = new FormData() macosForm.append('chat_id', CHAT_ID) macosForm.append('media', JSON.stringify(macosMedia)) @@ -97,7 +97,7 @@ const macos10Media = macos10Files.map((file, index) => ({ type: 'document', media: `attach://file${index}` })) -macos10Media[macos10Media.length - 1].caption = `#${hash} #macOS 10.15+\n${message}` +macos10Media[macos10Media.length - 1].caption = `#${hash} #macOS10+\n${message}` const macos10Form = new FormData() macos10Form.append('chat_id', CHAT_ID) macos10Form.append('media', JSON.stringify(macos10Media))