Skip to content

Commit

Permalink
2.8 final.
Browse files Browse the repository at this point in the history
  • Loading branch information
lextm committed Apr 28, 2013
1 parent 976cb55 commit 0955c79
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
12 changes: 10 additions & 2 deletions .nuget/DockPanelSuite.nuspec
@@ -1,7 +1,7 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd"> <package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
<metadata> <metadata>
<version>2.7.0.0</version> <version>2.8.0.0</version>
<authors>Weifen Luo and other contributors</authors> <authors>Weifen Luo and other contributors</authors>
<owners>Weifen Luo and other contributors</owners> <owners>Weifen Luo and other contributors</owners>
<licenseUrl>http://www.opensource.org/licenses/mit-license.php</licenseUrl> <licenseUrl>http://www.opensource.org/licenses/mit-license.php</licenseUrl>
Expand All @@ -16,6 +16,14 @@
<description>The docking library for .Net Windows Forms development which mimics Visual Studio .Net.</description> <description>The docking library for .Net Windows Forms development which mimics Visual Studio .Net.</description>
<summary>The docking library for .Net Windows Forms development which mimics Visual Studio .Net.</summary> <summary>The docking library for .Net Windows Forms development which mimics Visual Studio .Net.</summary>
<releaseNotes> <releaseNotes>
April 28, 2013: 2.8.0 Beta
1. GitHub #69 Restored multiple UI threads support.
2. GitHub #81 Added ActiveAutoHideContentChanged event.
3. GitHub #82 Fixed dock indicator issue when DockPanel parent form is set to TopMost.
4. GitHub #91 Changed double-click behavior of FloatWindow.
5. GitHub #119 Changed initialization of DockContent's AutoHidePortion.
6. GitHub #123 Require click to show autohide content.

Sept 5, 2012: 2.7.0 Sept 5, 2012: 2.7.0
1. GitHub #11 - Corrected an issue that prevented the docking indicator from being shown when docking a float window while the cursor was in the float window to be docked. 1. GitHub #11 - Corrected an issue that prevented the docking indicator from being shown when docking a float window while the cursor was in the float window to be docked.
2. GitHub #16 - Fixed a stack overflow that occurs on Mono at shutdown due to an existing discrepency in Mono's implementation of Control.Dispose(). 2. GitHub #16 - Fixed a stack overflow that occurs on Mono at shutdown due to an existing discrepency in Mono's implementation of Control.Dispose().
Expand Down Expand Up @@ -53,7 +61,7 @@ Oct 30, 2010: 2.4.0
3. BUG FIX: [2780774] Sample app layout by code functionality does not fully work and breaks when executed two times in a row. 3. BUG FIX: [2780774] Sample app layout by code functionality does not fully work and breaks when executed two times in a row.
4. Middle mouse button click on a Document tab closes the Document that was clicked. (Original code from Ralf Jablonski but modified to close the Document that was clicked) 4. Middle mouse button click on a Document tab closes the Document that was clicked. (Original code from Ralf Jablonski but modified to close the Document that was clicked)
</releaseNotes> </releaseNotes>
<copyright>(C) 2007-2012 Weifen Luo and other contributors</copyright> <copyright>(C) 2007-2013 Weifen Luo and other contributors</copyright>
<language>en-US</language> <language>en-US</language>
<tags>windows forms docking dockpanel panel</tags> <tags>windows forms docking dockpanel panel</tags>
</metadata> </metadata>
Expand Down
4 changes: 2 additions & 2 deletions WinFormsUI/Properties/AssemblyInfo.cs
Expand Up @@ -18,8 +18,8 @@


[assembly: Guid("9d690ef9-ce19-4c69-874c-e24d8eb36aff")] [assembly: Guid("9d690ef9-ce19-4c69-874c-e24d8eb36aff")]


[assembly: AssemblyVersion("2.7.0.0")] [assembly: AssemblyVersion("2.8.0.0")]
[assembly: AssemblyFileVersion("2.7.0.0")] [assembly: AssemblyFileVersion("2.8.0.0")]


[module: SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", Scope = "namespace", Target = "WeifenLuo.WinFormsUI.Docking", MessageId = "Weifen")] [module: SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", Scope = "namespace", Target = "WeifenLuo.WinFormsUI.Docking", MessageId = "Weifen")]
[module: SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", Scope = "namespace", Target = "WeifenLuo.WinFormsUI.Docking", MessageId = "Luo")] [module: SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", Scope = "namespace", Target = "WeifenLuo.WinFormsUI.Docking", MessageId = "Luo")]
Expand Down
4 changes: 3 additions & 1 deletion all.bat
Expand Up @@ -2,4 +2,6 @@ CALL clean.bat
CALL release.bat CALL release.bat
CALL clean.bat CALL clean.bat
CALL release.net40.bat CALL release.net40.bat
CALL .nuget/nuget.exe pack CD .nuget
CALL nuget.exe pack
CD ..

0 comments on commit 0955c79

Please sign in to comment.