Skip to content

Commit cbc23cf

Browse files
authored
Merge pull request #163 from PiBrewing/development
Merge Version 4.6.1 from development
2 parents ca15078 + e69f46c commit cbc23cf

4 files changed

Lines changed: 721 additions & 374 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## Server Version 4.6.1 (16.04.25):
4+
### Codename: Hop Master
5+
6+
### Fixes:
7+
- Restore Config via raspberryPi did not work. Fix in system controller to check as well for 'application/zip' content type (Issue #162) (4.6.1.a1)
8+
- Fix MuMM json recipe import (4.6.1.a2)
9+
10+
### Features:
11+
- Add whirlpool hop functionality - cool down to target (default is 80C), add notification step to add hops prior to further cool down (4.6.1.a2)
12+
- Add notification step in case of step temperature reduction (e.g. Matlasestep for Wheat beer) (4.6.1.a2)
13+
314
## Server Version 4.6.0 (25-03-20):
415
### Codename: Hop Master
516

cbpi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "4.6.0"
1+
__version__ = "4.6.1"
22
__codename__ = "Hop Master"

cbpi/controller/system_controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ async def restoreConfig(self, data):
213213
"config.yaml",
214214
]
215215

216-
if content_type == "application/x-zip-compressed":
216+
if content_type == "application/x-zip-compressed" or content_type == "application/zip":
217217
try:
218218
content = backup_file.read()
219219
if backup_file and self.allowed_file(filename, "zip"):

0 commit comments

Comments
 (0)