Occu 3.45.7 (#574)

* Update OCCU 3.45.7

* Fix chmod
This commit is contained in:
Pascal Vizeli
2019-04-23 16:54:28 +02:00
committed by GitHub
parent 6d65043e6b
commit 7934ff18ab
10 changed files with 25 additions and 5 deletions

View File

@@ -1,63 +1,83 @@
# Changelog # Changelog
## 8.2
- Update OCCU to 3.45.7
## 8.1 ## 8.1
- Update OCCU to 3.43.15 - Update OCCU to 3.43.15
- Migrate to new arch layering - Migrate to new arch layering
- Better handling for errors with Firmware updates - Better handling for errors with Firmware updates
## 8.0 ## 8.0
- Update OCCU to 3.41.11 - Update OCCU to 3.41.11
- Fix write error when starting OCCU / HmIP - Fix write error when starting OCCU / HmIP
- Redirect HMIPServer log to console - Redirect HMIPServer log to console
## 7.0 ## 7.0
- Update OCCU to 3.41.7 - Update OCCU to 3.41.7
## 6.0 ## 6.0
- Allow customer firmware updates inside `/share` - Allow customer firmware updates inside `/share`
- Update Hardware on startup - Update Hardware on startup
- Limit HmIP server to 64mb memory - Limit HmIP server to 64mb memory
- Set `rf_enable` default to `false` - Set `rf_enable` default to `false`
## 5.0 ## 5.0
- Save hmip_address.conf persistent - Save hmip_address.conf persistent
## 4.0 ## 4.0
- New ubuntu base images - New ubuntu base images
- Support firmware update of HM-MOD-RPI-PCB, HmIP-RFUSB - Support firmware update of HM-MOD-RPI-PCB, HmIP-RFUSB
- Add HmIP support with HmIP-RFUSB - Add HmIP support with HmIP-RFUSB
## 3.0 ## 3.0
- Add periodically time sync - Add periodically time sync
## 2.0 ## 2.0
- Fix wrong Timezone - Fix wrong Timezone
- Update OCCU to 3.37.8 - Update OCCU to 3.37.8
## 1.0 ## 1.0
- Change version format to other core add-ons - Change version format to other core add-ons
- Update OCCU to 2.35.16 - Update OCCU to 2.35.16
- Disable AppArmor to work on system like HassOS - Disable AppArmor to work on system like HassOS
## 2.31.25-p2 ## 2.31.25-p2
- Bugfix with reset value on GPIO - Bugfix with reset value on GPIO
## 2.31.25-p1 ## 2.31.25-p1
- Add `reset` options for RF modules - Add `reset` options for RF modules
## 2.31.25-p0 ## 2.31.25-p0
- Update OCCU to 2.31.25 - Update OCCU to 2.31.25
## 2.31.23-p0 ## 2.31.23-p0
- Update OCCU to 2.31.23 - Update OCCU to 2.31.23
## 2.29.22-1-p1 ## 2.29.22-1-p1
- Fix bug in script - Fix bug in script
- Add wired port into config - Add wired port into config
## 2.29.22-1-p1 ## 2.29.22-1-p1
- Change config logic - Change config logic
- Add support for wired - Add support for wired
## 2.29.22-1-p0 ## 2.29.22-1-p0
- Initial - Initial

View File

@@ -49,11 +49,11 @@ RUN curl -SL https://github.com/eq-3/occu/archive/${OCCU_VERSION}.tar.gz | tar x
ENV HM_HOME=/opt/hm LD_LIBRARY_PATH=/opt/hm/lib:${LD_LIBRARY_PATH} ENV HM_HOME=/opt/hm LD_LIBRARY_PATH=/opt/hm/lib:${LD_LIBRARY_PATH}
# Update config files # Update config files
COPY rfd.conf hs485d.conf crRFD.conf log4j.xml /etc/config/ COPY data/rfd.conf data/hs485d.conf data/crRFD.conf data/log4j.xml /etc/config/
# Setup start script # Setup start script
COPY run.sh / COPY data/run.sh /
COPY hm-firmware.sh /usr/lib/ COPY data/hm-firmware.sh /usr/lib/
WORKDIR /data WORKDIR /data
CMD [ "/run.sh" ] CMD [ "/run.sh" ]

View File

@@ -4,6 +4,6 @@
"i386": "homeassistant/i386-base-ubuntu:18.04" "i386": "homeassistant/i386-base-ubuntu:18.04"
}, },
"args": { "args": {
"OCCU_VERSION": "3.43.15" "OCCU_VERSION": "3.45.7"
} }
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "HomeMatic OCCU", "name": "HomeMatic OCCU",
"version": "8.1", "version": "8.2",
"slug": "homematic", "slug": "homematic",
"description": "HomeMatic central based on OCCU", "description": "HomeMatic central based on OCCU",
"url": "https://home-assistant.io/addons/homematic/", "url": "https://home-assistant.io/addons/homematic/",

View File