Release 1.6.1

This commit is contained in:
MystiPanda 2024-04-30 23:25:45 +08:00
parent 8400ee8a3d
commit bd33728fd7
6 changed files with 24 additions and 14 deletions

View File

@ -1,3 +1,20 @@
## v1.6.1
### Features
- 鼠标悬浮显示当前订阅的名称 [#938](https://github.com/clash-verge-rev/clash-verge-rev/pull/938)
- 日志过滤支持正则表达式 [#959](https://github.com/clash-verge-rev/clash-verge-rev/pull/959)
- 更新 Clash 内核到 1.18.4
### Bugs Fixes
- 修复 Linux KDE 环境下系统代理无法开启的问题
- 窗口最大化图标调整 [#924](https://github.com/clash-verge-rev/clash-verge-rev/pull/924)
- 修改 MacOS 托盘点击行为(左键菜单,右键点击事件)
- 修复 MacOS 服务模式安装失败的问题
---
## v1.6.0
### Features

View File

@ -1,6 +1,6 @@
{
"name": "clash-verge",
"version": "1.6.0",
"version": "1.6.1",
"license": "GPL-3.0-only",
"scripts": {
"dev": "tauri dev",

2
src-tauri/Cargo.lock generated
View File

@ -788,7 +788,7 @@ dependencies = [
[[package]]
name = "clash-verge"
version = "1.6.0"
version = "1.6.1"
dependencies = [
"anyhow",
"auto-launch",

View File

@ -1,6 +1,6 @@
[package]
name = "clash-verge"
version = "1.6.0"
version = "1.6.1"
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.0"
"version": "1.6.1"
},
"build": {
"distDir": "../dist",

View File

@ -110,7 +110,7 @@ const LogPage = () => {
pt: 1,
mb: 0.5,
mx: "10px",
height: "48px",
height: "36px",
display: "flex",
alignItems: "center",
}}
@ -135,16 +135,9 @@ const LogPage = () => {
sx: { pr: 1 },
endAdornment: (
<IconButton
sx={{ p: 0.5 }}
sx={{ fontWeight: "800", height: "100%", padding: "0" }}
color={useRegexSearch ? "primary" : "default"}
title={t("Use Regular Expression")}
style={{
backgroundColor: useRegexSearch
? "rgba(20, 20, 20, 0.2)"
: "rgba(30, 0, 0, 0.0)",
fontSize: "150%",
fontWeight: "800",
borderRadius: "10%",
}}
onClick={() => setUseRegexSearch(!useRegexSearch)}
>
.*