From 093f8220434a47b208c7b534eba5085975a74b55 Mon Sep 17 00:00:00 2001 From: Josef Schlehofer Date: Tue, 14 Dec 2021 17:10:16 +0100 Subject: [PATCH] luci-app-softethervpn: update provided links for SoftEtherVPN clients (#8435) I updated the link for downloading Windows client to download the latest currently available version instead of using beta version, which is not good to use in production. Also, the macOS link led to the OpenVPN server, which was wrong. It should be a client. It was updated to the latest version as well. --- package/lean/luci-app-softethervpn/Makefile | 2 +- .../luci-app-softethervpn/luasrc/model/cbi/softethervpn.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package/lean/luci-app-softethervpn/Makefile b/package/lean/luci-app-softethervpn/Makefile index 5636c5c1c..594bbee84 100644 --- a/package/lean/luci-app-softethervpn/Makefile +++ b/package/lean/luci-app-softethervpn/Makefile @@ -9,7 +9,7 @@ LUCI_TITLE:=LuCI support for SoftEtherVPN LUCI_DEPENDS:=+zlib +libpthread +librt +libreadline +libncurses +libiconv-full +kmod-tun +libopenssl +softethervpn5-bridge +softethervpn5-client +softethervpn5-server LUCI_PKGARCH:=all PKG_VERSION:=1.0 -PKG_RELEASE:=4 +PKG_RELEASE:=5 include $(TOPDIR)/feeds/luci/luci.mk diff --git a/package/lean/luci-app-softethervpn/luasrc/model/cbi/softethervpn.lua b/package/lean/luci-app-softethervpn/luasrc/model/cbi/softethervpn.lua index 1a25ebe92..d8e6da1dd 100644 --- a/package/lean/luci-app-softethervpn/luasrc/model/cbi/softethervpn.lua +++ b/package/lean/luci-app-softethervpn/luasrc/model/cbi/softethervpn.lua @@ -13,6 +13,6 @@ s.anonymous = true o = s:option(Flag, "enable", translate("Enabled")) o.rmempty = false -o = s:option(DummyValue, "moreinfo", translate("控制台下载:
Windows-x86_x64-intel.exe

macos-x86-32bit.pkg
")) +o = s:option(DummyValue, "moreinfo", translate("控制台下载:
Windows-x86_x64-intel.exe

macos-x86-32bit.pkg
")) return m