From 5f83eda5e829ac7a11e1803de653cb7cf95764af Mon Sep 17 00:00:00 2001 From: Andrew Grieve <agrieve@chromium.org> Date: Fri, 6 Sep 2013 00:58:22 -0400 Subject: [PATCH 1/6] [CB-4752] 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 8ed52eb..7fcc724 100644 --- a/plugin.xml +++ b/plugin.xml @@ -2,7 +2,7 @@ <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="org.apache.cordova.core.splashscreen" - version="0.2.0"> + version="0.2.1-dev"> <name>Splashscreen</name> <description>Cordova Splashscreen Plugin</description> <license>Apache 2.0</license> From 1111c8b3b9b8fe28d6c9fe9c9a1bc548a679e4ac Mon Sep 17 00:00:00 2001 From: Shazron Abdullah <shazron@apache.org> Date: Fri, 13 Sep 2013 15:58:36 -0700 Subject: [PATCH 2/6] [CB-4806] Update splashscreen image bounds for iOS 7 --- src/ios/CDVSplashScreen.m | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ios/CDVSplashScreen.m b/src/ios/CDVSplashScreen.m index ba8d108..8159ce1 100644 --- a/src/ios/CDVSplashScreen.m +++ b/src/ios/CDVSplashScreen.m @@ -171,6 +171,9 @@ if (CGSizeEqualToSize(screenSize, imgBounds.size)) { CGRect statusFrame = [self.viewController.view convertRect:[UIApplication sharedApplication].statusBarFrame fromView:nil]; imgBounds.origin.y -= statusFrame.size.height; + if (!(IsAtLeastiOSVersion(@"7.0"))) { + imgBounds.origin.y -= statusFrame.size.height; + } } else { CGRect viewBounds = self.viewController.view.bounds; CGFloat imgAspect = imgBounds.size.width / imgBounds.size.height; From d937fcb43bfaf3d350825d7f54ab9e856503a733 Mon Sep 17 00:00:00 2001 From: Andrew Grieve <agrieve@chromium.org> Date: Tue, 17 Sep 2013 11:36:13 -0400 Subject: [PATCH 3/6] Rename CHANGELOG.md -> RELEASENOTES.md --- CHANGELOG.md => RELEASENOTES.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename CHANGELOG.md => RELEASENOTES.md (100%) diff --git a/CHANGELOG.md b/RELEASENOTES.md similarity index 100% rename from CHANGELOG.md rename to RELEASENOTES.md From 4ce42a0c990f07bf67d1fef7f5b3f573cf47e908 Mon Sep 17 00:00:00 2001 From: Anis Kadri <anis@apache.org> Date: Sat, 21 Sep 2013 12:38:51 +0200 Subject: [PATCH 4/6] CB-4889 renaming org.apache.cordova.core.splashscreen to org.apache.cordova.splashscreen --- plugin.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin.xml b/plugin.xml index 7fcc724..fff3a97 100644 --- a/plugin.xml +++ b/plugin.xml @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="UTF-8"?> <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" - id="org.apache.cordova.core.splashscreen" - version="0.2.1-dev"> + id="org.apache.cordova.splashscreen" + version="0.2.1"> <name>Splashscreen</name> <description>Cordova Splashscreen Plugin</description> <license>Apache 2.0</license> From 87a701004dd6dad39f0c042beb33a9ebce214301 Mon Sep 17 00:00:00 2001 From: Anis Kadri <anis@apache.org> Date: Wed, 25 Sep 2013 17:50:50 +0200 Subject: [PATCH 5/6] CB-4889 bumping&resetting version --- plugin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.xml b/plugin.xml index fff3a97..90ad2b6 100644 --- a/plugin.xml +++ b/plugin.xml @@ -2,7 +2,7 @@ <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="org.apache.cordova.splashscreen" - version="0.2.1"> + version="0.2.2-dev"> <name>Splashscreen</name> <description>Cordova Splashscreen Plugin</description> <license>Apache 2.0</license> From f1aed7d8449f541e41dcc6cde60bb151bc6068c7 Mon Sep 17 00:00:00 2001 From: Steven Gill <stevengill97@gmail.com> Date: Wed, 25 Sep 2013 17:56:18 -0700 Subject: [PATCH 6/6] [CB-4915] Updated version and RELEASENOTES.md for release 0.2.2 --- RELEASENOTES.md | 7 ++++++- plugin.xml | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 6195996..d5950f2 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -20,4 +20,9 @@ --> # Release Notes - +### 0.2.2 (Sept 25, 2013) +* CB-4889 bumping&resetting version +* CB-4889 renaming org.apache.cordova.core.splashscreen to org.apache.cordova.splashscreen +* Rename CHANGELOG.md -> RELEASENOTES.md +* [CB-4806] Update splashscreen image bounds for iOS 7 +* [CB-4752] Incremented plugin version on dev branch. diff --git a/plugin.xml b/plugin.xml index 90ad2b6..8678830 100644 --- a/plugin.xml +++ b/plugin.xml @@ -2,7 +2,7 @@ <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="org.apache.cordova.splashscreen" - version="0.2.2-dev"> + version="0.2.2"> <name>Splashscreen</name> <description>Cordova Splashscreen Plugin</description> <license>Apache 2.0</license>