Skip to content

Commit 779f12f

Browse files
committed
Prepare environment for Version 9.0
1 parent 0ae243b commit 779f12f

File tree

130 files changed

+4891
-4718
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+4891
-4718
lines changed

InternetTest 7/InternetTest.sln

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.2.32630.192
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "InternetTest", "InternetTest\InternetTest.csproj", "{07323B6A-F0CA-4D88-B4E3-258DC99FB1DC}"
7+
EndProject
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Xalyus Updater", "Xalyus Updater\Xalyus Updater.csproj", "{67F27363-BD3B-41BC-8F9E-813CF86C216B}"
9+
EndProject
10+
Global
11+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
12+
Debug|Any CPU = Debug|Any CPU
13+
Release|Any CPU = Release|Any CPU
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{07323B6A-F0CA-4D88-B4E3-258DC99FB1DC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17+
{07323B6A-F0CA-4D88-B4E3-258DC99FB1DC}.Debug|Any CPU.Build.0 = Debug|Any CPU
18+
{07323B6A-F0CA-4D88-B4E3-258DC99FB1DC}.Release|Any CPU.ActiveCfg = Release|Any CPU
19+
{07323B6A-F0CA-4D88-B4E3-258DC99FB1DC}.Release|Any CPU.Build.0 = Release|Any CPU
20+
{67F27363-BD3B-41BC-8F9E-813CF86C216B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{67F27363-BD3B-41BC-8F9E-813CF86C216B}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{67F27363-BD3B-41BC-8F9E-813CF86C216B}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{67F27363-BD3B-41BC-8F9E-813CF86C216B}.Release|Any CPU.Build.0 = Release|Any CPU
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
GlobalSection(ExtensibilityGlobals) = postSolution
29+
SolutionGuid = {A3DDC473-170F-4AC4-8776-79699EA1D559}
30+
EndGlobalSection
31+
EndGlobal

InternetTest 7/InternetTest/App.xaml

Lines changed: 1830 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
/*
2+
MIT License
3+
4+
Copyright (c) Léo Corporation
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a copy
7+
of this software and associated documentation files (the "Software"), to deal
8+
in the Software without restriction, including without limitation the rights
9+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
copies of the Software, and to permit persons to whom the Software is
11+
furnished to do so, subject to the following conditions:
12+
13+
The above copyright notice and this permission notice shall be included in all
14+
copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
SOFTWARE.
23+
*/
24+
using InternetTest.Classes;
25+
using InternetTest.Windows;
26+
using Synethia;
27+
using System.Windows;
28+
29+
namespace InternetTest;
30+
/// <summary>
31+
/// Interaction logic for App.xaml
32+
/// </summary>
33+
public partial class App : Application
34+
{
35+
private void Application_Startup(object sender, StartupEventArgs e)
36+
{
37+
try
38+
{
39+
Global.ChangeTheme();
40+
Global.ChangeLanguage();
41+
42+
Global.HomePage = new();
43+
Global.HistoryPage = new();
44+
Global.SettingsPage = new();
45+
Global.DownDetectorPage = new();
46+
Global.LocateIpPage = new();
47+
Global.PingPage = new();
48+
Global.IpConfigPage = new();
49+
Global.WiFiPasswordsPage = new();
50+
Global.DnsPage = new();
51+
Global.TraceroutePage = new();
52+
Global.WiFiNetworksPage = new();
53+
Global.RequestsPage = new();
54+
55+
if (!Global.Settings.IsFirstRun)
56+
{
57+
new MainWindow().Show();
58+
}
59+
else
60+
{
61+
new FirstRunWindow().Show();
62+
}
63+
}
64+
catch (System.Exception ex)
65+
{
66+
MessageBox.Show(ex.Message);
67+
}
68+
}
69+
70+
private void Application_Exit(object sender, ExitEventArgs e)
71+
{
72+
SynethiaManager.Save(Global.SynethiaConfig, Global.SynethiaPath);
73+
HistoryManager.Save(Global.History);
74+
SettingsManager.Save();
75+
}
76+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.

InternetTest/InternetTest/Classes/DownDetectorTestResult.cs renamed to InternetTest 7/InternetTest/Classes/DownDetectorTestResult.cs

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)