Compare commits

...

1 Commits

Author SHA1 Message Date
xream
a96cc19790 feat: 支持 anytls 协议 2025-02-19 16:59:24 +08:00
3 changed files with 3 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "sub-store", "name": "sub-store",
"version": "2.16.47", "version": "2.16.48",
"description": "Advanced Subscription Manager for QX, Loon, Surge, Stash and Shadowrocket.", "description": "Advanced Subscription Manager for QX, Loon, Surge, Stash and Shadowrocket.",
"main": "src/main.js", "main": "src/main.js",
"scripts": { "scripts": {

View File

@@ -1010,6 +1010,7 @@ function Clash_All() {
const proxy = JSON.parse(line); const proxy = JSON.parse(line);
if ( if (
![ ![
'anytls',
'mieru', 'mieru',
'juicity', 'juicity',
'ss', 'ss',

View File

@@ -8,7 +8,7 @@ export default function Shadowrocket_Producer() {
if (opts['include-unsupported-proxy']) return true; if (opts['include-unsupported-proxy']) return true;
if (proxy.type === 'snell' && String(proxy.version) === '4') { if (proxy.type === 'snell' && String(proxy.version) === '4') {
return false; return false;
} else if (['mieru'].includes(proxy.type)) { } else if (['mieru', 'anytls'].includes(proxy.type)) {
return false; return false;
} }
return true; return true;