Add ProxyProvider

(cherry picked from commit b3a5f74df8)
This commit is contained in:
chen08209
2024-05-03 21:28:22 +08:00
parent 442c32b6eb
commit 98b1496eff
2 changed files with 2 additions and 3 deletions

View File

@@ -82,7 +82,7 @@ func updateConfig(s *C.char) bool {
//export getProxies
func getProxies() *C.char {
data, err := json.Marshal(tunnel.Proxies())
data, err := json.Marshal(tunnel.ProxiesWithProviders())
if err != nil {
return C.CString("")
}
@@ -235,7 +235,6 @@ func getProviders() *C.char {
return C.CString(string(data))
}
//export getProvider
func getProvider(name *C.char) *C.char {
providerName := C.GoString(name)

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.7.2
version: 0.7.3
environment:
sdk: '>=3.1.0 <4.0.0'