Release 1.6.5

This commit is contained in:
MystiPanda 2024-06-04 12:11:38 +08:00
parent bfea70eec9
commit a900d6d742
No known key found for this signature in database
6 changed files with 24 additions and 10 deletions

View File

@ -250,12 +250,12 @@ jobs:
- MacOS apple M芯片: aarch64.dmg - MacOS apple M芯片: aarch64.dmg
### Linux ### Linux
- Linux 64位: amd64.AppImage/amd64.deb - Linux 64位: amd64.AppImage/amd64.deb/amd64.rpm
- Linux 32位: i386.deb - Linux 32位: i386.deb/i386.rpm
- Linux arm64架构: arm64.deb - Linux arm64架构: arm64.deb/aarch64.rpm
- Linux armv7架构: armhf.deb - Linux armv7架构: armhf.deb/armhfp.rpm
### Windows (Win7 用户请查看下面FAQ手动替换内核使用) ### Windows (Win7 用户请查看下面FAQ中的解决方案)
#### 正常版本(推荐) #### 正常版本(推荐)
- 64位: x64-setup.exe - 64位: x64-setup.exe
- 32位: x86-setup.exe - 32位: x86-setup.exe

View File

@ -1,3 +1,17 @@
## v1.6.5
### Features
- 添加 RPM 包支持
- 优化细节
### Bugs Fixes
- MacOS 10.15 编辑器空白的问题
- MacOS 低版本启动白屏的问题
---
## v1.6.4 ## v1.6.4
### Features ### Features

View File

@ -1,6 +1,6 @@
{ {
"name": "clash-verge", "name": "clash-verge",
"version": "1.6.4", "version": "1.6.5",
"license": "GPL-3.0-only", "license": "GPL-3.0-only",
"scripts": { "scripts": {
"dev": "tauri dev", "dev": "tauri dev",
@ -35,7 +35,7 @@
"dayjs": "1.11.5", "dayjs": "1.11.5",
"i18next": "^23.11.3", "i18next": "^23.11.3",
"lodash-es": "^4.17.21", "lodash-es": "^4.17.21",
"meta-json-schema": "1.18.5-alpha", "meta-json-schema": "1.18.5-alpha4",
"monaco-editor": "^0.49.0", "monaco-editor": "^0.49.0",
"monaco-yaml": "^5.1.1", "monaco-yaml": "^5.1.1",
"nanoid": "^5.0.7", "nanoid": "^5.0.7",

2
src-tauri/Cargo.lock generated
View File

@ -783,7 +783,7 @@ dependencies = [
[[package]] [[package]]
name = "clash-verge" name = "clash-verge"
version = "1.6.4" version = "1.6.5"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"auto-launch", "auto-launch",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "clash-verge" name = "clash-verge"
version = "1.6.4" version = "1.6.5"
description = "clash verge" description = "clash verge"
authors = ["zzzgydi", "wonfen", "MystiPanda"] authors = ["zzzgydi", "wonfen", "MystiPanda"]
license = "GPL-3.0-only" license = "GPL-3.0-only"

View File

@ -2,7 +2,7 @@
"$schema": "../node_modules/@tauri-apps/cli/schema.json", "$schema": "../node_modules/@tauri-apps/cli/schema.json",
"package": { "package": {
"productName": "Clash Verge", "productName": "Clash Verge",
"version": "1.6.4" "version": "1.6.5"
}, },
"build": { "build": {
"distDir": "../dist", "distDir": "../dist",