Repository: cordova-plugin-globalization Updated Branches: refs/heads/master b0efb4eda -> d6235e041
CB-12519 Updated version and RELEASENOTES.md for release 1.0.6 Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization/commit/f334dcb0 Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization/tree/f334dcb0 Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization/diff/f334dcb0 Branch: refs/heads/master Commit: f334dcb0e05dc61389fe8df619ff2d914d2cec46 Parents: b0efb4e Author: Steve Gill <[email protected]> Authored: Tue Feb 28 17:41:26 2017 -0800 Committer: Steve Gill <[email protected]> Committed: Tue Feb 28 17:41:26 2017 -0800 ---------------------------------------------------------------------- RELEASENOTES.md | 8 ++ package.json | 2 +- plugin.xml | 256 ++++++++++++++++++++------------------------------ tests/plugin.xml | 33 +------ 4 files changed, 116 insertions(+), 183 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization/blob/f334dcb0/RELEASENOTES.md ---------------------------------------------------------------------- diff --git a/RELEASENOTES.md b/RELEASENOTES.md index c521fd4..c3a2b73 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -20,6 +20,14 @@ --> # Release Notes +### 1.0.6 (Feb 28, 2017) +* [CB-12029](https://issues.apache.org/jira/browse/CB-12029) **blackberry10**: Remove logging code that causes crashes on **BB10** +* [CB-12369](https://issues.apache.org/jira/browse/CB-12369) Add plugin typings from `DefinitelyTyped` +* [CB-12363](https://issues.apache.org/jira/browse/CB-12363) Added build badges for **iOS 9.3** and **iOS 10.0** +* [CB-11154](https://issues.apache.org/jira/browse/CB-11154) **Windows:** Return `IANA` timezone as an empty string instead of `undefined` +* [CB-11154](https://issues.apache.org/jira/browse/CB-11154) **Android**, **iOS** Add `IANA` timezone +* [CB-12230](https://issues.apache.org/jira/browse/CB-12230) Removed **Windows 8.1** build badges + ### 1.0.5 (Dec 07, 2016) * [CB-12224](https://issues.apache.org/jira/browse/CB-12224) Updated version and RELEASENOTES.md for release 1.0.5 * [CB-11917](https://issues.apache.org/jira/browse/CB-11917) - Remove pull request template checklist item: "iCLA has been submittedâ¦" http://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization/blob/f334dcb0/package.json ---------------------------------------------------------------------- diff --git a/package.json b/package.json index b6ec13b..920baa8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-globalization", - "version": "1.0.6-dev", + "version": "1.0.6", "description": "Cordova Globalization Plugin", "types": "./types/index.d.ts", "cordova": { http://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization/blob/f334dcb0/plugin.xml ---------------------------------------------------------------------- diff --git a/plugin.xml b/plugin.xml index 3883a80..eee59dd 100644 --- a/plugin.xml +++ b/plugin.xml @@ -1,157 +1,105 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. ---> - -<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" - id="cordova-plugin-globalization" - version="1.0.6-dev"> - <name>Globalization</name> - <description>Cordova Globalization Plugin</description> - <license>Apache 2.0</license> - <keywords>cordova,globalization</keywords> - <repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization.git</repo> - <issue>https://issues.apache.org/jira/browse/CB/component/12320649</issue> - - <js-module src="www/GlobalizationError.js" name="GlobalizationError"> - <clobbers target="window.GlobalizationError" /> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-globalization" version="1.0.6"> + <name>Globalization</name> + <description>Cordova Globalization Plugin</description> + <license>Apache 2.0</license> + <keywords>cordova,globalization</keywords> + <repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization.git</repo> + <issue>https://issues.apache.org/jira/browse/CB/component/12320649</issue> + <js-module src="www/GlobalizationError.js" name="GlobalizationError"> + <clobbers target="window.GlobalizationError"/> + </js-module> + <js-module src="www/globalization.js" name="globalization"> + <clobbers target="navigator.globalization"/> + </js-module> + <platform name="android"> + <config-file target="res/xml/config.xml" parent="/*"> + <feature name="Globalization"> + <param name="android-package" value="org.apache.cordova.globalization.Globalization"/> + </feature> + </config-file> + <source-file src="src/android/Globalization.java" target-dir="src/org/apache/cordova/globalization"/> + <source-file src="src/android/GlobalizationError.java" target-dir="src/org/apache/cordova/globalization"/> + </platform> + <platform name="amazon-fireos"> + <config-file target="res/xml/config.xml" parent="/*"> + <feature name="Globalization"> + <param name="android-package" value="org.apache.cordova.globalization.Globalization"/> + </feature> + </config-file> + <source-file src="src/android/Globalization.java" target-dir="src/org/apache/cordova/globalization"/> + <source-file src="src/android/GlobalizationError.java" target-dir="src/org/apache/cordova/globalization"/> + </platform> + <platform name="ubuntu"> + <header-file src="src/ubuntu/globalization.h"/> + <source-file src="src/ubuntu/globalization.cpp"/> + <js-module src="www/ubuntu/globalization.js" name="Globalization1"> + <merges target="navigator.globalization"/> </js-module> - - <js-module src="www/globalization.js" name="globalization"> - <clobbers target="navigator.globalization" /> + </platform> + <platform name="firefoxos"> + <js-module src="src/firefoxos/GlobalizationProxy.js" name="GlobalizationProxy"> + <runs/> </js-module> - - <!-- android --> - <platform name="android"> - <config-file target="res/xml/config.xml" parent="/*"> - <feature name="Globalization"> - <param name="android-package" value="org.apache.cordova.globalization.Globalization" /> - </feature> - </config-file> - - <source-file src="src/android/Globalization.java" target-dir="src/org/apache/cordova/globalization" /> - <source-file src="src/android/GlobalizationError.java" target-dir="src/org/apache/cordova/globalization" /> - </platform> - - <!-- amazon-fireos --> - <platform name="amazon-fireos"> - <config-file target="res/xml/config.xml" parent="/*"> - <feature name="Globalization"> - <param name="android-package" value="org.apache.cordova.globalization.Globalization" /> - </feature> - </config-file> - - <source-file src="src/android/Globalization.java" target-dir="src/org/apache/cordova/globalization" /> - <source-file src="src/android/GlobalizationError.java" target-dir="src/org/apache/cordova/globalization" /> - </platform> - - <!-- ubuntu --> - <platform name="ubuntu"> - <header-file src="src/ubuntu/globalization.h" /> - <source-file src="src/ubuntu/globalization.cpp" /> - - <js-module src="www/ubuntu/globalization.js" name="Globalization1"> - <merges target="navigator.globalization" /> - </js-module> - </platform> - - <!-- firefoxos --> - <platform name="firefoxos"> - <js-module src="src/firefoxos/GlobalizationProxy.js" name="GlobalizationProxy"> - <runs /> - </js-module> - <asset src="www/firefoxos/locales" target="locales" /> - <asset src="www/firefoxos/l10n.js" target="js/l10n.js" /> - <asset src="www/firefoxos/l10n_date.js" target="js/l10n_date.js" /> - </platform> - - <!-- ios --> - <platform name="ios"> - <config-file target="config.xml" parent="/*"> - <feature name="Globalization"> - <param name="ios-package" value="CDVGlobalization" /> - </feature> - </config-file> - <header-file src="src/ios/CDVGlobalization.h" /> - <source-file src="src/ios/CDVGlobalization.m" /> - </platform> - - <!-- wp7 --> - <platform name="wp7"> - <config-file target="config.xml" parent="/*"> - <feature name="Globalization"> - <param name="wp-package" value="Globalization"/> - </feature> - </config-file> - - <source-file src="src/wp/Globalization.cs" /> - </platform> - - <!-- wp8 --> - <platform name="wp8"> - <config-file target="config.xml" parent="/*"> - <feature name="Globalization"> - <param name="wp-package" value="Globalization"/> - </feature> - </config-file> - - <source-file src="src/wp/Globalization.cs" /> - <source-file src="src/windows/GlobalizationProxy/GlobalizationProxy/Globalization/GlobalizationApiTypes.cs" /> - <source-file src="src/windows/GlobalizationProxy/GlobalizationProxy/Globalization/GlobalizationImpl.cs" /> - </platform> - - <!-- windows8 --> - <platform name="windows8"> - <js-module src="src/windows/GlobalizationProxy.js" name="GlobalizationProxy"> - <runs/> - </js-module> - <framework src="src/windows/GlobalizationProxy.winmd" custom="true"/> - </platform> - - <!-- windows --> - <platform name="windows"> - <js-module src="src/windows/GlobalizationProxy.js" name="GlobalizationProxy"> - <runs/> - </js-module> - <framework src="src/windows/GlobalizationProxy.winmd" custom="true"/> - </platform> - - <!-- tizen --> - <platform name="tizen"> - <js-module src="src/tizen/GlobalizationProxy.js" name="GlobalizationProxy"> - <runs/> - </js-module> - </platform> - - <!-- blackberry10 --> - <platform name="blackberry10"> - <source-file src="src/blackberry10/index.js" target-dir="Globalization" /> - <lib-file src="src/blackberry10/native/device/libGlobalization.so" arch="device" /> - <lib-file src="src/blackberry10/native/simulator/libGlobalization.so" arch="simulator" /> - </platform> - - <!-- browser --> - <platform name="browser"> - <js-module src="www/browser/moment.js" name="moment"> - <runs/> - </js-module> - <js-module src="src/browser/GlobalizationProxy.js" name="GlobalizationProxy"> - <runs/> - </js-module> - </platform> + <asset src="www/firefoxos/locales" target="locales"/> + <asset src="www/firefoxos/l10n.js" target="js/l10n.js"/> + <asset src="www/firefoxos/l10n_date.js" target="js/l10n_date.js"/> + </platform> + <platform name="ios"> + <config-file target="config.xml" parent="/*"> + <feature name="Globalization"> + <param name="ios-package" value="CDVGlobalization"/> + </feature> + </config-file> + <header-file src="src/ios/CDVGlobalization.h"/> + <source-file src="src/ios/CDVGlobalization.m"/> + </platform> + <platform name="wp7"> + <config-file target="config.xml" parent="/*"> + <feature name="Globalization"> + <param name="wp-package" value="Globalization"/> + </feature> + </config-file> + <source-file src="src/wp/Globalization.cs"/> + </platform> + <platform name="wp8"> + <config-file target="config.xml" parent="/*"> + <feature name="Globalization"> + <param name="wp-package" value="Globalization"/> + </feature> + </config-file> + <source-file src="src/wp/Globalization.cs"/> + <source-file src="src/windows/GlobalizationProxy/GlobalizationProxy/Globalization/GlobalizationApiTypes.cs"/> + <source-file src="src/windows/GlobalizationProxy/GlobalizationProxy/Globalization/GlobalizationImpl.cs"/> + </platform> + <platform name="windows8"> + <js-module src="src/windows/GlobalizationProxy.js" name="GlobalizationProxy"> + <runs/> + </js-module> + <framework src="src/windows/GlobalizationProxy.winmd" custom="true"/> + </platform> + <platform name="windows"> + <js-module src="src/windows/GlobalizationProxy.js" name="GlobalizationProxy"> + <runs/> + </js-module> + <framework src="src/windows/GlobalizationProxy.winmd" custom="true"/> + </platform> + <platform name="tizen"> + <js-module src="src/tizen/GlobalizationProxy.js" name="GlobalizationProxy"> + <runs/> + </js-module> + </platform> + <platform name="blackberry10"> + <source-file src="src/blackberry10/index.js" target-dir="Globalization"/> + <lib-file src="src/blackberry10/native/device/libGlobalization.so" arch="device"/> + <lib-file src="src/blackberry10/native/simulator/libGlobalization.so" arch="simulator"/> + </platform> + <platform name="browser"> + <js-module src="www/browser/moment.js" name="moment"> + <runs/> + </js-module> + <js-module src="src/browser/GlobalizationProxy.js" name="GlobalizationProxy"> + <runs/> + </js-module> + </platform> </plugin> http://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization/blob/f334dcb0/tests/plugin.xml ---------------------------------------------------------------------- diff --git a/tests/plugin.xml b/tests/plugin.xml index 1211ac5..db8150f 100644 --- a/tests/plugin.xml +++ b/tests/plugin.xml @@ -1,29 +1,6 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. ---> - -<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" - id="cordova-plugin-globalization-tests" - version="1.0.6-dev"> - <name>Cordova Globalization Plugin Tests</name> - <license>Apache 2.0</license> - - <js-module src="tests.js" name="tests"> - </js-module> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-globalization-tests" version="1.0.6"> + <name>Cordova Globalization Plugin Tests</name> + <license>Apache 2.0</license> + <js-module src="tests.js" name="tests"/> </plugin> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
