Skip to content

Commit

Permalink
Bump version for 0.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscareycode committed Dec 21, 2021
1 parent dbb5034 commit e4fb9b1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ Installing NagiosTV
-------------
- 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:
```console
$ wget https://github.com/chriscareycode/nagiostv-react/releases/download/v0.8.2/nagiostv-0.8.2.tar.gz
$ wget https://github.com/chriscareycode/nagiostv-react/releases/download/v0.8.3/nagiostv-0.8.3.tar.gz
```
- Extract the NagiosTV release using tar. This will create a nagiostv/ folder.
```console
$ tar xvfz nagiostv-0.8.2.tar.gz
$ tar xvfz nagiostv-0.8.3.tar.gz
```
- 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`.

Expand Down Expand Up @@ -105,8 +105,8 @@ Then pretty much the same process as above. Download and overwrite the nagiostv
Remember your web ui destination folder `/usr/local/nagios/share/nagiostv/` may vary depending on your Nagios install.
You can do it on the box with:
```console
$ wget https://github.com/chriscareycode/nagiostv-react/releases/download/v0.8.2/nagiostv-0.8.2.tar.gz
$ tar xvfz nagiostv-0.8.2.tar.gz
$ wget https://github.com/chriscareycode/nagiostv-react/releases/download/v0.8.3/nagiostv-0.8.3.tar.gz
$ tar xvfz nagiostv-0.8.3.tar.gz
$ sudo cp -r nagiostv/* /usr/local/nagios/share/nagiostv/
```

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nagiostv",
"version": "0.8.2",
"version": "0.8.3",
"private": true,
"homepage": "./",
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions src/atoms/settingsState.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ const useFakeSampleData = urlParams.get('fakedata') === 'true' || isDemoMode;

const bigStateInitial = {

currentVersion: 72, // This gets incremented with each new release (manually)
currentVersionString: '0.8.2', // This gets incremented with each new release (manually)
currentVersion: 73, // This gets incremented with each new release (manually)
currentVersionString: '0.8.3', // This gets incremented with each new release (manually)
latestVersion: 0,
latestVersionString: '',
lastVersionCheckTime: 0,
Expand Down

0 comments on commit e4fb9b1

Please sign in to comment.