Skip to content

Commit

Permalink
About contributions (#241)
Browse files Browse the repository at this point in the history
#216  fixed in this commit
  • Loading branch information
IsaacMorris1980 authored Nov 15, 2023
1 parent eeb5004 commit 1ae1534
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
24 changes: 18 additions & 6 deletions appLauncher/Core/Pages/AboutPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,24 @@
<AppBarButton Background="Transparent" Foreground="{x:Bind helper:SettingsHelper.totalAppSettings.AppForegroundColorBrush}" Margin="10,20,10,0" x:Name="SettingsPage" Icon="Setting" Tapped="SettingsPage_Tapped" RelativePanel.AlignRightWithPanel="True" />
</RelativePanel>
<Grid Grid.Row="1">
<StackPanel Orientation="Vertical" Background="Transparent" >
<HyperlinkButton Background="Transparent" BorderThickness="0" Foreground="{x:Bind helper:SettingsHelper.totalAppSettings.AppForegroundColorBrush}" HorizontalAlignment="Center" Content="Original Maintainer: Colin Kiama" NavigateUri="https://github.com/colinkiama" />
<HyperlinkButton Background="Transparent" Foreground="{x:Bind helper:SettingsHelper.totalAppSettings.AppForegroundColorBrush}" BorderThickness="0" HorizontalAlignment="Center" Content="Current Maintainer: Isaac Morris" NavigateUri="https://github.com/IsaacMorris1980" />
<HyperlinkButton Background="Transparent" Foreground="{x:Bind helper:SettingsHelper.totalAppSettings.AppForegroundColorBrush}" HorizontalAlignment="Center" Content="Source" NavigateUri="https://github.com/IsaacMorris1980/appLauncher/tree/Testing" />
<HyperlinkButton Background="Transparent" Foreground="{x:Bind helper:SettingsHelper.totalAppSettings.AppForegroundColorBrush}" HorizontalAlignment="Center" Content="Report Issue" NavigateUri="https://github.com/IsaacMorris1980/appLauncher/issues" />
<TextBox BorderThickness="0" Background="Transparent" Foreground="{x:Bind helper:SettingsHelper.totalAppSettings.AppForegroundColorBrush}" HorizontalAlignment="Center" IsReadOnly="True" Text="{x:Bind appversion}" />
<StackPanel Orientation="Vertical" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<ScrollViewer Height="350" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<RelativePanel VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Background="Transparent" >
<TextBlock Text="Contributors and Info"
FontSize="24"
FontWeight="Bold"
Margin="16,20,0,16"
Name="titleTextBlock"
Foreground="{x:Bind helper:SettingsHelper.totalAppSettings.AppForegroundColorBrush}"
RelativePanel.AlignHorizontalCenterWithPanel="True"/>
<HyperlinkButton x:Name="origMaint" Background="Transparent" RelativePanel.AlignHorizontalCenterWithPanel="True" RelativePanel.Below="titleTextBlock" BorderThickness="0" Foreground="{x:Bind helper:SettingsHelper.totalAppSettings.AppForegroundColorBrush}" HorizontalAlignment="Center" Content="Original Maintainer: Colin Kiama" NavigateUri="https://github.com/colinkiama" />
<HyperlinkButton x:Name="currMaint" RelativePanel.AlignHorizontalCenterWithPanel="True" RelativePanel.Below="origMaint" Background="Transparent" Foreground="{x:Bind helper:SettingsHelper.totalAppSettings.AppForegroundColorBrush}" BorderThickness="0" HorizontalAlignment="Center" Content="Current Maintainer: Isaac Morris" NavigateUri="https://github.com/IsaacMorris1980" />
<HyperlinkButton x:Name="cont1" RelativePanel.AlignHorizontalCenterWithPanel="True" RelativePanel.Below="currMaint" Background="Transparent" Foreground="{x:Bind helper:SettingsHelper.totalAppSettings.AppForegroundColorBrush}" BorderThickness="0" HorizontalAlignment="Center" Content="Contributor: Bruno Alexander Cremonese de Morais" NavigateUri="https://github.com/brucremo" />
<HyperlinkButton x:Name="issues" Background="Transparent" RelativePanel.AlignHorizontalCenterWithPanel="True" RelativePanel.Below="cont1" Foreground="{x:Bind helper:SettingsHelper.totalAppSettings.AppForegroundColorBrush}" HorizontalAlignment="Center" Content="Report Issue" NavigateUri="https://github.com/IsaacMorris1980/appLauncher/issues" />
<TextBox RelativePanel.AlignHorizontalCenterWithPanel="True" RelativePanel.Below="issues" BorderThickness="0" Background="Transparent" Foreground="{x:Bind helper:SettingsHelper.totalAppSettings.AppForegroundColorBrush}" HorizontalAlignment="Center" IsReadOnly="True" Text="{x:Bind appversion}" />

</RelativePanel>
</ScrollViewer>
</StackPanel>
</Grid>
</Grid>
Expand Down
2 changes: 1 addition & 1 deletion appLauncher/Package.appxmanifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:iot="http://schemas.microsoft.com/appx/manifest/iot/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" IgnorableNamespaces="uap mp iot rescap">
<Identity Name="c7a9e123-47c7-47c2-9040-99dcd4ac7351" Publisher="CN=morri" Version="3.0.1.0" />
<Identity Name="c7a9e123-47c7-47c2-9040-99dcd4ac7351" Publisher="CN=morri" Version="3.0.3.0" />
<mp:PhoneIdentity PhoneProductId="c7a9e123-47c7-47c2-9040-99dcd4ac7351" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>appLauncher</DisplayName>
Expand Down

0 comments on commit 1ae1534

Please sign in to comment.