...
 
Commits (3)
    https://gitcode.net/mirror/openwrt/routing/-/commit/b71e865ccaa764f46e358fc659812290e8612ee3 opennds: Release v10.1.1 2023-07-19T21:35:29+02:00 Rob White rob@blue-wave.net Maintainer: Rob White rob@blue-wave.net Compile tested: arm_cortex-a7_neon-vfpv4, mipsel_24kc, x86-64 Run tested: arm_cortex-a7_neon-vfpv4, mipsel_24kc, x86-64; on snapshot, 23.05, 22.03 opennds (10.1.1) * This version contains some minor bug fixes and documentation updates * Fix - send only contents of buffer, not entire buffer when serving page511 [bluewavenet] * Fix - Set fas_remotefqdn to gw_fqdn when overriding FAS settings [bluewavenet] * Fix - use absolute path for css and images in ThemeSpec [bluewavenet] * Fix - revert to old option names without underscores [bluewavenet] * Fix - FAS URL when fas_remotefqdn is not set [bluewavenet] Signed-off-by: <span data-trailer="Signed-off-by:"><a href="mailto:rob@blue-wave.net" title="rob@blue-wave.net"></a><a href="javascript:void(0)" class="avatar s16 avatar-inline identicon bg2" style="text-decoration: none">N</a><a href="mailto:rob@blue-wave.net" title="rob@blue-wave.net">Rob White</a> &lt;<a href="mailto:rob@blue-wave.net" title="rob@blue-wave.net">rob@blue-wave.net</a>&gt;</span> (cherry picked from commit <a href="/mirror/openwrt/routing/-/commit/26f5f0f812c73a3d26f9643fbd3da7f56f5e9a8a" data-original="26f5f0f812c73a3d26f9643fbd3da7f56f5e9a8a" data-link="false" data-link-reference="false" data-project="28801" data-commit="26f5f0f812c73a3d26f9643fbd3da7f56f5e9a8a" data-reference-type="commit" data-container="body" data-placement="top" title="opennds: Release v10.1.1" class="gfm gfm-commit has-tooltip">26f5f0f8</a>) https://gitcode.net/mirror/openwrt/routing/-/commit/55187d44868af210c7c5262f9752c69bd8b96f6e nodogsplash: update to 5.0.1 2023-07-27T11:57:05+02:00 Moritz Warning moritzwarning@web.de Signed-off-by: <span data-trailer="Signed-off-by:"><a href="mailto:moritzwarning@web.de" title="moritzwarning@web.de"></a><a href="javascript:void(0)" class="avatar s16 avatar-inline identicon bg1" style="text-decoration: none">N</a><a href="mailto:moritzwarning@web.de" title="moritzwarning@web.de">Moritz Warning</a> &lt;<a href="mailto:moritzwarning@web.de" title="moritzwarning@web.de">moritzwarning@web.de</a>&gt;</span> (cherry picked from commit <a href="/mirror/openwrt/routing/-/commit/91e07907fafa7ca442c3710799352782f4f0201a" data-original="91e07907fafa7ca442c3710799352782f4f0201a" data-link="false" data-link-reference="false" data-project="28801" data-commit="91e07907fafa7ca442c3710799352782f4f0201a" data-reference-type="commit" data-container="body" data-placement="top" title="nodogsplash: update to 5.0.1" class="gfm gfm-commit has-tooltip">91e07907</a>) https://gitcode.net/mirror/openwrt/routing/-/commit/527fe47ceba2336c810a9f9fae033fb0eaa50954 nodogsplash: remove opennds from conflicts 2023-07-29T19:09:38+02:00 Moritz Warning moritzwarning@web.de OpenNDS lists nodogsplash a conflict as well. This causes a circular reference that is not allowed. Signed-off-by: <span data-trailer="Signed-off-by:"><a href="mailto:moritzwarning@web.de" title="moritzwarning@web.de"></a><a href="javascript:void(0)" class="avatar s16 avatar-inline identicon bg5" style="text-decoration: none">N</a><a href="mailto:moritzwarning@web.de" title="moritzwarning@web.de">Moritz Warning</a> &lt;<a href="mailto:moritzwarning@web.de" title="moritzwarning@web.de">moritzwarning@web.de</a>&gt;</span>
......@@ -6,12 +6,12 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=nodogsplash
PKG_VERSION:=5.0.0
PKG_RELEASE:=1
PKG_VERSION:=5.0.1
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/nodogsplash/nodogsplash/tar.gz/v$(PKG_VERSION)?
PKG_HASH:=a7665f4a42997746a31e9217f2f54e360aa7fc4bc72bd89faa08f1ccf7875b5e
PKG_HASH:=a5ffa27a69389c6a538418022573ecb56a42bf91f576a97208eaafe89cb0a152
PKG_MAINTAINER:=Moritz Warning <moritzwarning@web.de>
PKG_LICENSE:=GPL-2.0-or-later
......@@ -26,26 +26,23 @@ define Package/nodogsplash
SUBMENU:=Captive Portals
SECTION:=net
CATEGORY:=Network
DEPENDS:=+libpthread +iptables-mod-ipopt +libmicrohttpd-no-ssl
DEPENDS:=+libpthread +libmicrohttpd-no-ssl +iptables-nft \
+iptables-mod-nat-extra +iptables-mod-ipopt \
+iptables-mod-conntrack-extra
TITLE:=Open public network gateway daemon
URL:=https://github.com/nodogsplash/nodogsplash
CONFLICTS:=nodogsplash2
endef
define Package/nodogsplash/description
Nodogsplash is a Captive Portal that offers a simple way to
provide restricted access to the Internet by showing a splash
page to the user before Internet access is granted.
It also incorporates an API that allows the creation of
sophisticated authentication applications.
endef
define Package/nodogsplash/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/nodogsplash $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ndsctl $(1)/usr/bin/
$(INSTALL_DIR) $(1)/etc/nodogsplash/htdocs/images
$(INSTALL_DIR) $(1)/etc/config
$(INSTALL_DIR) $(1)/etc/init.d
......
......@@ -6,12 +6,12 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=opennds
PKG_VERSION:=10.1.0
PKG_VERSION:=10.1.1
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/opennds/opennds/tar.gz/v$(PKG_VERSION)?
PKG_HASH:=38527a437a1ae2190694f6f77f3b521b94cddd8151ce45c336b349e8fd1eb641
PKG_HASH:=60ce15f5aa96f7e7f3b239a0029f74c0ba900d3db72b209ba6e6d36a5bbef138
PKG_BUILD_DIR:=$(BUILD_DIR)/openNDS-$(PKG_VERSION)
PKG_MAINTAINER:=Rob White <rob@blue-wave.net>
......