Skip to content

Commit

Permalink
Update version and adjust GitHubChanges TextBlock layout
Browse files Browse the repository at this point in the history
Updated version number in MagicChatbox.csproj from 0.9.052 to 0.9.053.
Moved GitHubChanges TextBlock into a StackPanel with VerticalAlignment set to Bottom in MainWindow.xaml.
Added Margin and RenderOptions.BitmapScalingMode to enhance UI appearance.
  • Loading branch information
BoiHanny committed Nov 16, 2024
1 parent bfa601d commit 17c3c58
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 21 deletions.
2 changes: 1 addition & 1 deletion vrcosc-magicchatbox/MagicChatbox.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>WinExe</OutputType>
<Version>0.9.052</Version>
<Version>0.9.053</Version>
<TargetFramework>net8.0-windows10.0.22000.0</TargetFramework>
<RootNamespace>vrcosc_magicchatbox</RootNamespace>
<Nullable>enable</Nullable>
Expand Down
43 changes: 23 additions & 20 deletions vrcosc-magicchatbox/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -7573,27 +7573,30 @@
FontSize="12"
Foreground="#FF7D7397"
Text="{Binding UpdateStatustxt}" />
<TextBlock
x:Name="GitHubChanges"
Width="auto"
HorizontalAlignment="Center"
Cursor="Hand"
FontFamily="Albert Sans Thin"
FontSize="8.5"
Foreground="#26A1FA"
MouseUp="GitHubChanges_MouseUp"
Text="View changes on GitHub"
TextDecorations="Underline"
Visibility="{Binding CanUpdateLabel, Converter={StaticResource InverseBoolToHiddenConverter}, UpdateSourceTrigger=PropertyChanged}">
<TextBlock.Effect>
<DropShadowEffect
BlurRadius="10"
Opacity="0.3"
ShadowDepth="0"
Color="#251153" />
</TextBlock.Effect>
</TextBlock>

<StackPanel VerticalAlignment="Bottom">
<TextBlock
x:Name="GitHubChanges"
Width="auto"
Margin="0,0,0,10"
HorizontalAlignment="Center"
Cursor="Hand"
FontFamily="Albert Sans Thin"
FontSize="8.5"
Foreground="#26A1FA"
RenderOptions.BitmapScalingMode="NearestNeighbor"
MouseUp="GitHubChanges_MouseUp"
Text="View changes on GitHub"
TextDecorations="Underline"
Visibility="{Binding CanUpdateLabel, Converter={StaticResource InverseBoolToHiddenConverter}, UpdateSourceTrigger=PropertyChanged}">
<TextBlock.Effect>
<DropShadowEffect
BlurRadius="10"
Opacity="0.3"
ShadowDepth="0"
Color="#251153" />
</TextBlock.Effect>
</TextBlock>
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal">
<Button
x:Name="CheckUpdateBtnn"
Expand Down

0 comments on commit 17c3c58

Please sign in to comment.