Skip to content

Commit

Permalink
v2.8.4 Update ...
Browse files Browse the repository at this point in the history
added forgotten ToolTips for certain button actions
bumped version to v2.8.4 to reflect additional QoL changes
  • Loading branch information
SmokeyMcBong committed May 26, 2020
1 parent e7c0d7a commit fb06967
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MiToolz/App.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns:System="clr-namespace:System;assembly=mscorlib" x:Class="MiToolz.App"
StartupUri="MainWindow.xaml">
<Application.Resources>
<System:String x:Key="VersionNo" xml:space="preserve"> MiToolz v2.8.3 </System:String>
<System:String x:Key="VersionNo" xml:space="preserve"> MiToolz v2.8.4 </System:String>
<System:String x:Key="VersionDate" xml:space="preserve"> Build Date : 26-05-2020 </System:String>
<System:Double x:Key="StandardWindowHeight">290</System:Double>
<System:Double x:Key="StandardWindowWidth">394</System:Double>
Expand Down
6 changes: 3 additions & 3 deletions MiToolz/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<TextBlock x:Name="TextBlock_Stock" HorizontalAlignment="Left" TextWrapping="Wrap" Text="Stock Profile" VerticalAlignment="Top" Margin="29,32,0,0" Width="94" TextAlignment="Center"/>
<TextBlock x:Name="TextBlock_OC" HorizontalAlignment="Left" TextWrapping="Wrap" Text="OC Profile" VerticalAlignment="Top" Margin="139,32,0,0" Width="94" TextAlignment="Center"/>
<TextBlock x:Name="TextBlock_Sound" HorizontalAlignment="Left" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Margin="254,32,0,0" Width="94" TextAlignment="Center" Foreground="White"/>
<Button x:Name="Button_Expand" HorizontalAlignment="Left" VerticalAlignment="Top" Width="18" Height="19" Margin="357,2,0,0" Click="Button_Expand_Click" Cursor="Hand" Style="{StaticResource MyButton}">
<Button x:Name="Button_Expand" HorizontalAlignment="Left" VerticalAlignment="Top" Width="18" Height="19" Margin="357,2,0,0" Click="Button_Expand_Click" Cursor="Hand" ToolTip="Show Settings" Style="{StaticResource MyButton}">
<Button.Background>
<ImageBrush ImageSource="pack://siteoforigin:,,,/Resources/Image_MenuExpand.png">
</ImageBrush>
Expand Down Expand Up @@ -63,13 +63,13 @@
<TextBlock ToolTip="{DynamicResource VersionDate}" Text="{DynamicResource VersionNo}" HorizontalAlignment="Left" TextWrapping="Wrap" Width="189" TextAlignment="Center" Margin="-1,0,-1,2" Height="16" VerticalAlignment="Center" Cursor="Help"/>
</Border>
<Border BorderBrush="Black" BorderThickness="1" HorizontalAlignment="Left" Height="47" VerticalAlignment="Top" Width="1" Margin="477,92,0,0"/>
<Button x:Name="Button_SaveProfiles" HorizontalAlignment="Left" VerticalAlignment="Top" Width="22" Height="22" Margin="541,28,0,0" Click="Button_SaveProfiles_Click" Cursor="Hand" Style="{StaticResource MyButton}">
<Button x:Name="Button_SaveProfiles" HorizontalAlignment="Left" VerticalAlignment="Top" Width="22" Height="22" Margin="541,28,0,0" Click="Button_SaveProfiles_Click" Cursor="Hand" ToolTip="Save Settings" Style="{StaticResource MyButton}">
<Button.Background>
<ImageBrush ImageSource="pack://siteoforigin:,,,/Resources/Image_SaveIni.png"/>
</Button.Background>
<Border BorderBrush="Black" BorderThickness="1" CornerRadius="3" HorizontalAlignment="Left" Width="22" Height="22"/>
</Button>
<Button x:Name="Button_OpenMSIAB" HorizontalAlignment="Left" VerticalAlignment="Top" Width="22" Height="22" Margin="386,28,0,0" Click="Button_OpenMSIAB_Click" Cursor="Hand" Style="{StaticResource MyButton}">
<Button x:Name="Button_OpenMSIAB" HorizontalAlignment="Left" VerticalAlignment="Top" Width="22" Height="22" Margin="386,28,0,0" Click="Button_OpenMSIAB_Click" Cursor="Hand" ToolTip="Open MSIAfterburner" Style="{StaticResource MyButton}">
<Button.Background>
<ImageBrush ImageSource="pack://siteoforigin:,,,/Resources/Image_MSIab.png" Opacity="0.52"/>
</Button.Background>
Expand Down
2 changes: 2 additions & 0 deletions MiToolz/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -434,11 +434,13 @@ private void Button_Expand_Click(object sender, RoutedEventArgs e)
{
Button_Expand.Background = new ImageBrush(new BitmapImage(new Uri(ImageResourcePath + "Image_MenuRetract.png")));
Application.Current.MainWindow.Width = ExtendedWindowWidth;
Button_Expand.ToolTip = "Hide Settings";
}
else
{
Button_Expand.Background = new ImageBrush(new BitmapImage(new Uri(ImageResourcePath + "Image_MenuExpand.png")));
Application.Current.MainWindow.Width = StandardWindowWidth;
Button_Expand.ToolTip = "Show Settings";
}
}

Expand Down
2 changes: 1 addition & 1 deletion MiToolz/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("2.8.3.0")]
[assembly: AssemblyFileVersion("2.8.4.0")]

0 comments on commit fb06967

Please sign in to comment.