Skip to content

Commit

Permalink
Bump version to 0.2.5, write CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MikMuellerDev committed Sep 7, 2022
1 parent 16c3908 commit c646f76
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 20 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.2.4
version := 0.2.5

build = CGO_ENABLED=0 GOOS=$(1) GOARCH=$(2) go build -ldflags "-s -w" -v -o $(appname) $(4)
# TODO: eliminate usage of workingdir
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Smarthome
**Version**: `0.2.4`
**Version**: `0.2.5`

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

Expand Down Expand Up @@ -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.4*
*Screenshot of the Dashboard in version 0.2.5*
![](https://raw.githubusercontent.com/smarthome-go/docs/main/server/screenshots/dashboard.png)
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.2.4
image: mikmuellerdev/smarthome:0.2.5
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.2.4"
LABEL version="0.2.5"

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.2.4
### ### Version : 0.2.5
### ###
### ###
|# #########@ |
Expand Down
15 changes: 5 additions & 10 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
## Changelog for v0.2.4
## Changelog for v0.2.5

### Bugfixes
#### Web-GUI
- Fixed add-automation button misalignment on the automation page
- Added working sort-by-time to the automations and scheduler preview on the dashboard
- Added a time-until text to the automations on the dashboard
- Implemented missing dashboard GUI handling when an automation or schedule is currently executing
- Implemented missing Homescript argument data / display types in the argument prompt dialog
- Fixed issues regarding the HMS argument prompt
- Add link to the reminder page to the dashboard reminder component
- Fixed dashboard schedule & automations container layout on mobile devices
- Removed redundant dashboard reminder scroll on widescreen

#### Server & Backend
- Modified the Homescript `print` function
- Previously, every argument to the function was separated using a newline
- Now, the arguments are separated using whitespaces and the print function adds one newline at the end of all joined arguments
- Fixed user deletion failure which could occur if a user has an authentication token or reminders set up
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.4"
utils.Version = "0.2.5"

startTime := time.Now()

Expand Down
4 changes: 2 additions & 2 deletions web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.2.4",
"version": "0.2.5",
"description": "Web interface for Smarthome",
"author": "MikMuellerDev",
"contributors": [
Expand Down

0 comments on commit c646f76

Please sign in to comment.