Skip to content

Commit

Permalink
Readying for release v0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
mdnpascual committed Feb 27, 2021
1 parent 6a2a7a0 commit eff7c8d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
Binary file added Match3Solver/Icon.ico
Binary file not shown.
Binary file added Match3Solver/Icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion Match3Solver/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Match3Solver"
mc:Ignorable="d"
Title="MainWindow" Height="471.778" Width="1008.872">
Title="Huniepop 2 Solver" Height="471.778" Width="1008.872" Icon="Icon.png">
<Window.Resources>
<local:CutoffConverter x:Key="ValueConverter" Cutoff="00" />
<!--STYLES-->
Expand Down
4 changes: 2 additions & 2 deletions Match3Solver/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public void launcHuniePop2Listener()
Dispatcher.BeginInvoke((Action)(() =>
{
statusText.Foreground = new SolidColorBrush(Colors.IndianRed);
statusText.Text = "Waiting for HuniePop2 to Open.";
statusText.Text = "Waiting for HuniePop 2 to Open.";
}));
}

Expand All @@ -145,7 +145,7 @@ private static void initCrashReporter()
};
byte[] data = Convert.FromBase64String("enFhYy56cWh1K3puZ3B1M2ZieWlyZXBlbmZ1ZXJjYmVnQHR6bnZ5LnBieg==");
string decodedString = Encoding.UTF8.GetString(data);
byte[] data2 = Convert.FromBase64String("MnI1czM3NjctMG9xMC00NTFxLW4zcXEtcG9wcm44MzkwOHM5");
byte[] data2 = Convert.FromBase64String("cjBwOW9vcHEtNzVzcC00cHJxLW8yNjktbnIzMTQ5MDc0OTQy");
string decodedString2 = Encoding.UTF8.GetString(data2);
_reportCrash = new ReportCrash(String.Join("", decodedString.Select(x => char.IsLetter(x) ? (x >= 65 && x <= 77) || (x >= 97 && x <= 109) ? (char)(x + 13) : (char)(x - 13) : x)))
{
Expand Down
5 changes: 5 additions & 0 deletions Match3Solver/Match3Solver.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@
<PropertyGroup>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>Icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="CrashReporter.NET, Version=1.6.0.0, Culture=neutral, PublicKeyToken=7828e0fd88cab698, processorArchitecture=MSIL">
<HintPath>..\packages\CrashReporter.NET.Official.1.6.0\lib\net40\CrashReporter.NET.dll</HintPath>
Expand Down Expand Up @@ -224,6 +227,8 @@
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<Resource Include="Icon.ico" />
<Resource Include="Icon.png" />
<Resource Include="Resources\bHeartHeadH.png" />
<Resource Include="Resources\bHeartHeadV.png" />
<Resource Include="Resources\bHeartTailH.png" />
Expand Down

0 comments on commit eff7c8d

Please sign in to comment.