diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..23e94ff --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.rtf linguist-detectable=false diff --git a/NibblePoker.Packaging.ListComPort/BannerSide.pdn b/NibblePoker.Packaging.ListComPort/BannerSide.pdn index ac65250..ae50851 100644 Binary files a/NibblePoker.Packaging.ListComPort/BannerSide.pdn and b/NibblePoker.Packaging.ListComPort/BannerSide.pdn differ diff --git a/NibblePoker.Packaging.ListComPort/BannerSide.png b/NibblePoker.Packaging.ListComPort/BannerSide.png index 26fb6e2..616edf7 100644 Binary files a/NibblePoker.Packaging.ListComPort/BannerSide.png and b/NibblePoker.Packaging.ListComPort/BannerSide.png differ diff --git a/NibblePoker.Packaging.ListComPort/WixUIBannerBmp.pdn b/NibblePoker.Packaging.ListComPort/WixUIBannerBmp.pdn new file mode 100644 index 0000000..53321b0 Binary files /dev/null and b/NibblePoker.Packaging.ListComPort/WixUIBannerBmp.pdn differ diff --git a/NibblePoker.Packaging.ListComPort/WixUIBannerBmp.png b/NibblePoker.Packaging.ListComPort/WixUIBannerBmp.png index 53ca5e3..a215674 100644 Binary files a/NibblePoker.Packaging.ListComPort/WixUIBannerBmp.png and b/NibblePoker.Packaging.ListComPort/WixUIBannerBmp.png differ diff --git a/NibblePoker.Packaging.ListComPort/WixUIDialogBmp.png b/NibblePoker.Packaging.ListComPort/WixUIDialogBmp.png deleted file mode 100644 index d2cd5c3..0000000 Binary files a/NibblePoker.Packaging.ListComPort/WixUIDialogBmp.png and /dev/null differ diff --git a/NibblePoker.Packaging.ListComPort/WixUIDialogBmp_thin.png b/NibblePoker.Packaging.ListComPort/WixUIDialogBmp_thin.png deleted file mode 100644 index d0e455f..0000000 Binary files a/NibblePoker.Packaging.ListComPort/WixUIDialogBmp_thin.png and /dev/null differ diff --git a/NibblePoker.Packaging.ListComPort/WixUIExclamationIco.png b/NibblePoker.Packaging.ListComPort/WixUIExclamationIco.png index f364abc..5d8ffa8 100644 Binary files a/NibblePoker.Packaging.ListComPort/WixUIExclamationIco.png and b/NibblePoker.Packaging.ListComPort/WixUIExclamationIco.png differ diff --git a/NibblePoker.Packaging.ListComPort/WixUIInfoIco.png b/NibblePoker.Packaging.ListComPort/WixUIInfoIco.png index b9c1391..5d8ffa8 100644 Binary files a/NibblePoker.Packaging.ListComPort/WixUIInfoIco.png and b/NibblePoker.Packaging.ListComPort/WixUIInfoIco.png differ diff --git a/NibblePoker.Packaging.ListComPort/WixUINewIco.png b/NibblePoker.Packaging.ListComPort/WixUINewIco.png index be83ed3..8529fa8 100644 Binary files a/NibblePoker.Packaging.ListComPort/WixUINewIco.png and b/NibblePoker.Packaging.ListComPort/WixUINewIco.png differ diff --git a/NibblePoker.Packaging.ListComPort/WixUIUpIco.png b/NibblePoker.Packaging.ListComPort/WixUIUpIco.png index 2f587f4..8529fa8 100644 Binary files a/NibblePoker.Packaging.ListComPort/WixUIUpIco.png and b/NibblePoker.Packaging.ListComPort/WixUIUpIco.png differ diff --git a/verify.bat b/verify.bat new file mode 100644 index 0000000..0583926 --- /dev/null +++ b/verify.bat @@ -0,0 +1,40 @@ +@echo off + +:: Defining the %ESC% variable for later use. +for /F "tokens=1,2 delims=#" %%a in ('"prompt #$H#$E# & echo on & for %%b in (1) do rem"') do ( + set ESC=%%b +) + +echo Checking %%PATH%% for required programs... + +where /q dotnet +if ERRORLEVEL 1 ( + echo. * .NET SDK/Runtime: %ESC%[31mNOT FOUND !%ESC%[0m +) else ( + echo. * .NET SDK/Runtime: %ESC%[32mFOUND !%ESC%[0m +) + +where /q makeappx +if ERRORLEVEL 1 ( + echo. * Microsoft MakeAppx: %ESC%[31mNOT FOUND !%ESC%[0m +) else ( + echo. * Microsoft MakeAppx: %ESC%[32mFOUND !%ESC%[0m +) + +where /q candle +if ERRORLEVEL 1 ( + echo. * Wix Toolset Candle: %ESC%[31mNOT FOUND !%ESC%[0m +) else ( + echo. * Wix Toolset Candle: %ESC%[32mFOUND !%ESC%[0m +) + +where /q light +if ERRORLEVEL 1 ( + echo. * Wix Toolset Light: %ESC%[31mNOT FOUND !%ESC%[0m +) else ( + echo. * Wix Toolset Light: %ESC%[32mFOUND !%ESC%[0m +) + +echo. + +pause