diff options
author | Tianling Shen <cnsztl@immortalwrt.org> | 2021-06-04 20:44:28 +0800 |
---|---|---|
committer | Tianling Shen <cnsztl@immortalwrt.org> | 2021-06-04 20:48:51 +0800 |
commit | 53bbfe4de590ff1dbb88d9b84bd7c507cd442338 (patch) | |
tree | de82c53544e2ae54912d54127a38e8e6ce76e16c /net | |
parent | 3f2113db87efe57ecdaa8c07fdb4cdd2503987d1 (diff) |
xray-core: bump geodata to latest version
Also removed `fullcone` option as this is outdated.
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/xray-core/Makefile | 8 | ||||
-rw-r--r-- | net/xray-core/files/xray.conf | 1 | ||||
-rwxr-xr-x | net/xray-core/files/xray.init | 3 |
3 files changed, 4 insertions, 8 deletions
diff --git a/net/xray-core/Makefile b/net/xray-core/Makefile index 1fac4a312..cf1018ab5 100644 --- a/net/xray-core/Makefile +++ b/net/xray-core/Makefile @@ -79,24 +79,24 @@ define Package/xray-core/conffiles /etc/config/xray endef -GEOIP_VER:=202104010913 +GEOIP_VER:=202106030115 GEOIP_FILE:=geoip.dat.$(GEOIP_VER) define Download/geoip URL:=https://github.com/v2fly/geoip/releases/download/$(GEOIP_VER)/ URL_FILE:=geoip.dat FILE:=$(GEOIP_FILE) - HASH:=f94e464f7f37e6f3c88c2aa5454ab02a4b840bc44c75c5001719a618916906cf + HASH:=acf231d7c6461d088ae479fe0c1cb143b5ee3cf7048a897c5a9b7807ab7005df endef -GEOSITE_VER:=20210401091829 +GEOSITE_VER:=20210531212831 GEOSITE_FILE:=dlc.dat.$(GEOSITE_VER) define Download/geosite URL:=https://github.com/v2fly/domain-list-community/releases/download/$(GEOSITE_VER)/ URL_FILE:=dlc.dat FILE:=$(GEOSITE_FILE) - HASH:=ee9778dc00b703905ca1f400ad13dd462eae52c5aee6465f0a7543b0232c9d08 + HASH:=332bbe53af49582dbf89bda04ee5e60e474f9293fc368ab55b517fdcd4a78ed2 endef define Build/Prepare diff --git a/net/xray-core/files/xray.conf b/net/xray-core/files/xray.conf index 87174bb6b..c967d106a 100644 --- a/net/xray-core/files/xray.conf +++ b/net/xray-core/files/xray.conf @@ -1,7 +1,6 @@ config xray 'enabled' option enabled '0' - option fullcone '1' config xray 'config' option confdir '/etc/xray' diff --git a/net/xray-core/files/xray.init b/net/xray-core/files/xray.init index 683c7353b..e0ebf092c 100755 --- a/net/xray-core/files/xray.init +++ b/net/xray-core/files/xray.init @@ -19,14 +19,12 @@ start_service() { local datadir local dialer local format - local fullcone config_get confdir "config" "confdir" config_get conffiles "config" "conffiles" config_get datadir "config" "datadir" "/usr/share/xray" config_get dialer "config" "dialer" config_get format "config" "format" "json" - config_get fullcone "enabled" "fullcone" "0" procd_open_instance "$CONF" procd_set_param command "$PROG" run @@ -39,7 +37,6 @@ start_service() { } [ -n "$format" ] && procd_append_param command -format "$format" [ -n "$dialer" ] && procd_set_param env XRAY_BROWSER_DIALER="$dialer" - [ "$fullcone" -eq "0" ] && procd_set_param env XRAY_CONE_DISABLED="true" procd_set_param env XRAY_LOCATION_ASSET="$datadir" procd_set_param file $conffiles |