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-04-04 20:48:34 +0300
committerJeffB42 <10328858+JeffB42@users.noreply.github.com>2021-04-04 20:48:34 +0300
commit659a640de3ff2231bd7e6d79d68b939e78ed0625 (patch)
tree71401b5cd2f35c28db9b17fb8a70d5e31d25a3c1
parent37740d9c82ce5a78ebb7c6d487d928a8f55e6c5b (diff)
bumped the version to 2.7.2
-rwxr-xr-xMakefile2
-rwxr-xr-xREADME.md9
-rwxr-xr-xui/CommonPanel.go2
3 files changed, 7 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 8b52571..09e0b5c 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.1
+VERSION := 2.7.2
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 a42476d..133716f 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.1/octoscreen_2.7.1_armhf.deb
-sudo dpkg -i octoscreen_2.7.1_armhf.deb
+wget https://github.com/Z-Bolt/OctoScreen/releases/download/v2.7.2/octoscreen_2.7.2_armhf.deb
+sudo dpkg -i octoscreen_2.7.2_armhf.deb
```
Or to update an existing version of OctoScreen:
```sh
-wget https://github.com/Z-Bolt/OctoScreen/releases/download/v2.7.1/octoscreen_2.7.1_armhf.deb
+wget https://github.com/Z-Bolt/OctoScreen/releases/download/v2.7.2/octoscreen_2.7.2_armhf.deb
sudo dpkg -r octoscreen
-sudo dpkg -i octoscreen_2.7.1_armhf.deb
+sudo dpkg -i octoscreen_2.7.2_armhf.deb
sudo reboot now
```
@@ -153,6 +153,7 @@ The basic configuration is handled via environment variables, if you are using t
- `OCTOSCREEN_RESOLUTION` - Resolution of the application, and should be configured to the resolution of your screen. Optimal resolution for OctoScreen is no less than 800x480, so if the physical resolution of your screen is 480x320, it's recommended to set the software resolution 800x533. If you are using Raspbian you can do it by changing [`hdmi_cvt`](https://www.raspberrypi.org/documentation/configuration/config-txt/video.md) param in `/boot/config.txt` file. Please see [Setting Up OctoScreen and Your Display](https://github.com/Z-Bolt/OctoScreen/wiki/Setting-Up-OctoScreen-and-Your-Display) and [Installing OctoScreen with a 3.5" 480x320 TFT screen](https://github.com/Z-Bolt/OctoScreen/wiki/Installing-OctoScreen-with-a-3.5%22-480x320-TFT-screen) for more information.
+- `DISPLAY_CURSOR` - To display the cursor, add `DISPLAY_CURSOR=true` to your config file. In order to display the cursor, you will also need to edit `/lib/systemd/system/octoscreen.service` and remove `-nocursor`
diff --git a/ui/CommonPanel.go b/ui/CommonPanel.go
index 95815c0..c7b75c2 100755
--- a/ui/CommonPanel.go
+++ b/ui/CommonPanel.go
@@ -16,7 +16,7 @@ import (
)
// OctoScreenVersion - set at compilation time.
-var OctoScreenVersion = "2.7.1"
+var OctoScreenVersion = "2.7.2"
type CommonPanel struct {
UI *UI