cordova-media-gen
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -0,1 +1,11 @@ | ||
<a name="1.0.1"></a> | ||
## [1.0.1](https://github.com/hypery2k/cordova-media-generator/compare/v1.0.0...v1.0.1) (2017-10-09) | ||
### Bug Fixes | ||
* **android:** Support for higher Android resolutions ([7e73713](https://github.com/hypery2k/cordova-media-generator/commit/7e73713)) | ||
<a name="1.0.0"></a> | ||
@@ -2,0 +12,0 @@ # [1.0.0](https://github.com/hypery2k/cordova-media-generator/compare/v0.6.0...v1.0.0) (2017-05-28) |
@@ -340,2 +340,14 @@ #! /usr/bin/env node | ||
}, { | ||
width: 140, | ||
height: 140, | ||
path: "android/res/mipmap-xxhdpi", | ||
filename: "icon.png", | ||
source: process.argv[2] || config.icon || config.image | ||
}, { | ||
width: 192, | ||
height: 192, | ||
path: "android/res/mipmap-xxxhdpi", | ||
filename: "icon.png", | ||
source: process.argv[2] || config.icon || config.image | ||
}, { | ||
width: 800, | ||
@@ -388,2 +400,14 @@ height: 480, | ||
source: process.argv[2] || config.splash || config.image | ||
}, { | ||
width: 960, | ||
height: 1600, | ||
path: "android/res/drawable-port-xxhdpi", | ||
filename: "screen.png", | ||
source: process.argv[2] || config.splash || config.image | ||
}, { | ||
width: 1280, | ||
height: 1920, | ||
path: "android/res/drawable-port-xxxhdpi", | ||
filename: "screen.png", | ||
source: process.argv[2] || config.splash || config.image | ||
}, | ||
@@ -390,0 +414,0 @@ |
{ | ||
"name": "cordova-media-gen", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Generates Cordova Media (Splashscreens, Icons & Screenshots)", | ||
@@ -5,0 +5,0 @@ "main": "cordova-media-gen.js", |
259131
1013