diff --git a/Aaru.Core/Remote.cs b/Aaru.Core/Remote.cs index 36271da1e..4ad0986c6 100644 --- a/Aaru.Core/Remote.cs +++ b/Aaru.Core/Remote.cs @@ -77,7 +77,7 @@ namespace Aaru.Core NullValueHandling = NullValueHandling.Ignore }); byte[] jsonBytes = Encoding.UTF8.GetBytes(json); - WebRequest request = WebRequest.Create("https://www.discimagechef.app/api/uploadreportv2"); + WebRequest request = WebRequest.Create("https://www.aaru.app/api/uploadreportv2"); ((HttpWebRequest)request).UserAgent = $"Aaru {typeof(Version).Assembly.GetName().Version}"; request.Method = "POST"; request.ContentLength = jsonBytes.Length; @@ -151,7 +151,7 @@ namespace Aaru.Core DateTime updateStart = DateTime.UtcNow; WebRequest request = - WebRequest.Create($"https://www.discimagechef.app/api/update?timestamp={lastUpdate}"); + WebRequest.Create($"https://www.aaru.app/api/update?timestamp={lastUpdate}"); ((HttpWebRequest)request).UserAgent = $"Aaru {typeof(Version).Assembly.GetName().Version}"; request.Method = "GET"; request.ContentType = "application/json"; diff --git a/Aaru.Core/Statistics.cs b/Aaru.Core/Statistics.cs index 0cc5675dd..89cef31e6 100644 --- a/Aaru.Core/Statistics.cs +++ b/Aaru.Core/Statistics.cs @@ -744,7 +744,7 @@ namespace Aaru.Core }); byte[] jsonBytes = Encoding.UTF8.GetBytes(json); - var request = WebRequest.Create("https://www.discimagechef.app/api/uploadstatsv2"); + var request = WebRequest.Create("https://www.aaru.app/api/uploadstatsv2"); ((HttpWebRequest)request).UserAgent = $"Aaru {typeof(Version).Assembly.GetName().Version}"; @@ -1096,7 +1096,7 @@ namespace Aaru.Core xs.Deserialize(fs); // Just to test validity of stats file fs.Seek(0, SeekOrigin.Begin); - var request = WebRequest.Create("https://www.discimagechef.app/api/uploadstats"); + var request = WebRequest.Create("https://www.aaru.app/api/uploadstats"); ((HttpWebRequest)request).UserAgent = $"Aaru {typeof(CommonTypes.Interop.Version).Assembly.GetName().Version}"; diff --git a/Aaru.Gui/Dialogs/dlgSettings.xeto.cs b/Aaru.Gui/Dialogs/dlgSettings.xeto.cs index 35a010fb7..6e53ecf15 100644 --- a/Aaru.Gui/Dialogs/dlgSettings.xeto.cs +++ b/Aaru.Gui/Dialogs/dlgSettings.xeto.cs @@ -78,7 +78,7 @@ namespace Aaru.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, https://www.discimagechef.app\n" + + "from it. Once that is done, it will be shared in our stats website, https://www.aaru.app\n" + "These report will be used to improve Aaru 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."; diff --git a/Aaru.Settings/Settings.cs b/Aaru.Settings/Settings.cs index 6247a97f9..9420efc02 100644 --- a/Aaru.Settings/Settings.cs +++ b/Aaru.Settings/Settings.cs @@ -257,7 +257,7 @@ namespace Aaru.Settings { switch(ptId) { - // In case of macOS or iOS settings will be saved in ~/Library/Preferences/com.claunia.discimagechef.plist + // In case of macOS or iOS settings will be saved in ~/Library/Preferences/com.claunia.aaru.plist case PlatformID.MacOSX: case PlatformID.iOS: { @@ -486,7 +486,7 @@ namespace Aaru.Settings switch(ptId) { - // In case of macOS or iOS settings will be saved in ~/Library/Preferences/com.claunia.discimagechef.plist + // In case of macOS or iOS settings will be saved in ~/Library/Preferences/com.claunia.aaru.plist case PlatformID.MacOSX: case PlatformID.iOS: { diff --git a/Aaru/Commands/Configure.cs b/Aaru/Commands/Configure.cs index a78db2ffb..2db25a24a 100644 --- a/Aaru/Commands/Configure.cs +++ b/Aaru/Commands/Configure.cs @@ -114,7 +114,7 @@ namespace Aaru.Commands AaruConsole.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 analyzed 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, https://www.discimagechef.app\n" + + "from it. Once that is done, it will be shared in our stats website, https://www.aaru.app\n" + "These report will be used to improve Aaru 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."); diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6d01be9be..000609d7a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -131,7 +131,7 @@ steps: - task: FtpUpload@2 inputs: credentialsOption: 'inputs' - serverUrl: 'ftp://www.discimagechef.app' + serverUrl: 'ftp://www.aaru.app' username: 'ftpuser' password: '$(FtpPassword)' rootDirectory: '$(Build.ArtifactStagingDirectory)'