Skip to content

Commit

Permalink
Enable Preview Build
Browse files Browse the repository at this point in the history
  • Loading branch information
gus33000 committed Nov 26, 2023
1 parent 16d3f95 commit 8981fd0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion WPinternals/HelperClasses.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
using System.IO;
using System.IO.Compression;
using System.Linq;
using System.Net;
using System.Reflection;
using System.Text;
using System.Threading;
Expand Down Expand Up @@ -1940,7 +1941,8 @@ internal static void Upload(string FileName, byte[] Data)

internal static void Upload(string FileName, Stream FileStream)
{
Upload(new Uri(@"https://www.wpinternals.net/upload.php", UriKind.Absolute), "uploadedfile", FileName, FileStream);
//TODO: Fix
//Upload(new Uri(@"https://www.wpinternals.net/upload.php", UriKind.Absolute), "uploadedfile", FileName, FileStream);
}

private static void Upload(Uri Address, string InputName, string FileName, Stream FileStream)
Expand Down
2 changes: 1 addition & 1 deletion WPinternals/Views/About.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ DEALINGS IN THE SOFTWARE.
</Run.Text>
</Run>
<LineBreak />
<Run Text="Copyright © 2014 - 2021 by Heathcliff74" />
<Run Text="Copyright © 2014 - 2023 by Heathcliff74" />
<LineBreak />
<LineBreak />
<Run Text="Many thanks to the ATF Team and the Smart GSM Team for supplying JTAG and test equipment." />
Expand Down
1 change: 1 addition & 0 deletions WPinternals/WPinternals.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
<UseWPF>true</UseWPF>
<Deterministic>false</Deterministic>
<Platforms>AnyCPU;x86;x64;arm64</Platforms>
<DefineConstants>TRACE;PREVIEW</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
Expand Down
1 change: 1 addition & 0 deletions WPinternals/WPinternalsConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
using System.IO;
using System.Linq;
using System.Security.Cryptography;
using System.Windows;
using System.Xml.Serialization;

namespace WPinternals
Expand Down

0 comments on commit 8981fd0

Please sign in to comment.