diff --git a/Tools/7zip/7za.dll b/Tools/7zip/7za.dll index e95542c39..088f395fb 100644 Binary files a/Tools/7zip/7za.dll and b/Tools/7zip/7za.dll differ diff --git a/Tools/7zip/7za.exe b/Tools/7zip/7za.exe index d516eb5c1..2bdd57d2e 100644 Binary files a/Tools/7zip/7za.exe and b/Tools/7zip/7za.exe differ diff --git a/Tools/7zip/7zxa.dll b/Tools/7zip/7zxa.dll index 1e3778ae3..f755fb5c3 100644 Binary files a/Tools/7zip/7zxa.dll and b/Tools/7zip/7zxa.dll differ diff --git a/Tools/7zip/License.txt b/Tools/7zip/License.txt index 2a0f37730..48dc6c624 100644 --- a/Tools/7zip/License.txt +++ b/Tools/7zip/License.txt @@ -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. diff --git a/Tools/7zip/history.txt b/Tools/7zip/history.txt index e9bac39da..2154c3d40 100644 --- a/Tools/7zip/history.txt +++ b/Tools/7zip/history.txt @@ -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 diff --git a/Tools/7zip/readme.txt b/Tools/7zip/readme.txt index c3de12587..a54a31335 100644 --- a/Tools/7zip/readme.txt +++ b/Tools/7zip/readme.txt @@ -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. diff --git a/mRemoteV1/UI/Forms/frmMain.Designer.cs b/mRemoteV1/UI/Forms/frmMain.Designer.cs index f146b4b23..ea5190f98 100644 --- a/mRemoteV1/UI/Forms/frmMain.Designer.cs +++ b/mRemoteV1/UI/Forms/frmMain.Designer.cs @@ -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"; diff --git a/mRemoteV1/UI/Forms/frmMain.cs b/mRemoteV1/UI/Forms/frmMain.cs index e02a8ebd5..1af189338 100644 --- a/mRemoteV1/UI/Forms/frmMain.cs +++ b/mRemoteV1/UI/Forms/frmMain.cs @@ -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; } diff --git a/mRemoteV1/UI/Menu/ViewMenu.cs b/mRemoteV1/UI/Menu/ViewMenu.cs index e9cb01d56..484544fe2 100644 --- a/mRemoteV1/UI/Menu/ViewMenu.cs +++ b/mRemoteV1/UI/Menu/ViewMenu.cs @@ -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; diff --git a/mRemoteV1/UI/Window/ConnectionWindow.Designer.cs b/mRemoteV1/UI/Window/ConnectionWindow.Designer.cs index ab2c41216..888a4412d 100644 --- a/mRemoteV1/UI/Window/ConnectionWindow.Designer.cs +++ b/mRemoteV1/UI/Window/ConnectionWindow.Designer.cs @@ -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);