From 73b2d778a01a0a315f78546d714580abcd2ad2f2 Mon Sep 17 00:00:00 2001 From: wumode Date: Tue, 2 Sep 2025 12:39:13 +0800 Subject: [PATCH] =?UTF-8?q?fix(ClashRuleProvider):=20=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E6=A8=A1=E6=9D=BF=E4=BF=9D=E5=AD=98=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.v2.json | 3 ++- plugins.v2/clashruleprovider/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/package.v2.json b/package.v2.json index f9d1718..e562dd2 100644 --- a/package.v2.json +++ b/package.v2.json @@ -484,12 +484,13 @@ "name": "Clash Rule Provider", "description": "随时为Clash添加一些额外的规则。", "labels": "工具", - "version": "1.4.0", + "version": "1.4.1", "icon": "Mihomo_Meta_A.png", "author": "wumode", "level": 1, "release": true, "history": { + "v1.4.1": "修复配置模板保存错误, 请重新配置Clash模板", "v1.4.0": "优化 UI; 支持连接多个 Clash Dashboards", "v1.3.3": "通过emoji识别国家; 按国家分组节点; mrs格式支持", "v1.3.2": "注册插件动作", diff --git a/plugins.v2/clashruleprovider/__init__.py b/plugins.v2/clashruleprovider/__init__.py index 30ea818..f21725c 100644 --- a/plugins.v2/clashruleprovider/__init__.py +++ b/plugins.v2/clashruleprovider/__init__.py @@ -41,7 +41,7 @@ class ClashRuleProvider(_PluginBase): # 插件图标 plugin_icon = "Mihomo_Meta_A.png" # 插件版本 - plugin_version = "1.4.0" + plugin_version = "1.4.1" # 插件作者 plugin_author = "wumode" # 作者主页 @@ -563,7 +563,7 @@ class ClashRuleProvider(_PluginBase): 'discard_proxy_groups': self._discard_proxy_groups, 'enable_acl4ssr': self._enable_acl4ssr, 'dashboard_components': self._dashboard_components, - 'clash_template_yaml': self._clash_template_yaml, + 'clash_template': self._clash_template_yaml, 'hint_geo_dat': self._hint_geo_dat, 'best_cf_ip': self._best_cf_ip, 'active_dashboard': self._active_dashboard,