cordova-splash
Advanced tools
Comparing version 0.7.0 to 0.7.1
@@ -5,2 +5,12 @@ # Change Log | ||
## [0.7.1] - 2016-04-21 | ||
- iOS: Cleanup sizes (8a6f76e) | ||
- Android: Add xxhdpi & xxxhdpi (3739f62) | ||
## [0.7.0] - 2016-04-13 | ||
- Use wrench to prevent issues with directory creation (6b0da63) | ||
## [0.6.0] - 2016-03-26 | ||
- *Ahem, nothing?* | ||
## [0.5.1] - 2016-03-11 | ||
@@ -7,0 +17,0 @@ - iOS: Get back sizes from previous version of the repo (eb65d2d) |
46
index.js
@@ -25,28 +25,14 @@ var fs = require('fs'); | ||
splash : [ | ||
{ name: 'Default-568h@2x~iphone.png', width: 640, height: 1136 }, | ||
{ name: 'Default-667h.png', width: 750, height: 1334 }, | ||
{ name: 'Default-736h.png', width: 1242, height: 2208 }, | ||
{ name: 'Default-Landscape-736h.png', width: 2208, height: 1242 }, | ||
{ name: 'Default@2x~iphone.png', width: 640, height: 960 }, | ||
{ name: 'Default~iphone.png', width: 320, height: 480 }, | ||
{ name: 'Default-Portrait~iphone.png', width: 320, height: 480 }, | ||
{ name: 'Default-Portrait@2x~iphone.png', width: 640, height: 960 }, | ||
{ name: 'Default-Portrait-568h@2x~iphone.png', width: 640, height: 1136 }, | ||
{ name: 'Default-Portrait-667h@2x~iphone.png', width: 750, height: 1334 }, | ||
{ name: 'Default-Portrait-736h@3x~iphone.png', width: 1242, height: 2208 }, | ||
{ name: 'Default-Landscape~iphone.png', width: 480, height: 320 }, | ||
{ name: 'Default-Landscape@2x~iphone.png', width: 960, height: 640 }, | ||
{ name: 'Default-Landscape-568h@2x~iphone.png', width: 1136, height: 640 }, | ||
{ name: 'Default-Landscape-667h@2x~iphone.png', width: 1334, height: 750 }, | ||
{ name: 'Default-Landscape-736h@3x~iphone.png', width: 2208, height: 1242 }, | ||
{ name: 'Default-Portrait~ipad.png', width: 768, height: 1024 }, | ||
{ name: 'Default-Portrait@2x~ipad.png', width: 1536, height: 2048 }, | ||
{ name: 'Default-Portrait@2x~ipad-pro.png', width: 2048, height: 2732 }, | ||
{ name: 'Default-Landscape~ipad.png', width: 1024, height: 768 }, | ||
{ name: 'Default-Landscape@2x~ipad.png', width: 2048, height: 1536 }, | ||
{ name: 'Default-Landscape@2x~ipad-pro.png', width: 2732, height: 2048 } | ||
// iPhone | ||
{ name: 'Default~iphone.png', width: 320, height: 480 }, | ||
{ name: 'Default@2x~iphone.png', width: 640, height: 960 }, | ||
{ name: 'Default-568h@2x~iphone.png', width: 640, height: 1136 }, | ||
{ name: 'Default-667h.png', width: 750, height: 1334 }, | ||
{ name: 'Default-736h.png', width: 1242, height: 2208 }, | ||
{ name: 'Default-Landscape-736h.png', width: 2208, height: 1242 }, | ||
// iPad | ||
{ name: 'Default-Portrait~ipad.png', width: 768, height: 1024 }, | ||
{ name: 'Default-Portrait@2x~ipad.png', width: 1536, height: 2048 }, | ||
{ name: 'Default-Landscape~ipad.png', width: 1024, height: 768 }, | ||
{ name: 'Default-Landscape@2x~ipad.png', width: 2048, height: 1536 } | ||
] | ||
@@ -59,2 +45,3 @@ }); | ||
splash : [ | ||
// Landscape | ||
{ name: 'drawable-land-ldpi/screen.png', width: 320, height: 200 }, | ||
@@ -64,6 +51,11 @@ { name: 'drawable-land-mdpi/screen.png', width: 480, height: 320 }, | ||
{ name: 'drawable-land-xhdpi/screen.png', width: 1280, height: 720 }, | ||
{ name: 'drawable-land-xxhdpi/screen.png', width: 1600, height: 960 }, | ||
{ name: 'drawable-land-xxxhdpi/screen.png', width: 1920, height: 1280 }, | ||
// Portrait | ||
{ name: 'drawable-port-ldpi/screen.png', width: 200, height: 320 }, | ||
{ name: 'drawable-port-mdpi/screen.png', width: 320, height: 480 }, | ||
{ name: 'drawable-port-hdpi/screen.png', width: 480, height: 800 }, | ||
{ name: 'drawable-port-xhdpi/screen.png', width: 720, height: 1280 } | ||
{ name: 'drawable-port-xhdpi/screen.png', width: 720, height: 1280 }, | ||
{ name: 'drawable-port-xxhdpi/screen.png', width: 960, height: 1600 }, | ||
{ name: 'drawable-port-xxxhdpi/screen.png', width: 1280, height: 1920 } | ||
] | ||
@@ -70,0 +62,0 @@ }); |
{ | ||
"name": "cordova-splash", | ||
"version": "0.7.0", | ||
"version": "0.7.1", | ||
"description": "Automatic splash screen cropping for Cordova", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is not supported yet
13730
266