Skip to content

Commit

Permalink
Release 1.5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
MystiPanda committed Mar 11, 2024
1 parent b598d00 commit 50ade92
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 6 deletions.
12 changes: 12 additions & 0 deletions UPDATELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## v1.5.7

### Features

- 优化 UI 各种细节
- 提供菜单栏图标样式切换选项(单色/彩色/禁用)
- 添加自动检查更新开关
- MacOS 开启 Tun 模式自动修改 DNS
- 调整可拖动区域(尝试修复触摸屏无法拖动的问题)

---

## v1.5.6

### Features
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clash-verge",
"version": "1.5.6",
"version": "1.5.7",
"license": "GPL-3.0-only",
"scripts": {
"dev": "tauri dev",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clash-verge"
version = "1.5.6"
version = "1.5.7"
description = "clash verge"
authors = ["zzzgydi", "wonfen", "MystiPanda"]
license = "GPL-3.0-only"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"package": {
"productName": "Clash Verge",
"version": "1.5.6"
"version": "1.5.7"
},
"build": {
"distDir": "../dist",
Expand Down
4 changes: 3 additions & 1 deletion src/components/layout/layout-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ export const LayoutItem = (props: Props) => {
onClick={() => navigate(to)}
>
{(menu_icon === "monochrome" || !menu_icon) && (
<ListItemIcon sx={{ color: "text.primary" }}>{icon[0]}</ListItemIcon>
<ListItemIcon sx={{ color: "text.primary", marginLeft: "6px" }}>
{icon[0]}
</ListItemIcon>
)}
{menu_icon === "colorful" && <ListItemIcon>{icon[1]}</ListItemIcon>}
<ListItemText
Expand Down
2 changes: 1 addition & 1 deletion src/locales/zh.json
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@

"App Log Level": "App日志等级",
"Auto Close Connections": "自动关闭连接",
"Enable Clash Fields Filter": "开启Clash字段过滤",
"Auto Check Update": "自动检查更新",
"Enable Builtin Enhanced": "开启内建增强功能",
"Proxy Layout Column": "代理页布局列数",
"Default Latency Test": "默认测试链接",
Expand Down

0 comments on commit 50ade92

Please sign in to comment.