| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| ClashFX.app.dSYM.zip | 2026-04-21 | 47.0 MB | |
| ClashFX.dmg | 2026-04-21 | 88.0 MB | |
| 1.0.13 source code.tar.gz | 2026-04-21 | 5.0 MB | |
| 1.0.13 source code.zip | 2026-04-21 | 5.2 MB | |
| README.md | 2026-04-21 | 3.1 kB | |
| Totals: 5 Items | 145.3 MB | 0 | |
ClashFX 1.0.13
Bug Fixes / 问题修复
-
Fixed double-encoded share-link subscriptions — Some providers (e.g. sub.cucloud.top) return a base64 payload where each individual proxy URI is itself base64-encoded a second time, so lines look like
c3M6Ly9...instead ofss://.... ClashFX now detects and decodes these correctly, generates a valid Clash config withAuto(url-test) andProxy(select) groups, and no longer shows "cannot unmarshal !!str" errors. -
Fixed domestic site access in Rules mode — When generating a config from share-link subscriptions, the rules section previously only contained
MATCH,Proxy, routing all traffic through the proxy including Chinese domestic sites (Baidu, etc.).GEOIP,private,DIRECTandGEOIP,CN,DIRECTrules are now added beforeMATCH,Proxyso local and domestic traffic bypasses the proxy. -
Fixed blank speed display in menu bar — The upload/download speed text in the status bar was invisible on first launch. The initial draw call occurred before Auto Layout resolved the view bounds (height = 0), and subsequent updates were silently dropped if the speed values hadn't changed. Fixed by overriding
layout()to re-triggerneedsDisplayonce bounds are non-zero. -
Fixed settings tab gray block on macOS 15 Sequoia —
NSTabViewControllerwith.toolbarstyle renders as a large gray block on macOS 15 due to toolbar layout changes. The settings window now uses.segmentedControlOnTopstyle on macOS 15+ for a clean appearance, while retaining.toolbarwith proper SF Symbol icons on macOS 11–14.
改进
-
修复双层 base64 订阅解析 — 部分机场(如 sub.cucloud.top)返回的 base64 内容中每行代理链接本身也经过了一次 base64 编码,导致每行看起来像
c3M6Ly9...而非ss://...。ClashFX 现在能正确识别并解码,自动生成包含Auto(url-test)和Proxy(select)分组的合法 Clash 配置,不再出现 "cannot unmarshal !!str" 错误。 -
修复 Rules 模式下国内网站无法访问 — 由订阅链接生成的配置规则原先只有
MATCH,Proxy,导致所有流量(包括百度等国内网站)都走代理。现在在MATCH,Proxy之前添加了GEOIP,private,DIRECT和GEOIP,CN,DIRECT规则,本地及国内 IP 直连。 -
修复菜单栏网速显示空白 — 状态栏的上传/下载速度文字在首次启动时不可见。原因是初始绘制调用在 Auto Layout 确定视图尺寸(高度为 0)之前就执行了,后续流量更新如果速度值未变化则被静默丢弃。通过覆写
layout()在布局完成后触发重绘修复。 -
修复 macOS 15 Sequoia 设置窗口标签大灰块 — macOS 15 对
NSTabViewController的.toolbar样式布局做了大幅调整,导致设置标签区域显示为大灰块。macOS 15+ 现在改用.segmentedControlOnTop样式呈现简洁的分段控件,macOS 11–14 仍使用带 SF Symbol 图标的.toolbar样式。