Added build utility script, Fixed repository language, Updated MSI images

Update .gitattributes, BannerSide.pdn, and 10 more files...
This commit is contained in:
2022-10-28 17:54:50 +02:00
parent 74abcf5747
commit abc971e7a1
12 changed files with 41 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
*.rtf linguist-detectable=false
Binary file not shown.
Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.
Binary file not shown.

Before

Width:  |  Height:  |  Size: 126 B

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 181 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 302 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 93 B

After

Width:  |  Height:  |  Size: 83 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 93 B

After

Width:  |  Height:  |  Size: 83 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 90 B

After

Width:  |  Height:  |  Size: 83 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 90 B

After

Width:  |  Height:  |  Size: 83 B

+40
View File
@@ -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