mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
merged develop into pr/1690
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -3,7 +3,7 @@
|
||||
License for use and distribution
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Copyright (C) 1999-2018 Igor Pavlov.
|
||||
Copyright (C) 1999-2019 Igor Pavlov.
|
||||
|
||||
7-Zip Extra files are under the GNU LGPL license.
|
||||
|
||||
|
||||
@@ -5,6 +5,21 @@ This file contains only information about changes related to that package exclus
|
||||
The full history of changes is listed in history.txt in main 7-Zip program.
|
||||
|
||||
|
||||
19.00 2019-02-21
|
||||
-------------------------
|
||||
- Encryption strength for 7z archives was increased:
|
||||
the size of random initialization vector was increased from 64-bit to 128-bit,
|
||||
and the pseudo-random number generator was improved.
|
||||
- Some bugs were fixed.
|
||||
|
||||
|
||||
18.06 2018-12-30
|
||||
-------------------------
|
||||
- The speed for LZMA/LZMA2 compressing was increased by 3-10%,
|
||||
and there are minor changes in compression ratio.
|
||||
- Some bugs were fixed.
|
||||
|
||||
|
||||
18.05 2018-04-30
|
||||
-------------------------
|
||||
- The speed for LZMA/LZMA2 compressing was increased
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
7-Zip Extra 18.05
|
||||
7-Zip Extra 19.00
|
||||
-----------------
|
||||
|
||||
7-Zip Extra is package of extra modules of 7-Zip.
|
||||
|
||||
7-Zip Copyright (C) 1999-2018 Igor Pavlov.
|
||||
7-Zip Copyright (C) 1999-2019 Igor Pavlov.
|
||||
|
||||
7-Zip is free software. Read License.txt for more information about license.
|
||||
|
||||
|
||||
2
mRemoteV1/UI/Forms/frmMain.Designer.cs
generated
2
mRemoteV1/UI/Forms/frmMain.Designer.cs
generated
@@ -57,8 +57,6 @@
|
||||
//
|
||||
this.pnlDock.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.pnlDock.DockBackColor = System.Drawing.SystemColors.Control;
|
||||
this.pnlDock.DockLeftPortion = 230D;
|
||||
this.pnlDock.DockRightPortion = 230D;
|
||||
this.pnlDock.DocumentStyle = WeifenLuo.WinFormsUI.Docking.DocumentStyle.DockingSdi;
|
||||
this.pnlDock.Location = new System.Drawing.Point(0, 0);
|
||||
this.pnlDock.Name = "pnlDock";
|
||||
|
||||
@@ -722,7 +722,7 @@ namespace mRemoteNG.UI.Forms
|
||||
var connectionWindow = (ConnectionWindow)document;
|
||||
if (Settings.Default.AlwaysShowConnectionTabs == false)
|
||||
{
|
||||
connectionWindow.TabController.HideTabsMode = TabControl.HideTabsModes.HideAlways;
|
||||
connectionWindow.TabController.HideTabsMode = TabControl.HideTabsModes.HidepnlDock.DockLeftPortion = Always;
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -737,24 +737,16 @@ namespace mRemoteNG.UI.Forms
|
||||
pnlDock.Size = new Size(1, 1);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Screen Stuff
|
||||
|
||||
public void SetDefaultLayout()
|
||||
{
|
||||
pnlDock.Visible = false;
|
||||
|
||||
pnlDock.DockLeftPortion = pnlDock.Width * 0.2;
|
||||
pnlDock.DockRightPortion = pnlDock.Width * 0.2;
|
||||
pnlDock.DockTopPortion = pnlDock.Height * 0.25;
|
||||
pnlDock.DockBottomPortion = pnlDock.Height * 0.25;
|
||||
|
||||
Windows.TreeForm.Show(pnlDock, DockState.DockLeft);
|
||||
Windows.ConfigForm.Show(pnlDock);
|
||||
Windows.ConfigForm.DockTo(Windows.TreeForm.Pane, DockStyle.Bottom, -1);
|
||||
viewMenu._mMenViewConnections.Checked = true;
|
||||
Windows.ConfigForm.Show(pnlDock, DockState.DockLeft);
|
||||
viewMenu._mMenViewConfig.Checked = true;
|
||||
Windows.ErrorsForm.Show(pnlDock, DockState.DockBottomAutoHide);
|
||||
Windows.ScreenshotForm.Hide();
|
||||
viewMenu._mMenViewErrorsAndInfos.Checked = true;
|
||||
|
||||
pnlDock.Visible = true;
|
||||
}
|
||||
|
||||
@@ -11,9 +11,9 @@ namespace mRemoteNG.UI.Menu
|
||||
{
|
||||
private ToolStripMenuItem _mMenViewConnectionPanels;
|
||||
private ToolStripSeparator _mMenViewSep1;
|
||||
private ToolStripMenuItem _mMenViewConnections;
|
||||
private ToolStripMenuItem _mMenViewConfig;
|
||||
private ToolStripMenuItem _mMenViewErrorsAndInfos;
|
||||
public ToolStripMenuItem _mMenViewConnections;
|
||||
public ToolStripMenuItem _mMenViewConfig;
|
||||
public ToolStripMenuItem _mMenViewErrorsAndInfos;
|
||||
private ToolStripMenuItem _mMenViewAddConnectionPanel;
|
||||
private ToolStripSeparator _mMenViewSep2;
|
||||
private ToolStripMenuItem _mMenViewFullscreen;
|
||||
|
||||
2
mRemoteV1/UI/Window/ConnectionWindow.Designer.cs
generated
2
mRemoteV1/UI/Window/ConnectionWindow.Designer.cs
generated
@@ -63,8 +63,6 @@ namespace mRemoteNG.UI.Window
|
||||
//
|
||||
this.connDock.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.connDock.DockBackColor = System.Drawing.SystemColors.Control;
|
||||
this.connDock.DockLeftPortion = 230D;
|
||||
this.connDock.DockRightPortion = 230D;
|
||||
this.connDock.DocumentStyle = WeifenLuo.WinFormsUI.Docking.DocumentStyle.DockingSdi;
|
||||
this.connDock.Location = new System.Drawing.Point(0, 0);
|
||||
this.connDock.Margin = new System.Windows.Forms.Padding(4);
|
||||
|
||||
Reference in New Issue
Block a user