From 1991f0843b2d261ef5a7665a79295ee2cf12a4da Mon Sep 17 00:00:00 2001 From: Skh-web6982 Date: Thu, 28 May 2026 14:22:15 +0330 Subject: [PATCH 1/3] Add geoip download --- gen_assets.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gen_assets.sh b/gen_assets.sh index 0a25283..ad4cc02 100644 --- a/gen_assets.sh +++ b/gen_assets.sh @@ -26,6 +26,9 @@ download_dat() { echo "Downloading geosite.dat..." curl -sL https://github.com/Loyalsoldier/v2ray-rules-dat/releases/latest/download/geosite.dat -o "$DATADIR/geosite.dat" + +echo "Downloading geoip-only-cn-private.dat..." + curl -sL https://raw.githubusercontent.com/Loyalsoldier/geoip/release/geoip-only-cn-private.dat -o "$DATADIR/geoip-only-cn-private.dat" } # Main execution logic From 19673fba14eb165055e2e6bc9cd19842960f7941 Mon Sep 17 00:00:00 2001 From: Skh-web6982 Date: Thu, 28 May 2026 14:23:38 +0330 Subject: [PATCH 2/3] bump lib version --- libv2ray_main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libv2ray_main.go b/libv2ray_main.go index fe168a2..a3fe9fa 100644 --- a/libv2ray_main.go +++ b/libv2ray_main.go @@ -172,7 +172,7 @@ func MeasureOutboundDelay(ConfigureFileContent string, url string) (int64, error // CheckVersionX returns the library and v2fly versions func CheckVersionX() string { - var version = 31 + var version = 35 return fmt.Sprintf("Lib v%d, V2fly-core v%s", version, core.Version()) } From 9e89da680bb5bc161d4dc9280261d00a3bef52c3 Mon Sep 17 00:00:00 2001 From: Skh-web6982 Date: Thu, 28 May 2026 14:29:57 +0330 Subject: [PATCH 3/3] Update libv2ray_main.go --- libv2ray_main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libv2ray_main.go b/libv2ray_main.go index a3fe9fa..906850a 100644 --- a/libv2ray_main.go +++ b/libv2ray_main.go @@ -172,7 +172,7 @@ func MeasureOutboundDelay(ConfigureFileContent string, url string) (int64, error // CheckVersionX returns the library and v2fly versions func CheckVersionX() string { - var version = 35 + var version = 32 return fmt.Sprintf("Lib v%d, V2fly-core v%s", version, core.Version()) }