From 1c74a0afa19a448f88fafc8ff224808243ae88d0 Mon Sep 17 00:00:00 2001 From: Mik Mueller <83001409+MikMuellerDev@users.noreply.github.com> Date: Fri, 3 Jun 2022 15:29:46 +0200 Subject: [PATCH] Update version to `0.0.39` --- Makefile | 2 +- README.md | 2 +- docker-compose.yml | 2 +- docker/container/Dockerfile | 2 +- docker/container/motd | 2 +- docs/CHANGELOG.md | 19 ++++++++++++++++--- main.go | 2 +- web/package.json | 2 +- 8 files changed, 23 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 58311f51..c74ae160 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.0.38 +version := 0.0.39 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 a18a66b3..6a92e3bf 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Smarthome -**Version**: `0.0.38` +**Version**: `0.0.39` A completely self-built Smarthome-system written in Go. diff --git a/docker-compose.yml b/docker-compose.yml index 6f15fb49..ed6d9686 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: '3.7' services: smarthome: - image: mikmuellerdev/smarthome:0.0.38 + image: mikmuellerdev/smarthome:0.0.39 container_name: smarthome hostname: smarthome depends_on: diff --git a/docker/container/Dockerfile b/docker/container/Dockerfile index 6a8bb20d..a6901b55 100644 --- a/docker/container/Dockerfile +++ b/docker/container/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:3 LABEL author="MikMuellerDev" -LABEL version="0.0.38" +LABEL version="0.0.39" COPY ./cache /app diff --git a/docker/container/motd b/docker/container/motd index db29518e..dcdc5375 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.0.38 + ### ### Version : 0.0.39 ### ### ### ### |# #########@ | diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 9f63597b..507a1045 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,18 @@ -## Changelog for v0.0.38 +## Changelog for v0.0.39 ### Homescript -- Upgraded Homescript to `v0.9.1-beta` which prevents a server panic -- Fixed messy API endpoint Homescript implementation +- Removed legacy *RadiGo* features due to the recent addition of network functions +- Added a first working version of a Homescript management web GUI + +### Rooms +- Improved camera-feed scaling: added better widescreen support to the `viewCamera` dialog + +### Automations +- Fixed 1 bug in automation creation: selected days are now also reset on addition and cancelation + +### Backend +- Significantly improved power-request response times when a node is offline +- Increased backend reliabilty through the use of URL builders instead of string formatting + +### Development +- Added the `IconPicker.svelte` component: It can be used to allow the selection of any compatible Google-MD icon from a given icon set diff --git a/main.go b/main.go index a50aa37a..e92b9670 100644 --- a/main.go +++ b/main.go @@ -32,7 +32,7 @@ var port = 8082 // Default port on which the server listens, can be overwritten func main() { // Do not change manually, use the `make version` command instead - utils.Version = "0.0.38" + utils.Version = "0.0.39" startTime := time.Now() diff --git a/web/package.json b/web/package.json index f0daffe8..90b7d00d 100644 --- a/web/package.json +++ b/web/package.json @@ -1,6 +1,6 @@ { "name": "smarthome-web", - "version": "0.0.38", + "version": "0.0.39", "description": "Web interface for Smarthome", "author": "MikMuellerDev", "contributors": [