diff --git a/UWP/Assets/LockScreenLogo.scale-200.png b/UWP/Assets/LockScreenLogo.scale-200.png index 735f57adb5..0e78f4b01b 100644 Binary files a/UWP/Assets/LockScreenLogo.scale-200.png and b/UWP/Assets/LockScreenLogo.scale-200.png differ diff --git a/UWP/Assets/SplashScreen.scale-200.png b/UWP/Assets/SplashScreen.scale-200.png index 023e7f1fed..fb75451a3d 100644 Binary files a/UWP/Assets/SplashScreen.scale-200.png and b/UWP/Assets/SplashScreen.scale-200.png differ diff --git a/UWP/Assets/Square150x150Logo.scale-200.png b/UWP/Assets/Square150x150Logo.scale-200.png index af49fec1a5..92cdf494e4 100644 Binary files a/UWP/Assets/Square150x150Logo.scale-200.png and b/UWP/Assets/Square150x150Logo.scale-200.png differ diff --git a/UWP/Assets/Square44x44Logo.scale-200.png b/UWP/Assets/Square44x44Logo.scale-200.png index ce342a2ec8..739503aa2e 100644 Binary files a/UWP/Assets/Square44x44Logo.scale-200.png and b/UWP/Assets/Square44x44Logo.scale-200.png differ diff --git a/UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png b/UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png index f6c02ce97e..d88950ecd1 100644 Binary files a/UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png and b/UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png differ diff --git a/UWP/Assets/StoreLogo.png b/UWP/Assets/StoreLogo.png index 7385b56c0e..a971eb8ca8 100644 Binary files a/UWP/Assets/StoreLogo.png and b/UWP/Assets/StoreLogo.png differ diff --git a/UWP/Assets/Wide310x150Logo.scale-200.png b/UWP/Assets/Wide310x150Logo.scale-200.png index 288995b397..89a65454d8 100644 Binary files a/UWP/Assets/Wide310x150Logo.scale-200.png and b/UWP/Assets/Wide310x150Logo.scale-200.png differ diff --git a/UWP/AssetsGold/LockScreenLogo.scale-200.png b/UWP/AssetsGold/LockScreenLogo.scale-200.png new file mode 100644 index 0000000000..f03796f780 Binary files /dev/null and b/UWP/AssetsGold/LockScreenLogo.scale-200.png differ diff --git a/UWP/AssetsGold/SplashScreen.scale-200.png b/UWP/AssetsGold/SplashScreen.scale-200.png new file mode 100644 index 0000000000..4f2ce38cd3 Binary files /dev/null and b/UWP/AssetsGold/SplashScreen.scale-200.png differ diff --git a/UWP/AssetsGold/Square150x150Logo.scale-200.png b/UWP/AssetsGold/Square150x150Logo.scale-200.png new file mode 100644 index 0000000000..4527504979 Binary files /dev/null and b/UWP/AssetsGold/Square150x150Logo.scale-200.png differ diff --git a/UWP/AssetsGold/Square44x44Logo.scale-200.png b/UWP/AssetsGold/Square44x44Logo.scale-200.png new file mode 100644 index 0000000000..a5306af93c Binary files /dev/null and b/UWP/AssetsGold/Square44x44Logo.scale-200.png differ diff --git a/UWP/AssetsGold/Square44x44Logo.targetsize-24_altform-unplated.png b/UWP/AssetsGold/Square44x44Logo.targetsize-24_altform-unplated.png new file mode 100644 index 0000000000..c8683d2950 Binary files /dev/null and b/UWP/AssetsGold/Square44x44Logo.targetsize-24_altform-unplated.png differ diff --git a/UWP/AssetsGold/StoreLogo.png b/UWP/AssetsGold/StoreLogo.png new file mode 100644 index 0000000000..e1d69c31b1 Binary files /dev/null and b/UWP/AssetsGold/StoreLogo.png differ diff --git a/UWP/AssetsGold/Wide310x150Logo.scale-200.png b/UWP/AssetsGold/Wide310x150Logo.scale-200.png new file mode 100644 index 0000000000..f158b6982f Binary files /dev/null and b/UWP/AssetsGold/Wide310x150Logo.scale-200.png differ diff --git a/UWP/imgconv.sh b/UWP/imgconv.sh new file mode 100644 index 0000000000..69584f47fd --- /dev/null +++ b/UWP/imgconv.sh @@ -0,0 +1,27 @@ +CONVERT=/c/batch/convert.exe +ICON=../source_assets/image/icon_regular.png +ASSET_DIR=Assets + +mkdir -p $ASSET_DIR +$CONVERT ${ICON} -resize 48x48 $ASSET_DIR/LockScreenLogo.scale-200.png +$CONVERT ${ICON} -resize 88x88 $ASSET_DIR/Square44x44Logo.scale-200.png +$CONVERT ${ICON} -resize 24x24 $ASSET_DIR/Square44x44Logo.targetsize-24_altform-unplated.png +$CONVERT ${ICON} -resize 300x300 $ASSET_DIR/Square150x150Logo.scale-200.png +$CONVERT ${ICON} -resize 50x50 $ASSET_DIR/StoreLogo.png +$CONVERT ${ICON} -resize 1240x600 -background none -gravity center -extent 1240x600 $ASSET_DIR/SplashScreen.scale-200.png + + + +ICON=../source_assets/image/icon_gold.png +ASSET_DIR=AssetsGold + +mkdir -p $ASSET_DIR +$CONVERT ${ICON} -resize 48x48 $ASSET_DIR/LockScreenLogo.scale-200.png +$CONVERT ${ICON} -resize 88x88 $ASSET_DIR/Square44x44Logo.scale-200.png +$CONVERT ${ICON} -resize 24x24 $ASSET_DIR/Square44x44Logo.targetsize-24_altform-unplated.png +$CONVERT ${ICON} -resize 300x300 $ASSET_DIR/Square150x150Logo.scale-200.png +$CONVERT ${ICON} -resize 50x50 $ASSET_DIR/StoreLogo.png +$CONVERT ${ICON} -resize 1240x600 -background none -gravity center -extent 1240x600 $ASSET_DIR/SplashScreen.scale-200.png + + + diff --git a/source_assets/image/icon_gold.png b/source_assets/image/icon_gold.png new file mode 100644 index 0000000000..0cd33db631 Binary files /dev/null and b/source_assets/image/icon_gold.png differ diff --git a/source_assets/image/icon_regular.png b/source_assets/image/icon_regular.png new file mode 100644 index 0000000000..676223cd02 Binary files /dev/null and b/source_assets/image/icon_regular.png differ