-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
62b5d08
commit 4dfeb07
Showing
8 changed files
with
23 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Smarthome | ||
**Version**: `0.0.32` | ||
**Version**: `0.0.33` | ||
|
||
A completely self-built Smarthome-system written in Go. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM alpine:3 | ||
|
||
LABEL author="MikMuellerDev" | ||
LABEL version="0.0.32" | ||
LABEL version="0.0.33" | ||
|
||
COPY ./cache /app | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
## Changelog for v0.0.32 | ||
## Changelog for v0.0.33 | ||
|
||
### Rooms Frontend | ||
- (*Bugfix*) Fixed wrong alignment of add room button in rooms GUI | ||
### Backend | ||
- (*Addition*) Added `SMARTHOME_ENV_PRODUCTION` environment variable to the server | ||
- During docker-image build, the variable is set to `true` by default | ||
- Is now included in the `docker-compose.yml` as example | ||
- (*Improvement*) Modified startup log messages to be more precise | ||
- (*Bugfix*) Fixed bad user-color bug: added default user-colors to homescript `AddUser` function | ||
### Homescript | ||
- Added Http methods for making network requests via Homescript | ||
- Introduced the `hmsNetwork` permission which is required in order to make network requests from Homescript | ||
- The `get` method requires an arbitrary URL and returns the response as a string | ||
- An example for the print function is: `print(get('http://localhost:8082'))` | ||
- The `http` method requires a URL, a request-method, and a request-body and returns the response as a string | ||
- An example fot the http function is: `print(http('http://localhost:8082', 'POST', '{"key": "value"}'))` | ||
|
||
### Development | ||
- (*Improvement*) Restructured development docker directory | ||
- (*Bugfix*) Prevented interference of `foo-bar-docker-compose.yml` files in docker directory | ||
### Tweaks | ||
- Tweaked label of *create-automation* button in automation GUI | ||
- Altered a debug message in the configuration backend | ||
- Indroduced dynamic orientations when opening the web-ui as a PWA | ||
|
||
### Docker-Container | ||
- Created a symlink from `/usr/bin/homescript` to `/usr/bin/shome` | ||
- Allows the user to use the `shome` command as an alias for the `homescript` command |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters