Skip to content

Commit

Permalink
Version 8.7.0.2411-pre1
Browse files Browse the repository at this point in the history
  • Loading branch information
lpeyr committed Nov 17, 2024
1 parent 35ac52c commit 520d56e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions InternetTest/InternetTest/Classes/Global.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ public static class Global
#if NIGHTLY
private static DateTime Date => System.IO.File.GetLastWriteTime(System.Reflection.Assembly.GetEntryAssembly().Location);

public static string Version => $"8.6.1.2409-nightly{Date:yyMM.dd@HHmm}";
public static string Version => $"8.7.0.2411-nightly{Date:yyMM.dd@HHmm}";

#else
public static string Version => "8.6.1.2409";
public static string Version => "8.7.0.2411-pre1";
#endif
public static string LastVersionLink => "https://raw.githubusercontent.com/Leo-Corporation/LeoCorp-Docs/master/Liens/Update%20System/InternetTest/7.0/Version.txt";

Expand Down Expand Up @@ -292,7 +292,7 @@ public static bool IsUrlValid(string url)
&& (uriResult.Scheme == Uri.UriSchemeHttp || uriResult.Scheme == Uri.UriSchemeHttps);
}

public async static Task<IPInfo?> GetIPInfoAsync(string ip)
public static async Task<IPInfo?> GetIPInfoAsync(string ip)
{
try
{
Expand Down Expand Up @@ -655,7 +655,7 @@ public static async Task<DnsCacheInfo[]> GetDnsCache()
public static async Task<string> RunPowerShellCommandAsync(string psCommand)
{
// Create a new process to run PowerShell
ProcessStartInfo processInfo = new ProcessStartInfo
ProcessStartInfo processInfo = new()
{
FileName = "powershell.exe",
Arguments = $"-Command \"{psCommand}\"",
Expand Down
2 changes: 1 addition & 1 deletion InternetTest/InternetTest/InternetTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<UseWindowsForms>True</UseWindowsForms>
<Version>8.6.1.2409</Version>
<Version>8.7.0.2411-pre1</Version>
<Copyright>© 2024</Copyright>
<Company>Léo Corporation</Company>
<Description>Taking you to another level. InternetTest can locate IP addresses, send ping request, recover your WiFi passwords and more!</Description>
Expand Down

0 comments on commit 520d56e

Please sign in to comment.