mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 03:58:45 +08:00
Compare commits
4 Commits
v1.75.7009
...
v1.75.7010
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
68f052efcb | ||
|
|
4a8baf79fb | ||
|
|
499ac0295e | ||
|
|
29c422501a |
@@ -1,3 +1,10 @@
|
||||
1.75.7010 (2017-10-29):
|
||||
|
||||
Fixes:
|
||||
------
|
||||
#756: CustomConsPath always null
|
||||
|
||||
|
||||
1.75.7009 (2017-10-28):
|
||||
|
||||
Fixes:
|
||||
|
||||
@@ -308,9 +308,12 @@ namespace mRemoteNG.App
|
||||
}
|
||||
|
||||
// Handle custom connection file location
|
||||
Settings.Default.CustomConsPath = GetCustomConsPath(ConsParam);
|
||||
if (Settings.Default.CustomConsPath != null)
|
||||
var consPathFromParam = GetCustomConsPath(ConsParam);
|
||||
if (consPathFromParam != null)
|
||||
{
|
||||
Settings.Default.CustomConsPath = consPathFromParam;
|
||||
Settings.Default.LoadConsFromCustomLocation = true;
|
||||
}
|
||||
|
||||
if (!string.IsNullOrEmpty(ResetPosParam))
|
||||
{
|
||||
|
||||
@@ -33,7 +33,7 @@ using System.Runtime.InteropServices;
|
||||
// by using the '*' as shown below:
|
||||
// <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
[assembly: AssemblyVersion("1.75.7009.*")]
|
||||
[assembly: AssemblyVersion("1.75.7010.*")]
|
||||
|
||||
[assembly:NeutralResourcesLanguageAttribute("en")]
|
||||
|
||||
|
||||
@@ -134,6 +134,7 @@ namespace mRemoteNG.UI.Controls
|
||||
SetObjects(ConnectionTreeModel.RootNodes);
|
||||
RegisterModelUpdateHandlers();
|
||||
NodeSearcher = new NodeSearcher(ConnectionTreeModel);
|
||||
UpdateColumnWidth();
|
||||
ExecutePostSetupActions();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user