Change URLs to new domain.

This commit is contained in:
Jared Goodwin 2020-02-29 15:20:47 -08:00
parent 71002e3905
commit 4ab5d494a3
12 changed files with 25 additions and 25 deletions

View File

@ -11,7 +11,7 @@
<Product>Remotely Agent</Product>
<Company>Translucency Software</Company>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<PackageProjectUrl>https://remotely.lucency.co</PackageProjectUrl>
<PackageProjectUrl>https://remotely.one</PackageProjectUrl>
<Platforms>AnyCPU;x86;x64</Platforms>
<AssemblyName>Remotely_Agent</AssemblyName>
<RootNamespace>Remotely.Agent</RootNamespace>

View File

@ -14,7 +14,7 @@
<Authors>Jared Goodwin</Authors>
<Company>Translucency Software</Company>
<Product>Remotely Desktop</Product>
<PackageProjectUrl>https://remotely.lucency.co</PackageProjectUrl>
<PackageProjectUrl>https://remotely.one</PackageProjectUrl>
<Platforms>AnyCPU;x86;x64</Platforms>
</PropertyGroup>

View File

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

View File

@ -12,7 +12,7 @@
<Product>Remotely ScreenCast</Product>
<Description>Allows unattended remote control via the Remotely server.</Description>
<Copyright>Copyright © 2020 Translucency Software</Copyright>
<PackageProjectUrl>https://remotely.lucency.co</PackageProjectUrl>
<PackageProjectUrl>https://remotely.one</PackageProjectUrl>
<Platforms>AnyCPU;x86;x64</Platforms>
</PropertyGroup>

View File

@ -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",
$@"<img src='https://remotely.lucency.co/images/Remotely_Logo.png'/>
$@"<img src='https://remotely.one/images/Remotely_Logo.png'/>
<br><br>
Hello!
<br><br>

View File

@ -66,7 +66,7 @@ namespace Remotely.Server.Areas.Identity.Pages.Account
await _emailSender.SendEmailAsync(
Input.Email,
"Reset Password",
$"<img src='https://remotely.lucency.co/images/Remotely_Logo.png'/><br><br>Please reset your Remotely password by <a href='{HtmlEncoder.Default.Encode(callbackUrl)}'>clicking here</a>.");
$"<img src='https://remotely.one/images/Remotely_Logo.png'/><br><br>Please reset your Remotely password by <a href='{HtmlEncoder.Default.Encode(callbackUrl)}'>clicking here</a>.");
return RedirectToPage("./ForgotPasswordConfirmation");
}

View File

@ -143,7 +143,7 @@ namespace Remotely.Server.Areas.Identity.Pages.Account.Manage
await _emailSender.SendEmailAsync(
email,
"Confirm your email",
$"<img src='https://remotely.lucency.co/images/Remotely_Logo.png'/><br><br>Please confirm your Remotely account by <a href='{HtmlEncoder.Default.Encode(callbackUrl)}'>clicking here</a>.");
$"<img src='https://remotely.one/images/Remotely_Logo.png'/><br><br>Please confirm your Remotely account by <a href='{HtmlEncoder.Default.Encode(callbackUrl)}'>clicking here</a>.");
StatusMessage = "Verification email sent. Please check your email.";
return RedirectToPage();

View File

@ -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",
$@"<img src='https://remotely.lucency.co/images/Remotely_Logo.png'/>
$@"<img src='https://remotely.one/images/Remotely_Logo.png'/>
<br><br>
Hello!
<br><br>

View File

@ -103,7 +103,7 @@ namespace Remotely.Server.Areas.Identity.Pages.Account
protocol: Request.Scheme);
await _emailSender.SendEmailAsync(Input.Email, "Confirm your email",
$"<img src='https://remotely.lucency.co/images/Remotely_Logo.png'/><br><br>Please confirm your Remotely account by <a href='{HtmlEncoder.Default.Encode(callbackUrl)}'>clicking here</a>.");
$"<img src='https://remotely.one/images/Remotely_Logo.png'/><br><br>Please confirm your Remotely account by <a href='{HtmlEncoder.Default.Encode(callbackUrl)}'>clicking here</a>.");
if (_userManager.Options.SignIn.RequireConfirmedAccount)
{

View File

@ -6,10 +6,10 @@
<h3>@ViewData["Title"] Remotely</h3>
<p>
Website: <a href="https://remotely.lucency.co">https://remotely.lucency.co</a>
Website: <a href="https://remotely.one">https://remotely.one</a>
</p>
<p>
Contact: <a href="https://remotely.lucency.co/Contact">https://remotely.lucency.co/Contact</a>
Contact: <a href="https://remotely.one/Contact">https://remotely.one/Contact</a>
</p>
<p>
Privacy Policy: <a asp-page="/Privacy">@Request.Scheme://@Request.Host/Privacy</a>

View File

@ -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"
}
]
}

View File

@ -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/"
}
]
}