diff --git a/CUE.NET.nuspec b/CUE.NET.nuspec index 082028b..eafa22e 100644 --- a/CUE.NET.nuspec +++ b/CUE.NET.nuspec @@ -3,7 +3,7 @@ CUE.NET CUE.NET - 1.0.3.0 + 1.1.0.0 Darth Affe Darth Affe https://github.com/DarthAffe/CUE.NET @@ -11,10 +11,17 @@ true Corsair HID SDK Wrapper - Added IEnumerable-overloads to all param-methods, - Added events in the update-process, - Finished work on BrushCalculationModes, - Added a method to check for SDK availability + ######### ######### + ### This release contains a lot of breaking changes and will most likely not work without changes to existing code! ### + ######### ######### + + Updated SDK to 2.4.67, + Adde Corsair RGB Mous Mat support, + Rewrote brushes to perform two-pass-rendering, + Added own Color-Type to allow easier extension and modification (this type can be implicit converted to .NET-Colors) + Refactored everything to work based on LEDs - This will adapt the devices and reduces the importance of the "special case keyboard", + Added usable effect-system which allows to modify groups and brushes, + Refactored automatic updates to be SDK-wide (moved from device to CueSDK) C# (.NET) Wrapper library around the Corsair CUE-SDK Copyright © Wyrez 2016 diff --git a/Examples/AudioAnalyzer/Example_AudioAnalyzer_full/Properties/AssemblyInfo.cs b/Examples/AudioAnalyzer/Example_AudioAnalyzer_full/Properties/AssemblyInfo.cs index a9ebd67..ec074e2 100644 --- a/Examples/AudioAnalyzer/Example_AudioAnalyzer_full/Properties/AssemblyInfo.cs +++ b/Examples/AudioAnalyzer/Example_AudioAnalyzer_full/Properties/AssemblyInfo.cs @@ -49,5 +49,5 @@ using System.Windows; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("1.1.0.0")] +[assembly: AssemblyFileVersion("1.1.0.0")] diff --git a/Examples/SimpleDevTest/Properties/AssemblyInfo.cs b/Examples/SimpleDevTest/Properties/AssemblyInfo.cs index 2cbc7b2..55e0bdb 100644 --- a/Examples/SimpleDevTest/Properties/AssemblyInfo.cs +++ b/Examples/SimpleDevTest/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.3.0")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("1.1.0.0")] +[assembly: AssemblyFileVersion("1.1.0.0")] diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 764bad7..2f6a651 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.3.0")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("1.1.0.0")] +[assembly: AssemblyFileVersion("1.1.0.0")]