merged develop into pr/1690

This commit is contained in:
Faryan Rezagholi
2020-05-30 19:06:32 +02:00
10 changed files with 26 additions and 23 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -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.

View File

@@ -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

View File

@@ -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.

View File

@@ -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";

View File

@@ -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;
}

View File

@@ -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;

View File

@@ -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);