mirror of
https://github.com/xenia-project/dockpanelsuite.git
synced 2026-01-31 01:25:23 +01:00
Prepared alpha release.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
||||
<metadata>
|
||||
<version>2.7.0.0</version>
|
||||
<version>3.0.0-alpha</version>
|
||||
<authors>Weifen Luo and other contributors</authors>
|
||||
<owners>Weifen Luo and other contributors</owners>
|
||||
<licenseUrl>http://www.opensource.org/licenses/mit-license.php</licenseUrl>
|
||||
@@ -16,6 +16,15 @@
|
||||
<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>
|
||||
<releaseNotes>
|
||||
April 6, 2013: 3.0.0 Alpha
|
||||
1. GitHub #19 Added Visual Studio 2012 Light theme.
|
||||
2. GitHub #112 Changed theme related interfaces.
|
||||
|
||||
April 6, 2013: 2.8.0 Beta
|
||||
1. GitHub #69 Restored multiple UI threads support.
|
||||
2. GitHub #82 Fixed dock indicator issue when DockPanel parent form is set to TopMost.
|
||||
3. GitHub #91 Changed double-click behavior of FloatWindow.
|
||||
|
||||
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.
|
||||
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().
|
||||
@@ -53,7 +62,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.
|
||||
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>
|
||||
<copyright>(C) 2007-2012 Weifen Luo and other contributors</copyright>
|
||||
<copyright>(C) 2007-2013 Weifen Luo and other contributors</copyright>
|
||||
<language>en-US</language>
|
||||
<tags>windows forms docking dockpanel panel</tags>
|
||||
</metadata>
|
||||
|
||||
@@ -9,7 +9,7 @@ using System.Diagnostics.CodeAnalysis;
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("Weifen Luo")]
|
||||
[assembly: AssemblyProduct("DockPanel Suite")]
|
||||
[assembly: AssemblyCopyright("Copyright © Weifen Luo and other contributors 2007-2012")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2007-2013 Weifen Luo and other contributors 2007-2012")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: CLSCompliant(true)]
|
||||
@@ -18,8 +18,8 @@ using System.Diagnostics.CodeAnalysis;
|
||||
|
||||
[assembly: Guid("9d690ef9-ce19-4c69-874c-e24d8eb36aff")]
|
||||
|
||||
[assembly: AssemblyVersion("2.7.0.0")]
|
||||
[assembly: AssemblyFileVersion("2.7.0.0")]
|
||||
[assembly: AssemblyVersion("3.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("3.0.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 = "Luo")]
|
||||
|
||||
2
all.bat
2
all.bat
@@ -2,4 +2,4 @@ CALL clean.bat
|
||||
CALL release.bat
|
||||
CALL clean.bat
|
||||
CALL release.net40.bat
|
||||
CALL .nuget/nuget.exe pack
|
||||
CALL nuget.bat
|
||||
Reference in New Issue
Block a user