From 6bc271b0591cc416366937050d9a4794e92cb718 Mon Sep 17 00:00:00 2001 From: Steven Gill Date: Wed, 5 Feb 2014 18:13:30 -0800 Subject: [PATCH 1/7] CB-5980 Incremented plugin version on dev branch. --- plugin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.xml b/plugin.xml index 9341748..40babf9 100644 --- a/plugin.xml +++ b/plugin.xml @@ -2,7 +2,7 @@ + version="0.2.8-dev"> Splashscreen Cordova Splashscreen Plugin Apache 2.0 From a10d8f8ca07b71eca463460959f20be756f3a395 Mon Sep 17 00:00:00 2001 From: Andrew Grieve Date: Thu, 27 Feb 2014 15:36:31 -0500 Subject: [PATCH 2/7] Add NOTICE file --- NOTICE | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 NOTICE diff --git a/NOTICE b/NOTICE new file mode 100644 index 0000000..8ec56a5 --- /dev/null +++ b/NOTICE @@ -0,0 +1,5 @@ +Apache Cordova +Copyright 2012 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). From e3e39967660c5715da2838f434bba288776ae358 Mon Sep 17 00:00:00 2001 From: Shazron Abdullah Date: Wed, 19 Mar 2014 18:28:52 -0700 Subject: [PATCH 3/7] CB-4051 - Re-fix - Splashscreen rotation problem (closes #13) --- src/ios/CDVSplashScreen.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ios/CDVSplashScreen.m b/src/ios/CDVSplashScreen.m index 093fc87..fdfc4c4 100644 --- a/src/ios/CDVSplashScreen.m +++ b/src/ios/CDVSplashScreen.m @@ -138,7 +138,7 @@ if (CDV_IsIPhone5()) { imageName = [imageName stringByAppendingString:@"-568h"]; - } else if (CDV_IsIPad() || isOrientationLocked) { + } else if (CDV_IsIPad() && isOrientationLocked) { switch (orientation) { case UIInterfaceOrientationLandscapeLeft: case UIInterfaceOrientationLandscapeRight: From 1e54cacac1ef4df4e43e9f488033a81e3d2b1e17 Mon Sep 17 00:00:00 2001 From: Jesse MacFadyen Date: Tue, 8 Apr 2014 16:35:42 -0700 Subject: [PATCH 4/7] CB-6422 [windows8] use cordova/exec/proxy --- www/windows8/SplashScreenProxy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/windows8/SplashScreenProxy.js b/www/windows8/SplashScreenProxy.js index e7b2f30..a9660e9 100644 --- a/www/windows8/SplashScreenProxy.js +++ b/www/windows8/SplashScreenProxy.js @@ -102,5 +102,5 @@ channel.onCordovaReady.subscribe(function (evt) { }, false); }); -require("cordova/windows8/commandProxy").add("SplashScreen", SplashScreen); +require("cordova/exec/proxy").add("SplashScreen", SplashScreen); From 23cbf34bae223e7357b901fbab77f3ed44abf73d Mon Sep 17 00:00:00 2001 From: Ian Clelland Date: Wed, 16 Apr 2014 16:22:15 -0400 Subject: [PATCH 5/7] CB-6460: Update license headers --- plugin.xml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/plugin.xml b/plugin.xml index 40babf9..32fe514 100644 --- a/plugin.xml +++ b/plugin.xml @@ -1,4 +1,22 @@ + Date: Thu, 17 Apr 2014 09:50:57 -0400 Subject: [PATCH 6/7] CB-6465: Add license headers to Tizen code --- src/tizen/SplashScreenProxy.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/tizen/SplashScreenProxy.js b/src/tizen/SplashScreenProxy.js index 5222b6b..fbd9f35 100644 --- a/src/tizen/SplashScreenProxy.js +++ b/src/tizen/SplashScreenProxy.js @@ -1,3 +1,24 @@ +/* + * + * 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. + * +*/ + ( function() { win = null; From 8052d3804d5cf4e2e42af3a12b79c37a76be20fb Mon Sep 17 00:00:00 2001 From: Ian Clelland Date: Thu, 17 Apr 2014 10:53:20 -0400 Subject: [PATCH 7/7] CB-6452 Updated version and RELEASENOTES.md for release 0.3.0 --- RELEASENOTES.md | 8 ++++++++ plugin.xml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index a508e31..5e7d822 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -49,3 +49,11 @@ ### 0.2.7 (Feb 05, 2014) * [CB-3562] Fix aspect ratio on landscape-only iPhone applications * CB-4051 fix for splashscreen rotation problem + +### 0.3.0 (Apr 17, 2014) +* Add Tizen support to plugin +* CB-6422: [windows8] use cordova/exec/proxy +* CB-4051: [ios] - Re-fix - Splashscreen rotation problem (closes #13) +* CB-6460: Update license headers +* CB-6465: Add license headers to Tizen code +* Add NOTICE file diff --git a/plugin.xml b/plugin.xml index 32fe514..1d814c2 100644 --- a/plugin.xml +++ b/plugin.xml @@ -20,7 +20,7 @@ + version="0.3.0"> Splashscreen Cordova Splashscreen Plugin Apache 2.0