Skip to content

Commit

Permalink
Release 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MystiPanda committed Apr 30, 2024
1 parent 8400ee8 commit bd33728
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 14 deletions.
17 changes: 17 additions & 0 deletions UPDATELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.6.0",
"version": "1.6.1",
"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.6.0"
version = "1.6.1"
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
Expand Up @@ -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",
Expand Down
13 changes: 3 additions & 10 deletions src/pages/logs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const LogPage = () => {
pt: 1,
mb: 0.5,
mx: "10px",
height: "48px",
height: "36px",
display: "flex",
alignItems: "center",
}}
Expand All @@ -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)}
>
.*
Expand Down

0 comments on commit bd33728

Please sign in to comment.