Remove occurrences of "remotely.one"

This commit is contained in:
Jared Goodwin 2024-05-31 10:35:51 -07:00
parent 1259babcd2
commit 3673e96cd0
7 changed files with 3 additions and 9 deletions

View File

@ -317,7 +317,7 @@ public class MainWindowViewModel : ViewModelBase
(serverUri.Scheme != Uri.UriSchemeHttp && serverUri.Scheme != Uri.UriSchemeHttps))
{
Logger.Write("ServerUrl is not valid.");
MessageBoxEx.Show("Server URL must be a valid Uri (e.g. https://app.remotely.one).", "Invalid Server URL", MessageBoxButton.OK, MessageBoxImage.Error);
MessageBoxEx.Show("Server URL must be a valid Uri (e.g. https://app.example.com).", "Invalid Server URL", MessageBoxButton.OK, MessageBoxImage.Error);
return false;
}

View File

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

View File

@ -2,13 +2,10 @@
using Microsoft.Extensions.Logging;
using Remotely.Agent.Interfaces;
using Remotely.Agent.Services;
using Remotely.Shared.Enums;
using Remotely.Shared.Utilities;
using Remotely.Shared.Services;
using System;
using System.Diagnostics;
using System.IO;
using System.ServiceProcess;
using System.Threading.Tasks;
using System.Runtime.Versioning;
using Remotely.Agent.Services.Linux;

View File

@ -30,7 +30,6 @@
<Product>Remotely Desktop</Product>
<Description>Desktop client for allowing your IT admin to provide remote support.</Description>
<Copyright>Copyright © 2023 Immense Networks</Copyright>
<PackageProjectUrl>https://remotely.one</PackageProjectUrl>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>

View File

@ -12,7 +12,6 @@
<Authors>Jared Goodwin</Authors>
<Company>Immense Networks</Company>
<Product>Remotely Desktop</Product>
<PackageProjectUrl>https://remotely.one</PackageProjectUrl>
<Platforms>AnyCPU;x86;x64</Platforms>
<StartupObject></StartupObject>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>

View File

@ -122,7 +122,7 @@
</div>
<div class="mt-2 col-md-6">
<div>Server URL</div>
<div class="small text-muted mt-1">The URL of the server that the device connects to (e.g. https://app.remotely.one).</div>
<div class="small text-muted mt-1">The URL of the server that the device connects to (e.g. https://app.example.com).</div>
<input type="text" readonly class="form-control" value="ServerUrl" />
</div>
</div>

View File

@ -1,6 +1,6 @@
server {
listen 80;
server_name app.remotely.one *.app.remotely.one;
server_name app.example.com *.app.example.com;
location / {
proxy_pass http://localhost:5000;
proxy_http_version 1.1;