mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 14:07:46 +08:00
Lib updates + small changes
This commit is contained in:
@@ -15,8 +15,8 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="AWSSDK.Core" Version="3.7.400.44" />
|
||||
<PackageReference Include="AWSSDK.EC2" Version="3.7.414.1" />
|
||||
<PackageReference Include="AWSSDK.Core" Version="3.7.400.48" />
|
||||
<PackageReference Include="AWSSDK.EC2" Version="3.7.414.5" />
|
||||
<PackageReference Include="BouncyCastle.Cryptography" Version="2.4.0" />
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
||||
</ItemGroup>
|
||||
|
||||
@@ -13,7 +13,7 @@ namespace mRemoteNG.App.Info
|
||||
[SupportedOSPlatform("windows")]
|
||||
public static class GeneralAppInfo
|
||||
{
|
||||
public const string UrlHome = "https://www.mremoteng.org";
|
||||
public const string UrlHome = "https://mremoteng.org";
|
||||
public const string UrlDonate = "https://mremoteng.org/contribute";
|
||||
public const string UrlForum = "https://www.reddit.com/r/mRemoteNG";
|
||||
public const string UrlBugs = "https://bugs.mremoteng.org";
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace mRemoteNG.Connection.Protocol.RDP
|
||||
*/
|
||||
|
||||
private MsRdpClient6NotSafeForScripting _rdpClient; // lowest version supported
|
||||
protected virtual RdpVersion RdpProtocolVersion => RDP.RdpVersion.Rdc6;
|
||||
protected virtual RdpVersion RdpProtocolVersion => RDP.RdpVersion.Rdc12;
|
||||
protected ConnectionInfo connectionInfo;
|
||||
protected Version RdpVersion;
|
||||
private readonly DisplayProperties _displayProperties;
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
Rdc9,
|
||||
Rdc10,
|
||||
Rdc11,
|
||||
Rdc12,
|
||||
Highest = 1000
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,10 +18,10 @@ using System.Resources;
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Version information
|
||||
[assembly: AssemblyVersion("1.77.3.2717")]
|
||||
[assembly: AssemblyFileVersion("1.77.3.2717")]
|
||||
[assembly: AssemblyVersion("1.77.3.2733")]
|
||||
[assembly: AssemblyFileVersion("1.77.3.2733")]
|
||||
[assembly: NeutralResourcesLanguageAttribute("en-US")]
|
||||
[assembly: AssemblyInformationalVersion("1.77.3 (Nightly Build 2717)")]
|
||||
[assembly: AssemblyInformationalVersion("1.77.3 (Nightly Build 2733)")]
|
||||
|
||||
// Logging
|
||||
[assembly: log4net.Config.XmlConfigurator(ConfigFile = "log4net.config")]
|
||||
|
||||
@@ -95,7 +95,7 @@
|
||||
<PackageReference Include="DockPanelSuite" Version="3.1.1" />
|
||||
<PackageReference Include="DockPanelSuite.ThemeVS2015" Version="3.1.1" />
|
||||
<PackageReference Include="LiteDB" Version="5.0.21" />
|
||||
<PackageReference Include="log4net" Version="3.0.2" />
|
||||
<PackageReference Include="log4net" Version="3.0.3" />
|
||||
<PackageReference Include="Microsoft-WindowsAPICodePack-Shell" Version="1.1.5" />
|
||||
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="8.0.1" />
|
||||
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.2849.39" />
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Include>
|
||||
<?define ProductName = "mRemoteNG" ?>
|
||||
<?define Company = "Next Generation Software" ?>
|
||||
<?define Company = "Profi-Kom Ltd." ?>
|
||||
<?define UpgradeCode = "dd678a54-ca75-4791-8dfe-d818095684f8" ?>
|
||||
<?define ProductCode = "*" ?>
|
||||
<?define ProductVersion = "!(bind.FileVersion.MainExeFile)" ?>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension">
|
||||
<?include $(sys.CURRENTDIR)Includes\Config.wxi?>
|
||||
<Product Name="$(var.ProductNameWithPlatform)" Manufacturer="Next Generation Software"
|
||||
<Product Name="$(var.ProductNameWithPlatform)" Manufacturer="Profi-Kom Ltd."
|
||||
Version="$(var.ProductVersion)"
|
||||
Id="$(var.ProductCode)"
|
||||
UpgradeCode="$(var.UpgradeCode)"
|
||||
@@ -12,7 +12,7 @@
|
||||
<Binary Id="CustomActions.CA.dll" SourceFile="$(var.SolutionDir)mRemoteNGInstaller\CustomActions\bin\x64\$(var.Configuration)\CustomActions.CA.dll" />
|
||||
<Property Id="MsiLogging" Value="v" />
|
||||
<Property Id="ARPPRODUCTICON" Value="AppIcon.ico" />
|
||||
<Property Id="ARPHELPLINK" Value="http://www.mremoteng.org" />
|
||||
<Property Id="ARPHELPLINK" Value="http://mremoteng.org" />
|
||||
<SetProperty Id="ARPINSTALLLOCATION" Value="[INSTALLDIR]" After="CostFinalize" />
|
||||
<Property Id="MAINEXE" Value="$(var.ExeProcessName)" />
|
||||
<Property Id="INSTALLDIR">
|
||||
|
||||
Reference in New Issue
Block a user