From 4ab5d494a3620c0fcee44985da0f2ca8fa2c22dd Mon Sep 17 00:00:00 2001 From: Jared Goodwin Date: Sat, 29 Feb 2020 15:20:47 -0800 Subject: [PATCH] Change URLs to new domain. --- Agent/Agent.csproj | 2 +- Desktop.Win/Desktop.Win.csproj | 2 +- README.md | 6 +++--- ScreenCast.Win/ScreenCast.Win.csproj | 2 +- Server/API/OrganizationManagementController.cs | 2 +- .../Identity/Pages/Account/ForgotPassword.cshtml.cs | 2 +- .../Identity/Pages/Account/Manage/Index.cshtml.cs | 2 +- .../Pages/Account/Manage/Organization.cshtml.cs | 2 +- .../Areas/Identity/Pages/Account/Register.cshtml.cs | 2 +- Server/Pages/About.cshtml | 4 ++-- Server/wwwroot/manifest-rc.json | 12 ++++++------ Server/wwwroot/manifest.json | 12 ++++++------ 12 files changed, 25 insertions(+), 25 deletions(-) diff --git a/Agent/Agent.csproj b/Agent/Agent.csproj index 5acc5e7d..9973d8f4 100644 --- a/Agent/Agent.csproj +++ b/Agent/Agent.csproj @@ -11,7 +11,7 @@ Remotely Agent Translucency Software 1.0.0.0 - https://remotely.lucency.co + https://remotely.one AnyCPU;x86;x64 Remotely_Agent Remotely.Agent diff --git a/Desktop.Win/Desktop.Win.csproj b/Desktop.Win/Desktop.Win.csproj index 043fbf48..36877606 100644 --- a/Desktop.Win/Desktop.Win.csproj +++ b/Desktop.Win/Desktop.Win.csproj @@ -14,7 +14,7 @@ Jared Goodwin Translucency Software Remotely Desktop - https://remotely.lucency.co + https://remotely.one AnyCPU;x86;x64 diff --git a/README.md b/README.md index 4b6730b5..9112c7ac 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@ A remote control and remote scripting solution, built with .NET Core, SignalR Co [![Donate](https://www.paypalobjects.com/webstatic/en_US/i/buttons/pp-acceptance-small.png)](https://paypal.me/translucency) -Website: https://remotely.lucency.co -Public Server: https://tryremotely.lucency.co (not intended for production use) +Website: https://remotely.one +Multi-Tenant Demo Server: https://app.remotely.one ## Client Prerequisites: @@ -124,7 +124,7 @@ Note: To retain your settings between upgrades, copy your settings to appsetting * Session recording will not work if a WebRTC connection is made. ## API and Integrations -Remotely has a basic API, which can be browsed at https://tryremotely.lucency.co/swagger (or your own server instance). Most endpoints require authentication via an API access token, which can be created by going to Account - API Access. +Remotely has a basic API, which can be browsed at https://app.remotely.one/swagger (or your own server instance). Most endpoints require authentication via an API access token, which can be created by going to Account - API Access. When accessing the API from the browser on another website, you'll need to set up CORS in appsettings by adding the website origin URL to the TrustedCorsOrigins array. If you're not familiar with how CORS works, I recommend reading up on it before proceeding. For example, if I wanted to create a login form on https://lucency.co that logged into the Remotely API, I'd need to add "https://lucency.co" to the TrustedCorsOrigins. diff --git a/ScreenCast.Win/ScreenCast.Win.csproj b/ScreenCast.Win/ScreenCast.Win.csproj index f1fba3be..b70fb64f 100644 --- a/ScreenCast.Win/ScreenCast.Win.csproj +++ b/ScreenCast.Win/ScreenCast.Win.csproj @@ -12,7 +12,7 @@ Remotely ScreenCast Allows unattended remote control via the Remotely server. Copyright © 2020 Translucency Software - https://remotely.lucency.co + https://remotely.one AnyCPU;x86;x64 diff --git a/Server/API/OrganizationManagementController.cs b/Server/API/OrganizationManagementController.cs index 6954d936..8d682591 100644 --- a/Server/API/OrganizationManagementController.cs +++ b/Server/API/OrganizationManagementController.cs @@ -282,7 +282,7 @@ namespace Remotely.Server.API var inviteURL = $"{Request.Scheme}://{Request.Host}/Invite?id={newInvite.ID}"; await EmailSender.SendEmailAsync(invite.InvitedUser, "Invitation to Organization in Remotely", - $@" + $@"

Hello!

diff --git a/Server/Areas/Identity/Pages/Account/ForgotPassword.cshtml.cs b/Server/Areas/Identity/Pages/Account/ForgotPassword.cshtml.cs index 61865b6b..757837ab 100644 --- a/Server/Areas/Identity/Pages/Account/ForgotPassword.cshtml.cs +++ b/Server/Areas/Identity/Pages/Account/ForgotPassword.cshtml.cs @@ -66,7 +66,7 @@ namespace Remotely.Server.Areas.Identity.Pages.Account await _emailSender.SendEmailAsync( Input.Email, "Reset Password", - $"

Please reset your Remotely password by clicking here."); + $"

Please reset your Remotely password by clicking here."); return RedirectToPage("./ForgotPasswordConfirmation"); } diff --git a/Server/Areas/Identity/Pages/Account/Manage/Index.cshtml.cs b/Server/Areas/Identity/Pages/Account/Manage/Index.cshtml.cs index cc3b5ddf..bdbdde53 100644 --- a/Server/Areas/Identity/Pages/Account/Manage/Index.cshtml.cs +++ b/Server/Areas/Identity/Pages/Account/Manage/Index.cshtml.cs @@ -143,7 +143,7 @@ namespace Remotely.Server.Areas.Identity.Pages.Account.Manage await _emailSender.SendEmailAsync( email, "Confirm your email", - $"

Please confirm your Remotely account by clicking here."); + $"

Please confirm your Remotely account by clicking here."); StatusMessage = "Verification email sent. Please check your email."; return RedirectToPage(); diff --git a/Server/Areas/Identity/Pages/Account/Manage/Organization.cshtml.cs b/Server/Areas/Identity/Pages/Account/Manage/Organization.cshtml.cs index 03e0281e..b87cdee4 100644 --- a/Server/Areas/Identity/Pages/Account/Manage/Organization.cshtml.cs +++ b/Server/Areas/Identity/Pages/Account/Manage/Organization.cshtml.cs @@ -143,7 +143,7 @@ namespace Remotely.Server.Areas.Identity.Pages.Account.Manage var inviteURL = $"{Request.Scheme}://{Request.Host}/Invite?id={newInvite.ID}"; await EmailSender.SendEmailAsync(invite.InvitedUser, "Invitation to Organization in Remotely", - $@" + $@"

Hello!

diff --git a/Server/Areas/Identity/Pages/Account/Register.cshtml.cs b/Server/Areas/Identity/Pages/Account/Register.cshtml.cs index 0e1629af..68374b63 100644 --- a/Server/Areas/Identity/Pages/Account/Register.cshtml.cs +++ b/Server/Areas/Identity/Pages/Account/Register.cshtml.cs @@ -103,7 +103,7 @@ namespace Remotely.Server.Areas.Identity.Pages.Account protocol: Request.Scheme); await _emailSender.SendEmailAsync(Input.Email, "Confirm your email", - $"

Please confirm your Remotely account by clicking here."); + $"

Please confirm your Remotely account by clicking here."); if (_userManager.Options.SignIn.RequireConfirmedAccount) { diff --git a/Server/Pages/About.cshtml b/Server/Pages/About.cshtml index 304e70c0..6e0e0a9d 100644 --- a/Server/Pages/About.cshtml +++ b/Server/Pages/About.cshtml @@ -6,10 +6,10 @@

@ViewData["Title"] Remotely

- Website: https://remotely.lucency.co + Website: https://remotely.one

- Contact: https://remotely.lucency.co/Contact + Contact: https://remotely.one/Contact

Privacy Policy: @Request.Scheme://@Request.Host/Privacy diff --git a/Server/wwwroot/manifest-rc.json b/Server/wwwroot/manifest-rc.json index beeb8f8d..ab4c0811 100644 --- a/Server/wwwroot/manifest-rc.json +++ b/Server/wwwroot/manifest-rc.json @@ -2,7 +2,7 @@ "id": "Remotely Remote Control", "name": "Remotely Remote Control", "short_name": "Remotely Remote Control", - "start_url": "https://tryremotely.lucency.co/remotecontrol", + "start_url": "https://app.remotely.one/remotecontrol", "display": "standalone", "background_color": "black", "theme_color": "white", @@ -10,12 +10,12 @@ "description": "Remote access tools designed to get things done quickly.", "icons": [ { - "src": "https://tryremotely.lucency.co/images/Remotely_Icon_128.png", + "src": "https://app.remotely.one/images/Remotely_Icon_128.png", "sizes": "128x128", "type": "image/png" }, { - "src": "https://tryremotely.lucency.co/images/Remotely_Icon_512.png", + "src": "https://app.remotely.one/images/Remotely_Icon_512.png", "sizes": "512x512", "type": "image/png" } @@ -23,15 +23,15 @@ "related_applications": [ { "platform": "windows", - "url": "https://tryremotely.lucency.co/remotecontrol" + "url": "https://app.remotely.one/remotecontrol" }, { "platform": "play", - "url": "https://tryremotely.lucency.co/remotecontrol" + "url": "https://app.remotely.one/remotecontrol" }, { "platform": "itunes", - "url": "https://tryremotely.lucency.co/remotecontrol" + "url": "https://app.remotely.one/remotecontrol" } ] } \ No newline at end of file diff --git a/Server/wwwroot/manifest.json b/Server/wwwroot/manifest.json index 5d03bcae..7e12bc70 100644 --- a/Server/wwwroot/manifest.json +++ b/Server/wwwroot/manifest.json @@ -2,7 +2,7 @@ "id": "Remotely", "name": "Remotely", "short_name": "Remotely", - "start_url": "https://tryremotely.lucency.co", + "start_url": "https://app.remotely.one", "display": "standalone", "background_color": "black", "theme_color": "white", @@ -10,12 +10,12 @@ "description": "Remote access tools designed to get things done quickly.", "icons": [ { - "src": "https://tryremotely.lucency.co/images/Remotely_Icon_128.png", + "src": "https://app.remotely.one/images/Remotely_Icon_128.png", "sizes": "128x128", "type": "image/png" }, { - "src": "https://tryremotely.lucency.co/images/Remotely_Icon_512.png", + "src": "https://app.remotely.one/images/Remotely_Icon_512.png", "sizes": "512x512", "type": "image/png" } @@ -23,15 +23,15 @@ "related_applications": [ { "platform": "windows", - "url": "https://tryremotely.lucency.co/" + "url": "https://app.remotely.one/" }, { "platform": "play", - "url": "https://tryremotely.lucency.co/" + "url": "https://app.remotely.one/" }, { "platform": "itunes", - "url": "https://tryremotely.lucency.co/" + "url": "https://app.remotely.one/" } ] } \ No newline at end of file