Compare commits

..

1 Commits

Author SHA1 Message Date
chen08209
af3eb57956 Support override script
Support proxies search

Add some scenes auto close connections

Update core

Optimize more details
2025-05-28 19:24:50 +08:00
2 changed files with 3 additions and 8 deletions

View File

@@ -356,13 +356,8 @@ class GlobalState {
rawConfig["tun"]["route-address"] = realPatchConfig.tun.routeAddress;
rawConfig["tun"]["auto-route"] = realPatchConfig.tun.autoRoute;
rawConfig["geodata-loader"] = realPatchConfig.geodataLoader.name;
if (rawConfig["sniffer"]?["sniff"] != null) {
for (final value in (rawConfig["sniffer"]?["sniff"] as Map).values) {
if (value["ports"] != null && value["ports"] is List) {
value["ports"] =
value["ports"]?.map((item) => item.toString()).toList() ?? [];
}
}
if (rawConfig["sniffer"] != null) {
rawConfig["sniffer"] = Sniffer.fromJson(rawConfig["sniffer"]);
}
if (rawConfig["profile"] == null) {
rawConfig["profile"] = {};

View File

@@ -1,7 +1,7 @@
name: fl_clash
description: A multi-platform proxy client based on ClashMeta, simple and easy to use, open-source and ad-free.
publish_to: 'none'
version: 0.8.85+202505291
version: 0.8.85+202505282
environment:
sdk: '>=3.1.0 <4.0.0'