Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Z-Bolt/OctoScreen.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffB42 <10328858+JeffB42@users.noreply.github.com>2021-07-19 02:41:05 +0300
committerJeffB42 <10328858+JeffB42@users.noreply.github.com>2021-07-19 02:41:05 +0300
commited41e104e40933d05ce00a05754f01e59064014b (patch)
treeb42e6ed388462bef69e3e6090e8f06cd37b76e61
parent2ba024b57ba27e71ea2998b4157daa5961fc7afb (diff)
bumped version to 2.7.4
-rwxr-xr-xMakefile2
-rwxr-xr-xREADME.md8
-rwxr-xr-xutils/environment.go2
3 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 58c48ea..2b607c5 100755
--- a/Makefile
+++ b/Makefile
@@ -32,7 +32,7 @@ JESSIE_GO_TAGS := gtk_3_14
# Build information
#GIT_COMMIT = $(shell git rev-parse HEAD | cut -c1-7)
-VERSION := 2.7.3
+VERSION := 2.7.4
BUILD_DATE ?= $(shell date --utc +%Y%m%d-%H:%M:%S)
#BRANCH = $(shell git rev-parse --abbrev-ref HEAD)
diff --git a/README.md b/README.md
index f7fa9ec..5ddf45d 100755
--- a/README.md
+++ b/README.md
@@ -83,15 +83,15 @@ There are two ways to install OctoScreen: the recommended and supported way is t
For example, to install on a new RaspberryPi with OctoPi:
```sh
-wget https://github.com/Z-Bolt/OctoScreen/releases/download/v2.7.3/octoscreen_2.7.3_armhf.deb
-sudo dpkg -i octoscreen_2.7.3_armhf.deb
+wget https://github.com/Z-Bolt/OctoScreen/releases/download/v2.7.4/octoscreen_2.7.4_armhf.deb
+sudo dpkg -i octoscreen_2.7.4_armhf.deb
```
Or to update an existing version of OctoScreen:
```sh
-wget https://github.com/Z-Bolt/OctoScreen/releases/download/v2.7.3/octoscreen_2.7.3_armhf.deb
+wget https://github.com/Z-Bolt/OctoScreen/releases/download/v2.7.4/octoscreen_2.7.4_armhf.deb
sudo dpkg -r octoscreen
-sudo dpkg -i octoscreen_2.7.3_armhf.deb
+sudo dpkg -i octoscreen_2.7.4_armhf.deb
sudo reboot now
```
diff --git a/utils/environment.go b/utils/environment.go
index 476dcfd..b35d9a9 100755
--- a/utils/environment.go
+++ b/utils/environment.go
@@ -11,7 +11,7 @@ import (
// OctoScreenVersion is set during compilation.
-var OctoScreenVersion = "2.7.3"
+var OctoScreenVersion = "2.7.4"
const MISSING_ENV_TOKEN = ">>MISSING<<"
const INVALID_ENV_TOKEN = "!!!INVALID!!!"