Skip to content

Commit

Permalink
Version 0.19.6 (Beta 19.6)
Browse files Browse the repository at this point in the history
* Fixed bug in Blue Iris XML parsing on server rebuild
  • Loading branch information
Colorado Four Wheeler authored and Colorado Four Wheeler committed Mar 18, 2018
1 parent 3510e9b commit 2cfd72b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
10 changes: 7 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
Release Notes
==========

Version 0.19.6 (Beta 19.6)
==========
* Fixed bug in Blue Iris XML parsing on server rebuild

Previous Release Notes
==========

Version 0.19.5 (Beta 19.5)
==========
* Added retrieving width, height and FPS from SecuritySpy server so that HomeKit cameras represent the proper aspect ratio and frame rate
* Added auto detect so that SecuritySpy and Blue Iris camera devices will default to a camera HomeKit type
* Added **experimental** support for Blue Iris

Previous Release Notes
==========

Version 0.19.4 (Beta 19.4)
---------------
* **NOTE** There are going to be a few miscellaneous builds flying through pretty fast to get SenseMe fans working for Webdeck, since he had such a big role in this plugin he gets special treatment - deal with it :). Anyway, you don't need to update to these if you aren't using SenseMe.
Expand Down
2 changes: 1 addition & 1 deletion EPS HomeKit Bridge.indigoPlugin/Contents/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>PluginVersion</key>
<string>0.19.5</string>
<string>0.19.6</string>
<key>ServerApiVersion</key>
<string>2.0</string>
<key>IwsApiVersion</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4374,10 +4374,10 @@ def buildServerConfigurationDict (self, serverId, debugMode = False):
prefdata = file.read()
dom = xml.dom.minidom.parseString(prefdata)
prefs = self._getChildElementsByTagName(dom, u"prefs")
biServerIp = self._getElementValueByTagName(prefs, u"serverip", required=False, default=u"")
biPort = self._getElementValueByTagName(prefs, u"serverport", required=False, default=u"")
biUser = self._getElementValueByTagName(prefs, u"serverusername", required=False, default=u"")
biPass = self._getElementValueByTagName(prefs, u"serverpassword", required=False, default=u"")
biServerIp = self._getElementValueByTagName(prefs[0], u"serverip", required=False, default=u"")
biPort = self._getElementValueByTagName(prefs[0], u"serverport", required=False, default=u"")
biUser = self._getElementValueByTagName(prefs[0], u"serverusername", required=False, default=u"")
biPass = self._getElementValueByTagName(prefs[0], u"serverpassword", required=False, default=u"")

if biPass != "":
biURL = u"http://{}:{}".format(biServerIp, biPort)
Expand Down

0 comments on commit 2cfd72b

Please sign in to comment.