automatization wp with splash and icons

This commit is contained in:
Gustavo Maximiliano Cortez 2015-01-13 20:08:34 -02:00
parent 932c65e00d
commit 0b5e56b198
25 changed files with 16 additions and 10 deletions

View File

@ -23,10 +23,14 @@ cordova-base:
# make -C cordova release-android
#
wp8:
cordova/build.sh WP8
cordova/build.sh WP8
cordova/wp/fix-svg.sh
echo -e "\a"
wp8-debug:
cordova/build.sh WP8 --dbgjs
cordova/wp/fix-svg.sh
echo -e "\a"
ios:
cordova/build.sh IOS --clear

View File

@ -171,12 +171,14 @@ if [ $CURRENT_OS == "WP8" ]; then
echo "Wp8 project!!!"
cp -R $PROJECT/www/* $PROJECT/platforms/wp8/www
checkOK
mkdir -p $PROJECT/platforms/res/wp
cp -v wp/res/* $PROJECT/platforms/wp8/Assets
cp -v wp/res/SplashScreenImage.jpg $PROJECT/platforms/wp8/
cp -vf wp/Properties/* $PROJECT/platforms/wp8/Properties/
cp -vf wp/Package.appxmanifest $PROJECT/platforms/wp8/
checkOK
cp -vf wp/Assets/* $PROJECT/platforms/wp8/Assets/
cp -vf wp/SplashScreenImage.jpg $PROJECT/platforms/wp8/
cp -vf wp/ApplicationIcon.png $PROJECT/platforms/wp8/
cp -vf wp/Background.png $PROJECT/platforms/wp8/
checkOK
fi

View File

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

BIN
cordova/wp/Assets/173x173@1.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

BIN
cordova/wp/Assets/173x173@2.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
cordova/wp/Assets/62x62@1.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
cordova/wp/Assets/62x62@2.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

BIN
cordova/wp/Assets/99x99@1.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

BIN
cordova/wp/Assets/99x99@2.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 47 KiB

BIN
cordova/wp/Assets/icon@1.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -5,7 +5,7 @@
<Language code="en-US" />
</Languages>
<App Author="Bitpay Inc." BitsPerPixel="32" Description="A multisignature Bitcoin Wallet" Genre="apps.normal" ProductID="{5381aa50-9069-11e4-84cc-293caf9cbdc8}" Publisher="Copay Wallet" PublisherID="{31cdd08b-457c-413d-b440-f6665eec847d}" RuntimeType="Silverlight" Title="Copay Wallet" Version="0.9.4.0" xmlns="" SDOptOut="false" NotificationService="MPN">
<IconPath IsRelative="true" IsResource="false">icon@2.png</IconPath>
<IconPath IsRelative="true" IsResource="false">Assets/icon@2.png</IconPath>
<Capabilities>
<Capability Name="ID_CAP_WEBBROWSERCOMPONENT" />
<Capability Name="ID_CAP_NETWORKING" />
@ -17,9 +17,9 @@
<Tokens>
<PrimaryToken TaskName="_default" TokenID="CopayToken">
<TemplateFlip>
<SmallImageURI IsRelative="true" IsResource="false">200x200@1.png</SmallImageURI>
<SmallImageURI IsRelative="true" IsResource="false">Assets/200x200@1.png</SmallImageURI>
<Count>0</Count>
<BackgroundImageURI IsRelative="true" IsResource="false">200x200@2.png</BackgroundImageURI>
<BackgroundImageURI IsRelative="true" IsResource="false">Assets/200x200@2.png</BackgroundImageURI>
<Title>Copay Wallet</Title>
<BackContent />
<BackBackgroundImageURI />

View File

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

0
cordova/wp/fix-svg.sh Normal file → Executable file
View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 54 KiB

View File

@ -33,7 +33,7 @@ angular.module('copayApp.controllers').controller('HomeController', function($sc
});
$scope.usingLocalStorage = config.plugins.EncryptedLocalStorage;
if (isCordova && 0) {
if (isCordova) {
ls.getItem(KEY, function(err, value) {
$scope.showDisclaimer = value ? null : true;
});