Skip to content

Commit 42be35b

Browse files
Add GitHub and project links to AboutWindow and convert tool acknowledgements to hyperlinks
1 parent 68e66be commit 42be35b

1 file changed

Lines changed: 20 additions & 9 deletions

File tree

BatchConvertToCHD/AboutWindow.xaml

Lines changed: 20 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,16 @@
3636
<StackPanel>
3737
<TextBlock FontWeight="Bold" FontSize="14" Foreground="{StaticResource TextPrimaryBrush}" Text="Description" Margin="0,0,0,10" />
3838
<TextBlock x:Name="DescriptionTextBlock" TextWrapping="Wrap" Text="A utility for batch converting various disc image formats to CHD and for verifying the integrity of CHD files." Foreground="{StaticResource TextSecondaryBrush}" LineHeight="20" />
39+
<TextBlock Margin="0,10,0,0">
40+
<Hyperlink NavigateUri="https://github.com/drpetersonfernandes/BatchConvertToCHD" RequestNavigate="Hyperlink_RequestNavigate" Foreground="{StaticResource LinkTextBrush}" TextDecorations="Underline" ToolTip="Visit the project repository">
41+
https://github.com/drpetersonfernandes/BatchConvertToCHD
42+
</Hyperlink>
43+
</TextBlock>
44+
<TextBlock Margin="0,15,0,0">
45+
<Hyperlink NavigateUri="https://www.purelogiccode.com" RequestNavigate="Hyperlink_RequestNavigate" Foreground="{StaticResource LinkTextBrush}" TextDecorations="Underline" ToolTip="Visit the official website">
46+
https://www.purelogiccode.com
47+
</Hyperlink>
48+
</TextBlock>
3949
</StackPanel>
4050
</Border>
4151

@@ -44,20 +54,21 @@
4454
<StackPanel>
4555
<TextBlock FontWeight="Bold" FontSize="14" Foreground="{StaticResource TextPrimaryBrush}" Text="Acknowledgements" Margin="0,0,0,10" />
4656
<TextBlock Margin="0,0,0,8" TextWrapping="Wrap" Foreground="{StaticResource TextSecondaryBrush}">
47-
<Run Text="• Uses " /><Run Text="CHDMAN" FontWeight="Bold" Foreground="{StaticResource PrimaryAccentBrush}" /><Run Text=" from the MAME project for conversions and verifications." />
57+
<Run Text="• Uses " />
58+
<Hyperlink NavigateUri="https://github.com/mamedev/mame/" RequestNavigate="Hyperlink_RequestNavigate" Foreground="{StaticResource PrimaryAccentBrush}" FontWeight="Bold" TextDecorations="None">CHDMAN</Hyperlink>
59+
<Run Text=" from the MAME project for conversions and verifications." />
4860
</TextBlock>
4961
<TextBlock Margin="0,0,0,8" TextWrapping="Wrap" Foreground="{StaticResource TextSecondaryBrush}">
50-
<Run Text="• Uses " /><Run Text="maxcso.exe" FontWeight="Bold" Foreground="{StaticResource PrimaryAccentBrush}" /><Run Text=" for .cso decompression during conversion." />
62+
<Run Text="• Uses " />
63+
<Hyperlink NavigateUri="https://github.com/unknownbrackets/maxcso" RequestNavigate="Hyperlink_RequestNavigate" Foreground="{StaticResource PrimaryAccentBrush}" FontWeight="Bold" TextDecorations="None">maxcso</Hyperlink>
64+
<Run Text=" for .cso decompression during conversion." />
5165
</TextBlock>
5266
<TextBlock Margin="0,0,0,8" TextWrapping="Wrap" Foreground="{StaticResource TextSecondaryBrush}">
53-
<Run Text="• Uses " /><Run Text="psxpackager.exe" FontWeight="Bold" Foreground="{StaticResource PrimaryAccentBrush}" /><Run Text=" for PlayStation .pkg and .pbp file handling." />
54-
</TextBlock>
55-
56-
<TextBlock Margin="0,15,0,0">
57-
<Hyperlink NavigateUri="https://www.purelogiccode.com" RequestNavigate="Hyperlink_RequestNavigate" Foreground="{StaticResource LinkTextBrush}" TextDecorations="Underline" ToolTip="Visit the official website">
58-
https://www.purelogiccode.com
59-
</Hyperlink>
67+
<Run Text="• Uses " />
68+
<Hyperlink NavigateUri="https://github.com/RupertAvery/PSXPackager" RequestNavigate="Hyperlink_RequestNavigate" Foreground="{StaticResource PrimaryAccentBrush}" FontWeight="Bold" TextDecorations="None">psxpackager</Hyperlink>
69+
<Run Text=" for PlayStation .pkg and .pbp file handling." />
6070
</TextBlock>
71+
6172
</StackPanel>
6273
</Border>
6374

0 commit comments

Comments
 (0)