diff --git a/.DS_Store b/.DS_Store index 1108cbd98..1b2c2ad84 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/CHANGELOG.md b/CHANGELOG.md index 47b780260..f095fae55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Change Log +## [1.2.503](https://github.com/pliablepixels/zmNinja/tree/1.2.503) (2017-10-01) +[Full Changelog](https://github.com/pliablepixels/zmNinja/compare/v1.2.44...1.2.503) + +**Implemented enhancements:** + +- Allow running multiple, different instances of zmNinja \(desktop\) [\#542](https://github.com/pliablepixels/zmNinja/issues/542) +- Abstract zmNinja out from ZM specifics [\#318](https://github.com/pliablepixels/zmNinja/issues/318) + +**Fixed bugs:** + +- German language - JSON corrupted -affects 1.2.500 [\#545](https://github.com/pliablepixels/zmNinja/issues/545) + +**Closed issues:** + +- make it easier to make desktop builds [\#541](https://github.com/pliablepixels/zmNinja/issues/541) +- Explore upgrading electron wrapper to solve white screen issues [\#539](https://github.com/pliablepixels/zmNinja/issues/539) +- All monitors view refresh rate 0 or very low on my PC/Windows installation of ZMNinja [\#527](https://github.com/pliablepixels/zmNinja/issues/527) + +**Merged pull requests:** + +- Email not configured [\#544](https://github.com/pliablepixels/zmNinja/pull/544) ([florie1706](https://github.com/florie1706)) +- kEmailNotConfigured [\#540](https://github.com/pliablepixels/zmNinja/pull/540) ([maymaymay](https://github.com/maymaymay)) + ## [v1.2.44](https://github.com/pliablepixels/zmNinja/tree/v1.2.44) (2017-09-25) [Full Changelog](https://github.com/pliablepixels/zmNinja/compare/v1.2.41...v1.2.44) diff --git a/config.xml b/config.xml index c8dc04d04..07efaa8b6 100644 --- a/config.xml +++ b/config.xml @@ -1,5 +1,5 @@ - + zmNinja High performance ZoneMinder client @@ -95,6 +95,9 @@ + + + @@ -125,6 +128,7 @@ + @@ -137,8 +141,4 @@ - - - - diff --git a/package.json b/package.json index bd461f1ca..bf909f54b 100644 --- a/package.json +++ b/package.json @@ -49,9 +49,9 @@ "phonegap-plugin-push": { "SENDER_ID": "710936220256" }, - "cordova-plugin-certificates": {}, "com.jcjee.plugins.emailcomposer": {}, - "cordova-plugin-statusbar": {} + "cordova-plugin-statusbar": {}, + "cordova-plugin-certificates": {} } }, "dependencies": { @@ -100,4 +100,4 @@ "devDependencies": { "bower": "^1.8.2" } -} +} \ No newline at end of file diff --git a/resources/icon.ico b/resources/icon.ico new file mode 100644 index 000000000..e7b665650 Binary files /dev/null and b/resources/icon.ico differ diff --git a/www/lang/checklang.py b/www/lang/checklang.py index 307f51df8..c2ddc1892 100755 --- a/www/lang/checklang.py +++ b/www/lang/checklang.py @@ -1,7 +1,7 @@ #!/usr/bin/env python from __future__ import absolute_import, division, print_function, unicode_literals import sys -import json +import simplejson as json import os import getopt @@ -53,8 +53,8 @@ def compare(fname): with open (i) as json_data: try: newKeys = json.load(json_data) - except ValueError: - print('could not parse %s, skipping!' %fname) + except ValueError as err: + print('could not parse %s, skipping! %s' %(fname, err)) globBad+=1 return json_data.close() diff --git a/www/lang/locale-en.json b/www/lang/locale-en.json index 24f2a031b..a134e9236 100644 --- a/www/lang/locale-en.json +++ b/www/lang/locale-en.json @@ -72,7 +72,7 @@ "kDiscoveringPortal" :"discovering portal", "kDone" :"done", "kDownload" :"download", - "kEmailNotConfigured" : "Email not configured", + "kEmailNotConfigured" :"Email not configured", "kEnable24hr" :"enable 24hr time format", "kEnableDebug" :"Enable debug logs", "kEnableGIFMP4" :"Enable GIF/MP4 downloads",