Skip to content

Commit

Permalink
Update version to 0.0.39
Browse files Browse the repository at this point in the history
  • Loading branch information
MikMuellerDev committed Jun 3, 2022
1 parent 4773f4d commit 1c74a0a
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Smarthome
**Version**: `0.0.38`
**Version**: `0.0.39`

A completely self-built Smarthome-system written in Go.

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion docker/container/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM alpine:3

LABEL author="MikMuellerDev"
LABEL version="0.0.38"
LABEL version="0.0.39"

COPY ./cache /app

Expand Down
2 changes: 1 addition & 1 deletion docker/container/motd
Original file line number Diff line number Diff line change
@@ -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
### ###
### ###
|# #########@ |
Expand Down
19 changes: 16 additions & 3 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "smarthome-web",
"version": "0.0.38",
"version": "0.0.39",
"description": "Web interface for Smarthome",
"author": "MikMuellerDev",
"contributors": [
Expand Down

0 comments on commit 1c74a0a

Please sign in to comment.