Release 1.6.6

This commit is contained in:
MystiPanda 2024-06-12 10:33:20 +08:00
parent 5343040ef3
commit 84027cbae1
No known key found for this signature in database
7 changed files with 922 additions and 837 deletions

View File

@ -249,7 +249,7 @@ jobs:
- MacOS apple M芯片: aarch64.dmg
### Linux
- Linux 64位: amd64.AppImage/amd64.deb/amd64.rpm
- Linux 64位: amd64.deb/amd64.rpm
- Linux 32位: i386.deb/i386.rpm
- Linux arm64架构: arm64.deb/aarch64.rpm
- Linux armv7架构: armhf.deb/armhfp.rpm

View File

@ -1,3 +1,20 @@
## v1.6.6
### Features
- MacOS 应用签名
- 删除 AppImage
- 应用更新对话框添加下载按钮
- 设置系统代理绕过时保留默认值
- 系统代理绕过设置输入格式检查
### Bugs Fixes
- MacOS 代理组图标无法显示
- RPM 包依赖缺失
---
## v1.6.5
### Features

View File

@ -1,6 +1,6 @@
{
"name": "clash-verge",
"version": "1.6.5",
"version": "1.6.6",
"license": "GPL-3.0-only",
"scripts": {
"dev": "tauri dev",
@ -27,7 +27,7 @@
"@mui/icons-material": "^5.15.19",
"@mui/lab": "5.0.0-alpha.149",
"@mui/material": "^5.15.19",
"@mui/x-data-grid": "^6.20.0",
"@mui/x-data-grid": "^6.20.1",
"@tauri-apps/api": "^1.5.6",
"@types/json-schema": "^7.0.15",
"ahooks": "^3.8.0",
@ -38,7 +38,7 @@
"lodash-es": "^4.17.21",
"meta-json-schema": "1.18.5-alpha4",
"monaco-editor": "^0.49.0",
"monaco-yaml": "^5.1.1",
"monaco-yaml": "^5.2.0",
"nanoid": "^5.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
@ -63,8 +63,8 @@
"@types/react-dom": "^18.3.0",
"@types/react-transition-group": "^4.4.10",
"@vitejs/plugin-legacy": "^5.4.1",
"@vitejs/plugin-react": "^4.3.0",
"adm-zip": "^0.5.13",
"@vitejs/plugin-react": "^4.3.1",
"adm-zip": "^0.5.14",
"cross-env": "^7.0.3",
"fs-extra": "^11.2.0",
"https-proxy-agent": "^5.0.1",
@ -72,10 +72,10 @@
"node-fetch": "^3.3.2",
"prettier": "^2.8.8",
"pretty-quick": "^3.3.1",
"sass": "^1.77.4",
"terser": "^5.31.0",
"sass": "^1.77.5",
"terser": "^5.31.1",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vite": "^5.2.13",
"vite-plugin-monaco-editor": "^1.1.0",
"vite-plugin-svgr": "^4.2.0"
},

File diff suppressed because it is too large Load Diff

2
src-tauri/Cargo.lock generated
View File

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

View File

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

View File

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