Skip to content

Commit 1c74a0a

Browse files
committed
Update version to 0.0.39
1 parent 4773f4d commit 1c74a0a

File tree

8 files changed

+23
-10
lines changed

8 files changed

+23
-10
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ workingdir := smarthome
44
sources := $(wildcard *.go)
55
# Do not edit manually, use the `version` target to change the
66
# version programmatically in all places
7-
version := 0.0.38
7+
version := 0.0.39
88

99
build = CGO_ENABLED=0 GOOS=$(1) GOARCH=$(2) go build -ldflags "-s -w" -v -o $(appname) $(4)
1010
# TODO: eliminate usage of workingdir

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Smarthome
2-
**Version**: `0.0.38`
2+
**Version**: `0.0.39`
33

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

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3.7'
22
services:
33
smarthome:
4-
image: mikmuellerdev/smarthome:0.0.38
4+
image: mikmuellerdev/smarthome:0.0.39
55
container_name: smarthome
66
hostname: smarthome
77
depends_on:

docker/container/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM alpine:3
22

33
LABEL author="MikMuellerDev"
4-
LABEL version="0.0.38"
4+
LABEL version="0.0.39"
55

66
COPY ./cache /app
77

docker/container/motd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
######## Smarthome: A completely self-built Smarthome-system written in Go
22
### ### Issues : https://github.com/smarthome-go/smarthome/issues
3-
### ### Version : 0.0.38
3+
### ### Version : 0.0.39
44
### ###
55
### ###
66
|# #########@ |

docs/CHANGELOG.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
1-
## Changelog for v0.0.38
1+
## Changelog for v0.0.39
22

33
### Homescript
4-
- Upgraded Homescript to `v0.9.1-beta` which prevents a server panic
5-
- Fixed messy API endpoint Homescript implementation
4+
- Removed legacy *RadiGo* features due to the recent addition of network functions
5+
- Added a first working version of a Homescript management web GUI
6+
7+
### Rooms
8+
- Improved camera-feed scaling: added better widescreen support to the `viewCamera` dialog
9+
10+
### Automations
11+
- Fixed 1 bug in automation creation: selected days are now also reset on addition and cancelation
12+
13+
### Backend
14+
- Significantly improved power-request response times when a node is offline
15+
- Increased backend reliabilty through the use of URL builders instead of string formatting
16+
17+
### Development
18+
- Added the `IconPicker.svelte` component: It can be used to allow the selection of any compatible Google-MD icon from a given icon set

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var port = 8082 // Default port on which the server listens, can be overwritten
3232

3333
func main() {
3434
// Do not change manually, use the `make version` command instead
35-
utils.Version = "0.0.38"
35+
utils.Version = "0.0.39"
3636

3737
startTime := time.Now()
3838

web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "smarthome-web",
3-
"version": "0.0.38",
3+
"version": "0.0.39",
44
"description": "Web interface for Smarthome",
55
"author": "MikMuellerDev",
66
"contributors": [

0 commit comments

Comments
 (0)