Skip to content

Commit 610b1fb

Browse files
author
Milan Pssler
committed
release v0.1.2
1 parent 674909a commit 610b1fb

File tree

2 files changed

+18
-5
lines changed

2 files changed

+18
-5
lines changed

README.md

+17-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The HopGlass Server collects data from Freifunk networks and processes it to be
99

1010
**i.e. Debian Jessie or newer, Ubuntu 15.04 or newer**
1111

12-
1. Run `# wget https://raw.githubusercontent.com/hopglass/hopglass-server/v0.1.1/scripts/bootstrap.sh; bash bootstrap.sh; rm bootstrap.sh`
12+
1. Run `# wget https://raw.githubusercontent.com/hopglass/hopglass-server/v0.1.2/scripts/bootstrap.sh; bash bootstrap.sh; rm bootstrap.sh`
1313
2. Review and edit the default configuration located at `/etc/hopglass-server/default/config.json`.
1414
3. Start the HopGlass Server: `# systemctl start hopglass-server@default`
1515
4. (Optional) Automatically start the HopGlass Server at boot: `# systemctl enable hopglass-server@default`
@@ -50,16 +50,29 @@ Possible webserver queries
5050

5151
##Development timeline
5252

53-
**oldmaster (maintenance)**
53+
**oldmaster (outdated)**
5454

55-
**v0.1.1 (current)**
55+
**v0.1.0 (outdated)**
5656

5757
- fully modular conversion system
5858
- many bugfixes
5959
- meshviewer provider
6060
- ffapi provider
6161
- label-based traffic metrics
6262

63+
**v0.1.1 (outdated)**
64+
65+
- bugfix release
66+
67+
**v0.1.2 (current)**
68+
69+
- many bugfixes (many contributors)
70+
- additional input checks (Joshua1337, eberhab)
71+
- provider/hopglass: resolve gateways to nodeids (mar-v-in)
72+
- provider/hopglass: nexthop key (eberhab)
73+
- new provider: dns zone output (eberhab)
74+
- probably more I forgot
75+
6376
**v0.2 (next)**
6477

6578
- provide a graph-generation implementation for all providers
@@ -86,7 +99,7 @@ i.e. Debian Wheezy or older, Ubuntu 14.10 or older
8699

87100
***Warning: untested, unsupported, not recommended***
88101

89-
1. Run `# wget https://raw.githubusercontent.com/hopglass/hopglass-server/v0.1.1/scripts/bootstrap.sh; bash bootstrap.sh; rm bootstrap.sh`
102+
1. Run `# wget https://raw.githubusercontent.com/hopglass/hopglass-server/v0.1.2/scripts/bootstrap.sh; bash bootstrap.sh; rm bootstrap.sh`
90103
2. Create a start script in `/usr/local/bin/` similar to this:
91104
`su - hopglass --shell /bin/bash -c "cd server; node hopglass-server.js --config /etc/hopglass-server/$1/config.json"`
92105
3. Create an init-script in `/etc/init.d/`.

scripts/bootstrap.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ function prereq {
107107
function install {
108108
#Clone and install NodeJS libs
109109
su - hopglass --shell /bin/bash <<-EOF
110-
git clone https://github.com/hopglass/hopglass-server -b v0.1.1 server
110+
git clone https://github.com/hopglass/hopglass-server -b v0.1.2 server
111111
cd server
112112
npm install
113113
exit

0 commit comments

Comments
 (0)