Skip to content

Commit 37d2b27

Browse files
Bump to version 0.9.1
1 parent 93097c3 commit 37d2b27

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ Installing NagiosTV
4747
-------------
4848
- Download the latest NagiosTV tar.gz release from https://github.com/chriscareycode/nagiostv-react/releases or you can just copy and paste the command below to get it:
4949
```console
50-
$ wget https://github.com/chriscareycode/nagiostv-react/releases/download/v0.9.0/nagiostv-0.9.0.tar.gz
50+
$ wget https://github.com/chriscareycode/nagiostv-react/releases/download/v0.9.1/nagiostv-0.9.1.tar.gz
5151
```
5252
- Extract the NagiosTV release using tar. This will create a nagiostv/ folder.
5353
```console
54-
$ tar xvfz nagiostv-0.9.0.tar.gz
54+
$ tar xvfz nagiostv-0.9.1.tar.gz
5555
```
5656
- We're going to host the NagiosTV folder from the built-in Nagios web ui. Copy/Move the nagiostv/ folder into your Nagios web ui folder. For Nagios Core 4 the Nagios web ui folder might be at `/usr/local/nagios/share/` or `/usr/nagios/share/`. Nagios XI might be at `/var/www/html/` or `/usr/local/nagiosxi/html/`.
5757

@@ -105,8 +105,8 @@ Then pretty much the same process as above. Download and overwrite the nagiostv
105105
Remember your web ui destination folder `/usr/local/nagios/share/nagiostv/` may vary depending on your Nagios install.
106106
You can do it on the box with:
107107
```console
108-
$ wget https://github.com/chriscareycode/nagiostv-react/releases/download/v0.9.0/nagiostv-0.9.0.tar.gz
109-
$ tar xvfz nagiostv-0.9.0.tar.gz
108+
$ wget https://github.com/chriscareycode/nagiostv-react/releases/download/v0.9.1/nagiostv-0.9.1.tar.gz
109+
$ tar xvfz nagiostv-0.9.1.tar.gz
110110
$ sudo cp -r nagiostv/* /usr/local/nagios/share/nagiostv/
111111
```
112112

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nagiostv",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"type": "module",
55
"private": true,
66
"homepage": "./",

src/atoms/settingsState.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ const useFakeSampleData = urlParams.get('fakedata') === 'true' || urlParams.get(
2626

2727
const bigStateInitial: BigState = {
2828

29-
currentVersion: 78, // This gets incremented with each new release (manually)
30-
currentVersionString: '0.9.0', // This gets incremented with each new release (manually)
29+
currentVersion: 79, // This gets incremented with each new release (manually)
30+
currentVersionString: '0.9.1', // This gets incremented with each new release (manually)
3131

3232
latestVersion: 0,
3333
latestVersionString: '',

0 commit comments

Comments
 (0)