Skip to content

Commit 4820913

Browse files
authored
Merge pull request nodogsplash#352 from nodogsplash/3.3.1-beta
Bump to version 3.3.1
2 parents 2b4b90b + 116417f commit 4820913

File tree

7 files changed

+44
-14
lines changed

7 files changed

+44
-14
lines changed

ChangeLog

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
nodogsplash (3.3.1)
2+
3+
* Include preinstalled PreAuth Login script in package [bluewavenet]
4+
* Documentation updates PreAuth [bluewavenet]
5+
* Generate Error 403 Forbidden, if Gateway Port is accessed directly when FAS is enabled and client is not authenticated [bluewavenet]
6+
* Improve splash.css, tidy up splash/status.html, tidy up Preauth demo script [bluewavenet]
7+
* Remove some redundant code [mwarning]
8+
* ndsctl_thread - ignore interupts when returning from epoll [lynxis]
9+
* auth.c - use correct types to prevent cast and comparement of uint and int [lynxis]
10+
* openwrt/init.d - prevent start of the daemon if configuration generation fails [lynxis]
11+
* Known Issue - on OpenWrt >18.x.x, an issue with libmicrohttpd results in the gnutls suite being installed causing potential out of memory errors on devices <= 64M RAM
12+
13+
-- Rob White <[email protected]> Fri, 7 Apr 2019 19:43:00 +0000
14+
115
nodogsplash (3.3.0)
216

317
* Add PreAuth functionality - support for Dynamic Splash Pages, served by NDS directly [bluewavenet]

debian/changelog

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
nodogsplash (3.3.1-1) stable; urgency=medium
2+
3+
* Include preinstalled PreAuth Login script in package [bluewavenet]
4+
* Documentation updates PreAuth [bluewavenet]
5+
* Generate Error 403 Forbidden, if Gateway Port is accessed directly when FAS is enabled and client is not authenticated [bluewavenet]
6+
* Improve splash.css, tidy up splash/status.html, tidy up Preauth demo script [bluewavenet]
7+
* Remove some redundant code [mwarning]
8+
* ndsctl_thread - ignore interupts when returning from epoll [lynxis]
9+
* auth.c - use correct types to prevent cast and comparement of uint and int [lynxis]
10+
* openwrt/init.d - prevent start of the daemon if configuration generation fails [lynxis]
11+
12+
-- Rob White <[email protected]> Fri, 7 Apr 2019 19:43:00 +0000
13+
114
nodogsplash (3.3.0-1) stable; urgency=medium
215

316
* Add PreAuth functionality - support for Dynamic Splash Pages, served by NDS directly [bluewavenet]

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
# built documents.
6161
#
6262
# The short X.Y version.
63-
version = '3.3.1-beta'
63+
version = '3.3.1'
6464
# The full version, including alpha/beta/rc tags.
65-
release = '3.3.1-beta'
65+
release = '3.3.1'
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# for a list of supported languages.

forward_authentication_service/PreAuth/demo-preauth.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,13 @@ header="
111111

112112
# Define a common footer for every page served
113113
version="$(ndsctl status | grep Version)"
114+
year="$(date | awk -F ' ' '{print $(6)}')"
114115
footer="
115116
<img src=\"/images/splash.jpg\" alt=\"Splash Page: For access to the Internet.\">
116117
<hr>
117118
<copy-right>
118119
Nodogsplash $version.
119-
Copyright &copy; The Nodogsplash Contributors 2004-2019.
120+
Copyright &copy; The Nodogsplash Contributors 2004-$year.
120121
This software is released under the GNU GPL license.
121122
</copy-right>
122123
</div>

notes/release_todos

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@ When ready to do a release, do the following:
44
2. Changelog - list changes
55
3. debian/changelog - list changes
66
4. debian/copyright - update copyright dates as required eg current year
7-
5. docs/source/conf.py - update copyright notice eg current year, version and release numbers
8-
6. "cd docs" then "make man". Copy resulting docs/build/man/nodogsplash.1 to overwrite old debian/doc/nodogsplash.1
9-
7. remove /docs/build directory created in step 6
10-
8. Push to origin
11-
9. Github - Create Pull Request and Merge to master
12-
10. Github proceed to "Draft New Release"
13-
11. Github tag release as eg. v3.3.0 (remembering the leading "v"") (or use git tag -a v3.3.0 -m "nodogsplash release 3.3.0 " and git push --tags.)
14-
12. In your local repository, make a new branch called "stable"
15-
13. Push branch "stable" to origin, overwriting the existing "stable". Branch stable is the source for the readthedocs stable documentation at https://nodogsplashdocs.readthedocs.io/en/stable/
7+
5. docs/source/conf.py openwrt/Makefile - update copyright notice eg current year, version and release numbers as applicable
8+
6. resources/splash.html and resources/status.html - update copyright dates as required eg current year
9+
7. "cd docs" then "make man". Copy resulting docs/build/man/nodogsplash.1 to overwrite old debian/doc/nodogsplash.1
10+
8. remove /docs/build directory created in step 6
11+
9. Push to origin
12+
10. Github - Create Pull Request and Merge to master
13+
11. Github proceed to "Draft New Release"
14+
12. Github tag release as eg. v3.3.0 (remembering the leading "v"") (or use git tag -a v3.3.0 -m "nodogsplash release 3.3.0 " and git push --tags.)
15+
13. In your local repository, make a new branch called "stable"
16+
14. Push branch "stable" to origin, overwriting the existing "stable". Branch stable is the source for the readthedocs stable documentation at https://nodogsplashdocs.readthedocs.io/en/stable/
17+
15. In Master, set version to -beta eg 3.1.1-beta in conf.h, conf.py, openwrt/Makefile

openwrt/nodogsplash/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk
77

88
PKG_NAME:=nodogsplash
99
PKG_FIXUP:=autoreconf
10-
PKG_VERSION:=3.2.1
10+
PKG_VERSION:=3.3.1
1111
PKG_RELEASE:=1
1212

1313
PKG_SOURCE_URL:=https://codeload.github.com/nodogsplash/nodogsplash/tar.gz/v$(PKG_VERSION)?

src/conf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#ifndef _CONF_H_
3030
#define _CONF_H_
3131

32-
#define VERSION "3.3.1-beta"
32+
#define VERSION "3.3.1"
3333

3434
/*@{*/
3535
/** Defines */

0 commit comments

Comments
 (0)