Release 1.6.1

This commit is contained in:
MystiPanda 2024-04-30 23:25:45 +08:00
parent dbb8fe15cf
commit 67b67bae6a
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 ## v1.6.0
### Features ### Features

View File

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

2
src-tauri/Cargo.lock generated
View File

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

View File

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