Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions gen_assets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion libv2ray_main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 = 32
return fmt.Sprintf("Lib v%d, V2fly-core v%s", version, core.Version())
}

Expand Down
Loading