diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a2ea9d..6326425 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,17 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -### Ribbon V2.11.0, RibbonTools V1.3.6 +### Ribbon V2.11.1, RibbonTools V1.3.6 + +#### Changed (Ribbon) + +- DesignMode issue for .NET5, .NET6 (other naming for the Visual Studio Designer) #### Changed (RibbonTools) - Bugfixes: GalleryControls in AppMenuGroup and in other Groups - Default TextPosition in GalleryControls +- RibbonToolsCore.sln only supports .NET6 (VS2022 required) ### Ribbon V2.11.0, RibbonTools V1.3.5 #### Changed (Ribbon) diff --git a/Ribbon/Properties/AssemblyInfo.cs b/Ribbon/Properties/AssemblyInfo.cs index 06ccf96..0f70944 100644 --- a/Ribbon/Properties/AssemblyInfo.cs +++ b/Ribbon/Properties/AssemblyInfo.cs @@ -33,5 +33,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("2.11.0.0")] +[assembly: AssemblyFileVersion("2.11.1.0")] diff --git a/Ribbon/RibbonCore.csproj b/Ribbon/RibbonCore.csproj index 402d314..1317769 100644 --- a/Ribbon/RibbonCore.csproj +++ b/Ribbon/RibbonCore.csproj @@ -2,7 +2,7 @@ Library - net5.0-windows;netcoreapp3.1;net40 + net6.0-windows;net5.0-windows;netcoreapp3.1;net40 true @@ -19,7 +19,7 @@ WindowsRibbon Windows Ribbon Control - 2.11.0 + 2.11.1 Hartmut Borkenhagen RibbonLib Ribbon64.png @@ -36,7 +36,7 @@ false - + DEBUG;Core @@ -44,9 +44,9 @@ DEBUG - + TRACE;Core - .\bin\Release\netcoreapp3.1\Ribbon.xml + .\bin\Release\net6.0-windows\Ribbon.xml @@ -54,6 +54,11 @@ .\bin\Release\net5.0-windows\Ribbon.xml + + TRACE;Core + .\bin\Release\netcoreapp3.1\Ribbon.xml + + TRACE .\bin\Release\net40\Ribbon.xml diff --git a/Ribbon/Util.cs b/Ribbon/Util.cs index 99fb2b7..c9040f3 100644 --- a/Ribbon/Util.cs +++ b/Ribbon/Util.cs @@ -21,7 +21,7 @@ static class Util static Util() { // design mode is true if host process is: Visual Studio, Visual Studio Express Versions (C#, VB, C++) or SharpDevelop - var designerHosts = new List() { "devenv", "vcsexpress", "vbexpress", "vcexpress", "sharpdevelop" }; + var designerHosts = new List() { "designtoolsserver", "devenv", "vcsexpress", "vbexpress", "vcexpress", "sharpdevelop" }; var processName = System.Diagnostics.Process.GetCurrentProcess().ProcessName.ToLower(); _designMode = designerHosts.Contains(processName); } diff --git a/RibbonTools/Misc/Readme.txt b/RibbonTools/Misc/Readme.txt index 64478a4..78962f4 100644 --- a/RibbonTools/Misc/Readme.txt +++ b/RibbonTools/Misc/Readme.txt @@ -2,6 +2,7 @@ Was aufgefallen ist in Verbindung mit dem Ribbon mit WinForms: ApplicationModes in Verbindung mit Button, SplitButton, DropDownButton sind nur im ApplicationMenu (Left Side) zulässig. Das wird im RibbonDesigner nicht berücksichtigt. +Im Original RibbonDesigner sind ein paar Bugs, die in den RibbonTools korrigiert wurden. Wenn ApplicationModes auf Groups oder Tabs verwendet werden, dann müssen alle! Tabs und Groups eine Definition von ApplicationModes enthalten. @@ -11,5 +12,9 @@ Die UICC.exe stellt keinen Fehler fest. Im RibbonDesigner wäre es einfacher, wenn in der View auch ein Command vergeben werden könnte mit allen notwendigen Eingaben für Texte und Images. Oder auch ein Aufruf bei vorhandenem Command für die Eingabe von Text, Images +=> einfacher Wechsel zum Command möglich mit Rückkehr an die verlassene View -Copy Funktion für SizeDefinition (Large nach Medium oder Small) \ No newline at end of file +Copy Funktion für SizeDefinition (Large nach Medium oder Small) + +Microsoft Bug in UICC.exe mit SizeDefinition ButtonGroupsAndInputs, Beispiel aus Dokumentation funktioniert nicht. +Entfernen der ControlGroup mit Button10 akzeptiert UICC, aber der Button3 erscheint dann an falscher Stelle \ No newline at end of file diff --git a/RibbonTools/RibbonToolsCore.csproj b/RibbonTools/RibbonToolsCore.csproj index abcc994..45673f9 100644 --- a/RibbonTools/RibbonToolsCore.csproj +++ b/RibbonTools/RibbonToolsCore.csproj @@ -2,7 +2,7 @@ WinExe - net5.0-windows;netcoreapp3.1 + net6.0-windows true true Images\Ribbon.ico @@ -112,15 +112,9 @@ - + - ..\Ribbon\bin\Release\net5.0-windows\Ribbon.dll - - - - - - ..\Ribbon\bin\Release\netcoreapp3.1\Ribbon.dll + ..\Ribbon\bin\Release\net6.0-windows\Ribbon.dll