From 6fb1aefd8e3055fd9d2f0c4e502460ada9f64f0c Mon Sep 17 00:00:00 2001 From: Lars Op den Kamp Date: Thu, 6 Dec 2012 21:02:11 +0100 Subject: [PATCH] bump to v2.0.5 --- ChangeLog | 21 ++++++++++++++++++ debian/changelog | 21 ++++++++++++++++++ project/libCEC.nsi | 2 +- project/libcec.rc | Bin 3202 -> 3202 bytes project/testclient.rc | Bin 3230 -> 3230 bytes src/CecSharpTester/CecSharpClient.cs | 2 +- src/CecSharpTester/Properties/AssemblyInfo.cs | 4 ++-- src/LibCecSharp/AssemblyInfo.cpp | 2 +- src/LibCecSharp/CecSharpTypes.h | 12 ++++++++-- src/LibCecTray/Properties/AssemblyInfo.cs | 4 ++-- src/LibCecTray/controller/CECController.cs | 2 +- 11 files changed, 60 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index a1ccd68..d284eda 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,24 @@ +libcec (2.0.5-1) unstable; urgency=low + + * changed: + * also try polls at least twice when it failed + * added methods to get the audiostatus and toggle the mute status from the + amplifier (if connected) + * added comboKey and iComboKeyTimeoutMs to libcec_configuration + * force cec_user_control_code_unknown to 0xFF + * fixed: + * check unsupported features properly + * only send an active source message when the stream path changed and we + weren't the active source yet + * don't mark as inactive source on routing changes + * press & hold + * never mark user control opcodes as unsupported + * report our OSD name to the TV, since some TVs don't request it + * initial audiostatus value + * don't log a no longer relevant FIXME + + -- Pulse-Eight Packaging Thu, 6 Dec 2012 20:58:00 +0100 + libcec (2.0.4-1) unstable; urgency=low * changed: diff --git a/debian/changelog b/debian/changelog index a1ccd68..d284eda 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,24 @@ +libcec (2.0.5-1) unstable; urgency=low + + * changed: + * also try polls at least twice when it failed + * added methods to get the audiostatus and toggle the mute status from the + amplifier (if connected) + * added comboKey and iComboKeyTimeoutMs to libcec_configuration + * force cec_user_control_code_unknown to 0xFF + * fixed: + * check unsupported features properly + * only send an active source message when the stream path changed and we + weren't the active source yet + * don't mark as inactive source on routing changes + * press & hold + * never mark user control opcodes as unsupported + * report our OSD name to the TV, since some TVs don't request it + * initial audiostatus value + * don't log a no longer relevant FIXME + + -- Pulse-Eight Packaging Thu, 6 Dec 2012 20:58:00 +0100 + libcec (2.0.4-1) unstable; urgency=low * changed: diff --git a/project/libCEC.nsi b/project/libCEC.nsi index 8f665f2..635df7a 100644 --- a/project/libCEC.nsi +++ b/project/libCEC.nsi @@ -7,7 +7,7 @@ !include "LogicLib.nsh" !include "x64.nsh" -Name "Pulse-Eight libCEC version 2.0.4" +Name "Pulse-Eight libCEC version 2.0.5" OutFile "..\build\libCEC-installer.exe" XPStyle on diff --git a/project/libcec.rc b/project/libcec.rc index 2f70b2f9d34b0964aa267568416a13ab6a0375d2..0b1ebe19a9cb8f8d55ac6d1551cfe2dba85901d4 100644 GIT binary patch delta 52 zcmZpYY?9pI$INIt*`L{v(R6bovp6%WDT5w^!Q_SPx|>h2y<=nsawp5PN=|;pA+-4! H#~fw=X#)<1 delta 52 zcmZpYY?9pI$INIl*`L{v(PVQYvp6%W34h2y<=nsawp5PN=|;pA+-4! H#~fw=Xo3!c diff --git a/project/testclient.rc b/project/testclient.rc index b2ba0e28a7ce9f39c7d7c480b79682691dcd99ff..1f44a184e00ce593bf9a2e618f5c4f8332867887 100644 GIT binary patch delta 50 zcmbOyIZtwfA2XxrWPfHuM$^rW%!16!rVM(MsA7B;Re1uJa2_~@l1IIdM07=#j A0ssI2 delta 50 zcmbOyIZtwfA2XxLWPfHuMw88r%!16!CJcI$sA7B;Re1uJa2_~@l1IIdM07+jA A{r~^~ diff --git a/src/CecSharpTester/CecSharpClient.cs b/src/CecSharpTester/CecSharpClient.cs index d1c6c3e..0e8f460 100644 --- a/src/CecSharpTester/CecSharpClient.cs +++ b/src/CecSharpTester/CecSharpClient.cs @@ -43,7 +43,7 @@ namespace CecSharpClient Config = new LibCECConfiguration(); Config.DeviceTypes.Types[0] = CecDeviceType.RecordingDevice; Config.DeviceName = "CEC Tester"; - Config.ClientVersion = CecClientVersion.Version2_0_4; + Config.ClientVersion = CecClientVersion.Version2_0_5; Config.SetCallbacks(this); LogLevel = (int)CecLogLevel.All; diff --git a/src/CecSharpTester/Properties/AssemblyInfo.cs b/src/CecSharpTester/Properties/AssemblyInfo.cs index 1270401..d49913b 100644 --- a/src/CecSharpTester/Properties/AssemblyInfo.cs +++ b/src/CecSharpTester/Properties/AssemblyInfo.cs @@ -32,5 +32,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("2.0.4.0")] -[assembly: AssemblyFileVersion("2.0.4.0")] +[assembly: AssemblyVersion("2.0.5.0")] +[assembly: AssemblyFileVersion("2.0.5.0")] diff --git a/src/LibCecSharp/AssemblyInfo.cpp b/src/LibCecSharp/AssemblyInfo.cpp index d5d229f..8e4ecb8 100644 --- a/src/LibCecSharp/AssemblyInfo.cpp +++ b/src/LibCecSharp/AssemblyInfo.cpp @@ -13,7 +13,7 @@ using namespace System::Security::Permissions; [assembly:AssemblyTrademarkAttribute("")]; [assembly:AssemblyCultureAttribute("")]; -[assembly:AssemblyVersionAttribute("2.0.4.0")]; +[assembly:AssemblyVersionAttribute("2.0.5.0")]; [assembly:ComVisible(false)]; [assembly:CLSCompliantAttribute(true)]; diff --git a/src/LibCecSharp/CecSharpTypes.h b/src/LibCecSharp/CecSharpTypes.h index a6fc2d4..a75a762 100644 --- a/src/LibCecSharp/CecSharpTypes.h +++ b/src/LibCecSharp/CecSharpTypes.h @@ -1179,7 +1179,11 @@ namespace CecSharp /// /// v2.0.4 /// - Version2_0_4 = 0x2004 + Version2_0_4 = 0x2004, + /// + /// v2.0.5 + /// + Version2_0_5 = 0x2005 }; /// @@ -1274,7 +1278,11 @@ namespace CecSharp /// /// v2.0.4 /// - Version2_0_4 = 0x2004 + Version2_0_4 = 0x2004, + /// + /// v2.0.5 + /// + Version2_0_5 = 0x2005 }; /// diff --git a/src/LibCecTray/Properties/AssemblyInfo.cs b/src/LibCecTray/Properties/AssemblyInfo.cs index bccd9c7..3f09c27 100644 --- a/src/LibCecTray/Properties/AssemblyInfo.cs +++ b/src/LibCecTray/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("2.0.4.0")] -[assembly: AssemblyFileVersion("2.0.4.0")] +[assembly: AssemblyVersion("2.0.5.0")] +[assembly: AssemblyFileVersion("2.0.5.0")] diff --git a/src/LibCecTray/controller/CECController.cs b/src/LibCecTray/controller/CECController.cs index b54ecdd..751330f 100644 --- a/src/LibCecTray/controller/CECController.cs +++ b/src/LibCecTray/controller/CECController.cs @@ -438,7 +438,7 @@ namespace LibCECTray.controller { if (_config == null) { - _config = new LibCECConfiguration { DeviceName = "CEC Tray", ClientVersion = CecClientVersion.Version2_0_4 }; + _config = new LibCECConfiguration { DeviceName = "CEC Tray", ClientVersion = CecClientVersion.Version2_0_5 }; _config.DeviceTypes.Types[0] = CecDeviceType.RecordingDevice; _config.SetCallbacks(this); -- 2.34.1