From 8fe3b06d40b0c052ba915fb76874e1d02b04c5bb Mon Sep 17 00:00:00 2001 From: Pliable Pixels Date: Sun, 1 Oct 2017 07:45:55 -0400 Subject: updates --- .DS_Store | Bin 12292 -> 14340 bytes CHANGELOG.md | 23 +++++++++++++++++++++++ config.xml | 10 +++++----- package.json | 6 +++--- resources/icon.ico | Bin 0 -> 10218 bytes www/lang/checklang.py | 6 +++--- www/lang/locale-en.json | 2 +- 7 files changed, 35 insertions(+), 12 deletions(-) create mode 100644 resources/icon.ico diff --git a/.DS_Store b/.DS_Store index 1108cbd9..1b2c2ad8 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/CHANGELOG.md b/CHANGELOG.md index 47b78026..f095fae5 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 c8dc04d0..07efaa8b 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 bd461f1c..bf909f54 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 00000000..e7b66565 Binary files /dev/null and b/resources/icon.ico differ diff --git a/www/lang/checklang.py b/www/lang/checklang.py index 307f51df..c2ddc189 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 24f2a031..a134e923 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", -- cgit v1.2.3