diff --git a/Makefile b/Makefile index 68b06a06..b0adb726 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ workingdir := smarthome sources := $(wildcard *.go) # Do not edit manually, use the `version` target to change the # version programmatically in all places -version := 0.2.6 +version := 0.2.7 build = CGO_ENABLED=0 GOOS=$(1) GOARCH=$(2) go build -ldflags "-s -w" -v -o $(appname) $(4) # TODO: eliminate usage of workingdir diff --git a/README.md b/README.md index 726d44aa..06de535f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Smarthome -**Version**: `0.2.6` +**Version**: `0.2.7` A completely self-built Smarthome-system written in Go. @@ -29,5 +29,5 @@ A guide for getting started can be found [here](./docs/Quickstart.md). ## Showcase A comprehensive list of screenshots can be found [here](https://github.com/smarthome-go/docs/blob/main/server/screenshots/README.md) -*Screenshot of the Dashboard in version 0.2.6* +*Screenshot of the Dashboard in version 0.2.7* ![](https://raw.githubusercontent.com/smarthome-go/docs/main/server/screenshots/dashboard.png) diff --git a/docker-compose.yml b/docker-compose.yml index fe52bf00..d5cc377a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: '3.7' services: smarthome: - image: mikmuellerdev/smarthome:0.2.6 + image: mikmuellerdev/smarthome:0.2.7 container_name: smarthome hostname: smarthome depends_on: diff --git a/docker/container/Dockerfile b/docker/container/Dockerfile index b17d2343..18e19fa7 100644 --- a/docker/container/Dockerfile +++ b/docker/container/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:3 LABEL author="MikMuellerDev" -LABEL version="0.2.6" +LABEL version="0.2.7" COPY ./cache /app diff --git a/docker/container/motd b/docker/container/motd index f81dd20b..6dcf3a62 100644 --- a/docker/container/motd +++ b/docker/container/motd @@ -1,6 +1,6 @@ ######## Smarthome: A completely self-built Smarthome-system written in Go ### ### Issues : https://github.com/smarthome-go/smarthome/issues - ### ### Version : 0.2.6 + ### ### Version : 0.2.7 ### ### ### ### |# #########@ | diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 491dad3f..aa92711e 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,12 +1,6 @@ -## Changelog for v0.2.6 +## Changelog for v0.2.7 ### Bugfixes -#### Web-GUI -- Made the *no quick-actions* text spacing fit to the other dashboard styles -- Added custom behaviour to the automations page when automations are disabled -- Added custom behaviour to the schedules page when schedules are disabled -- Fixed a bug on the profile page which affected the schedules & automations toggle - #### Server & Backend -- When a user's schedules & automations are disabled, schedules and automations will no longer execute -- Any potentially running schedule or automation will be discarded as soon as it would run +- Fixed a bug which affected the scheduler +- Even if a schedule was executed, it was not removed from the database, thus creating a misleading display of the system's crrent state diff --git a/main.go b/main.go index 8f211661..b16f5294 100644 --- a/main.go +++ b/main.go @@ -35,7 +35,7 @@ var port uint16 = 8082 func main() { // Do not change the version manually, use the `make version` command instead - utils.Version = "0.2.6" + utils.Version = "0.2.7" startTime := time.Now() diff --git a/web/package-lock.json b/web/package-lock.json index 7c2c5f52..0b642525 100644 --- a/web/package-lock.json +++ b/web/package-lock.json @@ -1,12 +1,12 @@ { "name": "smarthome-web", - "version": "0.2.6", + "version": "0.2.7", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "smarthome-web", - "version": "0.2.6", + "version": "0.2.7", "license": "GPL-2.0-only", "dependencies": { "@codemirror/basic-setup": "^0.20.0", diff --git a/web/package.json b/web/package.json index cba3bfe0..7ab9fccb 100644 --- a/web/package.json +++ b/web/package.json @@ -1,6 +1,6 @@ { "name": "smarthome-web", - "version": "0.2.6", + "version": "0.2.7", "description": "Web interface for Smarthome", "author": "MikMuellerDev", "contributors": [