mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Rename references to domain.
This commit is contained in:
@@ -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";
|
||||
|
||||
@@ -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}";
|
||||
|
||||
@@ -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.";
|
||||
|
||||
|
||||
@@ -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:
|
||||
{
|
||||
|
||||
@@ -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.");
|
||||
|
||||
|
||||
@@ -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)'
|
||||
|
||||
Reference in New Issue
Block a user