MSIX: use custom icons for the command-line programs

This commit is contained in:
Moritz Bunkus 2021-04-08 21:35:30 +02:00
parent ab4caebe3d
commit 2d6df42bc0
No known key found for this signature in database
GPG Key ID: 74AF00ADF2E32C85
8 changed files with 17 additions and 10 deletions

View File

@ -52,3 +52,10 @@ done
for file in *.scale-100.png; do
cp ${file} ${file/.scale-100/}
done
dir=../../../../share/icons/windows/msix
for program in mkvmerge mkvinfo mkvextract mkvpropedit bluray_dump; do
for size in 44 150; do
convert ${dir}/${program}.xcf -background transparent -layers flatten -size ${size}x${size} Square${size}x${size}Logo-${program}.png
done
done

View File

@ -93,8 +93,8 @@
DisplayName="MKV Multiplexer"
Description="Creating Matroska files"
BackgroundColor="transparent"
Square150x150Logo="Assets\Square150x150Logo.png"
Square44x44Logo="Assets\Square44x44Logo.png">
Square150x150Logo="Assets\Square150x150Logo-mkvmerge.png"
Square44x44Logo="Assets\Square44x44Logo-mkvmerge.png">
</uap3:VisualElements>
<Extensions>
<uap5:Extension Category="windows.appExecutionAlias" EntryPoint="Windows.FullTrustApplication" Executable="mkvtoolnix\mkvmerge.exe">
@ -115,8 +115,8 @@
DisplayName="MKV Info Tool"
Description="Inspect the structure of Matroska files"
BackgroundColor="transparent"
Square150x150Logo="Assets\Square150x150Logo.png"
Square44x44Logo="Assets\Square44x44Logo.png">
Square150x150Logo="Assets\Square150x150Logo-mkvinfo.png"
Square44x44Logo="Assets\Square44x44Logo-mkvinfo.png">
</uap3:VisualElements>
<Extensions>
<uap5:Extension Category="windows.appExecutionAlias" EntryPoint="Windows.FullTrustApplication" Executable="mkvtoolnix\mkvinfo.exe">
@ -137,8 +137,8 @@
DisplayName="MKV Extractor"
Description="Extract data from Matroska files"
BackgroundColor="transparent"
Square150x150Logo="Assets\Square150x150Logo.png"
Square44x44Logo="Assets\Square44x44Logo.png">
Square150x150Logo="Assets\Square150x150Logo-mkvextract.png"
Square44x44Logo="Assets\Square44x44Logo-mkvextract.png">
</uap3:VisualElements>
<Extensions>
<uap5:Extension Category="windows.appExecutionAlias" EntryPoint="Windows.FullTrustApplication" Executable="mkvtoolnix\mkvextract.exe">
@ -159,8 +159,8 @@
DisplayName="MKV Property Editor"
Description="Modify elements of Matroska files"
BackgroundColor="transparent"
Square150x150Logo="Assets\Square150x150Logo.png"
Square44x44Logo="Assets\Square44x44Logo.png">
Square150x150Logo="Assets\Square150x150Logo-mkvpropedit.png"
Square44x44Logo="Assets\Square44x44Logo-mkvpropedit.png">
</uap3:VisualElements>
<Extensions>
<uap5:Extension Category="windows.appExecutionAlias" EntryPoint="Windows.FullTrustApplication" Executable="mkvtoolnix\mkvpropedit.exe">
@ -181,8 +181,8 @@
DisplayName="Blu-ray data dumper"
Description="Dump data structures from various files on Blu-ray discs"
BackgroundColor="transparent"
Square150x150Logo="Assets\Square150x150Logo.png"
Square44x44Logo="Assets\Square44x44Logo.png">
Square150x150Logo="Assets\Square150x150Logo-bluray_dump.png"
Square44x44Logo="Assets\Square44x44Logo-bluray_dump.png">
</uap3:VisualElements>
<Extensions>
<uap5:Extension Category="windows.appExecutionAlias" EntryPoint="Windows.FullTrustApplication" Executable="mkvtoolnix\tools\bluray_dump.exe">

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.