This commit is contained in:
2019-05-26 00:45:34 +01:00
parent 5ef78954b0
commit beec952762
8 changed files with 18 additions and 10 deletions

View File

@@ -6,7 +6,7 @@
<e p="$APPLICATION_PLUGINS_DIR$/puppet/lib/stubs" t="IncludeRecursive" />
<e p="$USER_HOME$/.Rider2019.1/system/extResources" t="IncludeRecursive" />
<e p="$USER_HOME$/.Rider2019.1/system/resharper-host/local/Transient/ReSharperHost/v191/SolutionCaches/_DiscImageChef.-1491758497.00" t="ExcludeRecursive" />
<e p="$USER_HOME$/.Rider2019.1/system/rust_expanded_macros/vfwZLTAc/expansions" t="IncludeRecursive" />
<e p="$USER_HOME$/.config/git/ignore" t="IncludeRecursive" />
<e p="$USER_HOME$/.nuget/packages/sqlitepclraw.lib.e_sqlite3.linux/1.1.12/runtimes/linux-x64/native/libe_sqlite3.so" t="Include" />
<e p="$PROJECT_DIR$" t="IncludeFlat">
<e p=".git/info/exclude" t="IncludeRecursive" />
@@ -347,6 +347,8 @@
<e p="20190102230036_AddOptimalReadMultipleCount.cs" t="Include" />
<e p="20190108013456_AddChangeableScsiModes.Designer.cs" t="Include" />
<e p="20190108013456_AddChangeableScsiModes.cs" t="Include" />
<e p="20190525183723_IdForDensityCode.Designer.cs" t="Include" />
<e p="20190525183723_IdForDensityCode.cs" t="Include" />
<e p="DicContextModelSnapshot.cs" t="Include" />
</e>
<e p="Models" t="Include">
@@ -1923,6 +1925,12 @@
<e p="201901081359499_AddChangeableScsiModes.Designer.cs" t="Include" />
<e p="201901081359499_AddChangeableScsiModes.cs" t="Include" />
<e p="201901081359499_AddChangeableScsiModes.resx" t="Include" />
<e p="201905252122267_IdForDensityCode.Designer.cs" t="Include" />
<e p="201905252122267_IdForDensityCode.cs" t="Include" />
<e p="201905252122267_IdForDensityCode.resx" t="Include" />
<e p="201905252245072_MakeEntityFrameworkHappy.Designer.cs" t="Include" />
<e p="201905252245072_MakeEntityFrameworkHappy.cs" t="Include" />
<e p="201905252245072_MakeEntityFrameworkHappy.resx" t="Include" />
<e p="Configuration.cs" t="Include" />
</e>
<e p="Models" t="Include">

View File

@@ -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) -

View File

@@ -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";

View File

@@ -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";

View File

@@ -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): ";

View File

@@ -9,7 +9,7 @@ Copyright © 2011-2018 Natalia Portillo <claunia@claunia.com>
[![Build status](https://ci.appveyor.com/api/projects/status/vim4c8h028pn5oys?svg=true)](https://ci.appveyor.com/project/claunia/discimagechef)
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fclaunia%2FDiscImageChef.svg?type=shield)](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.

View File

@@ -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)

View File

@@ -9,7 +9,7 @@ Copyright © 2011-2019 Natalia Portillo <claunia@claunia.com>
[![Build status](https://ci.appveyor.com/api/projects/status/vim4c8h028pn5oys?svg=true)](https://ci.appveyor.com/project/claunia/discimagechef)
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fclaunia%2FDiscImageChef.svg?type=shield)](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.