mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2024-11-16 11:42:21 +08:00
Release 1.6.1
This commit is contained in:
parent
8400ee8a3d
commit
bd33728fd7
17
UPDATELOG.md
17
UPDATELOG.md
|
@ -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
|
||||
|
|
|
@ -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
2
src-tauri/Cargo.lock
generated
|
@ -788,7 +788,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "clash-verge"
|
||||
version = "1.6.0"
|
||||
version = "1.6.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"auto-launch",
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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)}
|
||||
>
|
||||
.*
|
||||
|
|
Loading…
Reference in New Issue
Block a user