Skip to content

Commit

Permalink
📦 Preparation for update.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlizerUncaged committed Nov 22, 2021
1 parent 3bbef81 commit 57d0356
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Mr. Krabs/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@
<DockPanel DockPanel.Dock="Top" VerticalAlignment="Top" Height="35" Margin="5,5,5,0">
<Image x:Name="image" Source="UI/Images/Large/Logo.png" HorizontalAlignment="Left" Margin="5,7,0,7" Width="0"/>
<Image Source="/UI/Images/Large/Title.png" HorizontalAlignment="Left" Margin="5,7,0,7"/>
<TextBlock FontFamily="{materialDesign:MaterialDesignFont}" x:Name="Version" Text="v1.1" Foreground="White" VerticalAlignment="Center" Margin="10,0,0,0"></TextBlock>
<TextBlock FontFamily="{materialDesign:MaterialDesignFont}" x:Name="Version" Text="version" Foreground="White" VerticalAlignment="Center" Margin="10,0,0,0"></TextBlock>

<materialDesign:PackIcon DockPanel.Dock="Right" MouseDown="CloseButtonMouseDown" x:Name="CloseButton" Kind="Close" VerticalAlignment="Stretch" HorizontalAlignment="Right" Width="25" Height="25" Margin="0,0,5,0" Cursor="Hand" Foreground="White" Background="#00000000" />
<materialDesign:PackIcon x:Name="MinimizeButton" DockPanel.Dock="Right" MouseDown="MinimizeButtonMouseDown" Kind="WindowMinimize" VerticalAlignment="Stretch" HorizontalAlignment="Right" Width="25" Height="20" Margin="0,8.5,5,6.5" Cursor="Hand" Foreground="White" Background="#00000000" />
Expand Down
1 change: 1 addition & 0 deletions Mr. Krabs/Mr. Krabs.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@
<Compile Include="Utilities\OS Functions.cs" />
<Compile Include="Utilities\Rand.cs" />
<Compile Include="Utilities\Quick TCP.cs" />
<Compile Include="Utilities\String Utilities.cs" />
<Compile Include="Utilities\UI.cs" />
<Page Include="MainWindow.xaml">
<Generator>MSBuild:Compile</Generator>
Expand Down
14 changes: 14 additions & 0 deletions Mr. Krabs/Utilities/String Utilities.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Mr.Krabs.Utilities {
public static class String_Utilities {
// null terminates a string
public static string NullTerminate(this string str) {
return str + '\0';
}
}
}

0 comments on commit 57d0356

Please sign in to comment.