diff --git a/.idea/.idea.DiscImageChef/.idea/contentModel.xml b/.idea/.idea.DiscImageChef/.idea/contentModel.xml
index 80a5f44a8..08004ca4e 100644
--- a/.idea/.idea.DiscImageChef/.idea/contentModel.xml
+++ b/.idea/.idea.DiscImageChef/.idea/contentModel.xml
@@ -6,7 +6,7 @@
-
+
@@ -347,6 +347,8 @@
+
+
@@ -1923,6 +1925,12 @@
+
+
+
+
+
+
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 6d55f1d1f..81047e9bf 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -99,7 +99,7 @@ datetime conversion, hexadecimal printing, string manipulation and byte swapping
* [DiscImageChef.Partitions](https://github.com/claunia/DiscImageChef/tree/master/DiscImageChef.Partitions) -
This module contains code for reading partition schemes.
* [DiscImageChef.Server](https://github.com/claunia/DiscImageChef/tree/master/DiscImageChef.Server) -
-This module contains the server-side code that's running at http://discimagechef.claunia.com
+This module contains the server-side code that's running at https://www.discimagechef.app
* [DiscImageChef.Settings](https://github.com/claunia/DiscImageChef/tree/master/DiscImageChef.Settings) -
This module contains code for handling DiscImageChef settings.
* [DiscImageChef.Tests](https://github.com/claunia/DiscImageChef/tree/master/DiscImageChef.Tests) -
diff --git a/DiscImageChef.Core/Remote.cs b/DiscImageChef.Core/Remote.cs
index 9104d505f..44f312f78 100644
--- a/DiscImageChef.Core/Remote.cs
+++ b/DiscImageChef.Core/Remote.cs
@@ -77,7 +77,7 @@ namespace DiscImageChef.Core
NullValueHandling = NullValueHandling.Ignore
});
byte[] jsonBytes = Encoding.UTF8.GetBytes(json);
- WebRequest request = WebRequest.Create("http://discimagechef.claunia.com/api/uploadreportv2");
+ WebRequest request = WebRequest.Create("https://www.discimagechef.app/api/uploadreportv2");
((HttpWebRequest)request).UserAgent = $"DiscImageChef {typeof(Version).Assembly.GetName().Version}";
request.Method = "POST";
request.ContentLength = jsonBytes.Length;
@@ -151,7 +151,7 @@ namespace DiscImageChef.Core
DateTime updateStart = DateTime.UtcNow;
WebRequest request =
- WebRequest.Create($"http://discimagechef.claunia.com/api/update?timestamp={lastUpdate}");
+ WebRequest.Create($"https://www.discimagechef.app/api/update?timestamp={lastUpdate}");
((HttpWebRequest)request).UserAgent = $"DiscImageChef {typeof(Version).Assembly.GetName().Version}";
request.Method = "GET";
request.ContentType = "application/json";
diff --git a/DiscImageChef.Core/Statistics.cs b/DiscImageChef.Core/Statistics.cs
index b5b2abcd8..56c930f2d 100644
--- a/DiscImageChef.Core/Statistics.cs
+++ b/DiscImageChef.Core/Statistics.cs
@@ -627,7 +627,7 @@ namespace DiscImageChef.Core
NullValueHandling = NullValueHandling.Ignore
});
byte[] jsonBytes = Encoding.UTF8.GetBytes(json);
- WebRequest request = WebRequest.Create("http://discimagechef.claunia.com/api/uploadstatsv2");
+ WebRequest request = WebRequest.Create("https://www.discimagechef.app/api/uploadstatsv2");
((HttpWebRequest)request).UserAgent =
$"DiscImageChef {typeof(Version).Assembly.GetName().Version}";
request.Method = "POST";
@@ -835,7 +835,7 @@ namespace DiscImageChef.Core
xs.Deserialize(fs); // Just to test validity of stats file
fs.Seek(0, SeekOrigin.Begin);
- WebRequest request = WebRequest.Create("http://discimagechef.claunia.com/api/uploadstats");
+ WebRequest request = WebRequest.Create("https://www.discimagechef.app/api/uploadstats");
((HttpWebRequest)request).UserAgent =
$"DiscImageChef {typeof(CommonTypes.Interop.Version).Assembly.GetName().Version}";
request.Method = "POST";
diff --git a/DiscImageChef.Gui/Dialogs/dlgSettings.xeto.cs b/DiscImageChef.Gui/Dialogs/dlgSettings.xeto.cs
index 85beaae6b..8cd43b70b 100644
--- a/DiscImageChef.Gui/Dialogs/dlgSettings.xeto.cs
+++ b/DiscImageChef.Gui/Dialogs/dlgSettings.xeto.cs
@@ -75,7 +75,7 @@ namespace DiscImageChef.Gui.Dialogs
lblShareReports.Text =
"Sharing a report with us will send it to our server, that's in the european union territory, where it\n" +
"will be manually analized by an european union citizen to remove any trace of personal identification\n" +
- "from it. Once that is done, it will be shared in our stats website, http://discimagechef.claunia.com\n" +
+ "from it. Once that is done, it will be shared in our stats website, https://www.discimagechef.app\n" +
"These report will be used to improve DiscImageChef support, and in some cases, to provide emulation of the\n" +
"devices to other open-source projects. In any case, no information linking the report to you will be stored.";
chkShareReports.Text = "Do you want to share your device reports with us? (Y/N): ";
diff --git a/DiscImageChef.Server/docs/README.md b/DiscImageChef.Server/docs/README.md
index fcbb9d598..e3d58cbbf 100644
--- a/DiscImageChef.Server/docs/README.md
+++ b/DiscImageChef.Server/docs/README.md
@@ -9,7 +9,7 @@ Copyright © 2011-2018 Natalia Portillo
[](https://ci.appveyor.com/project/claunia/discimagechef)
[](https://app.fossa.io/projects/git%2Bgithub.com%2Fclaunia%2FDiscImageChef?ref=badge_shield)
-You can see statistics and device reports [here](http://discimagechef.claunia.com/Statistics.aspx)
+You can see statistics and device reports [here](https://www.discimagechef.app/Statistics.aspx)
DiscImageChef is a fully featured media dump management solution. You usually know media dumps
as disc images, disk images, tape images, etc.
diff --git a/DiscImageChef/Commands/Configure.cs b/DiscImageChef/Commands/Configure.cs
index 8edb25d8c..5a943e915 100644
--- a/DiscImageChef/Commands/Configure.cs
+++ b/DiscImageChef/Commands/Configure.cs
@@ -126,7 +126,7 @@ namespace DiscImageChef.Commands
DicConsole.WriteLine();
DicConsole.WriteLine("Sharing a report with us will send it to our server, that's in the european union territory, where it\n" +
"will be manually analized by an european union citizen to remove any trace of personal identification\n" +
- "from it. Once that is done, it will be shared in our stats website, http://discimagechef.claunia.com\n" +
+ "from it. Once that is done, it will be shared in our stats website, https://www.discimagechef.app\n" +
"These report will be used to improve DiscImageChef support, and in some cases, to provide emulation of the\n" +
"devices to other open-source projects. In any case, no information linking the report to you will be stored.");
while(pressedKey.Key != ConsoleKey.Y && pressedKey.Key != ConsoleKey.N)
diff --git a/README.md b/README.md
index edf275e34..09c000765 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@ Copyright © 2011-2019 Natalia Portillo
[](https://ci.appveyor.com/project/claunia/discimagechef)
[](https://app.fossa.io/projects/git%2Bgithub.com%2Fclaunia%2FDiscImageChef?ref=badge_shield)
-You can see statistics and device reports [here](http://discimagechef.claunia.com/Stats)
+You can see statistics and device reports [here](https://www.discimagechef.app/Stats)
DiscImageChef is a fully featured media dump management solution. You usually know media dumps
as disc images, disk images, tape images, etc.