From: Lars Op den Kamp Date: Fri, 24 Oct 2014 20:02:15 +0000 (+0200) Subject: bump to v2.2.0 X-Git-Tag: upstream/2.2.0~1^2~1^2~3^2~6 X-Git-Url: https://git.piment-noir.org/?p=deb_libcec.git;a=commitdiff_plain;h=b5d801b811b10d640383dcd00255c042d486a857 bump to v2.2.0 --- diff --git a/ChangeLog b/ChangeLog index 8ef4b35..118d88a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,19 @@ +libcec (2.2.0-1) unstable; urgency=low + + * changed / added: + * read the physical address from X11 randr extension. credits: @smithereens + * support for Exynos HDMI. credits: @vamanea + * another vendor ID for Harman/Kardon. credits: @ksooo + * some 1.4 keycodes have been added. credits: @ksooo + * cec-client: fix typo prevent keycodes to be passed. credits: @popcornmix + + * fixed: + * various Raspberry Pi fixes. credits: @mk01 + * vendor specific handlers weren't used for Toshiba and Onkyo. + credits: @ksooo + + -- Pulse-Eight Packaging Fri, 24 Oct 2014 21:55:00 +0100 + libcec (2.1.4-2) unstable; urgency=low * fixed: diff --git a/debian/changelog b/debian/changelog index 8ef4b35..118d88a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,19 @@ +libcec (2.2.0-1) unstable; urgency=low + + * changed / added: + * read the physical address from X11 randr extension. credits: @smithereens + * support for Exynos HDMI. credits: @vamanea + * another vendor ID for Harman/Kardon. credits: @ksooo + * some 1.4 keycodes have been added. credits: @ksooo + * cec-client: fix typo prevent keycodes to be passed. credits: @popcornmix + + * fixed: + * various Raspberry Pi fixes. credits: @mk01 + * vendor specific handlers weren't used for Toshiba and Onkyo. + credits: @ksooo + + -- Pulse-Eight Packaging Fri, 24 Oct 2014 21:55:00 +0100 + libcec (2.1.4-2) unstable; urgency=low * fixed: diff --git a/include/cectypes.h b/include/cectypes.h index 5d6144a..3b3c0b9 100644 --- a/include/cectypes.h +++ b/include/cectypes.h @@ -322,7 +322,7 @@ namespace CEC { /*! * libCEC's minor version number */ -#define CEC_LIB_VERSION_MINOR 1 +#define CEC_LIB_VERSION_MINOR 2 #define MSGSTART 0xFF #define MSGEND 0xFE @@ -1450,7 +1450,8 @@ typedef enum cec_client_version CEC_CLIENT_VERSION_2_1_2 = 0x2102, CEC_CLIENT_VERSION_2_1_3 = 0x2103, CEC_CLIENT_VERSION_2_1_4 = 0x2104, - CEC_CLIENT_VERSION_CURRENT = 0x2104 + CEC_CLIENT_VERSION_2_2_0 = 0x2200, + CEC_CLIENT_VERSION_CURRENT = 0x2200 } cec_client_version; typedef enum cec_server_version @@ -1483,6 +1484,7 @@ typedef enum cec_server_version CEC_SERVER_VERSION_2_1_2 = 0x2102, CEC_SERVER_VERSION_2_1_3 = 0x2103, CEC_SERVER_VERSION_2_1_4 = 0x2104, + CEC_SERVER_VERSION_2_2_0 = 0x2200, CEC_SERVER_VERSION_CURRENT = 0x2104 } cec_server_version; diff --git a/project/libcec/libcec.rc b/project/libcec/libcec.rc index a302d99..0505a8d 100644 Binary files a/project/libcec/libcec.rc and b/project/libcec/libcec.rc differ diff --git a/project/testclient/testclient.rc b/project/testclient/testclient.rc index 5990a9c..8d422ec 100644 Binary files a/project/testclient/testclient.rc and b/project/testclient/testclient.rc differ diff --git a/src/CecSharpTester/Properties/AssemblyInfo.cs b/src/CecSharpTester/Properties/AssemblyInfo.cs index cb4952f..4f52c1b 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.1.4.0")] -[assembly: AssemblyFileVersion("2.1.4.0")] +[assembly: AssemblyVersion("2.2.0.0")] +[assembly: AssemblyFileVersion("2.2.0.0")] diff --git a/src/LibCecSharp/AssemblyInfo.cpp b/src/LibCecSharp/AssemblyInfo.cpp index 19f1b43..386b69c 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.1.4.0")]; +[assembly:AssemblyVersionAttribute("2.2.0.0")]; [assembly:ComVisible(false)]; [assembly:CLSCompliantAttribute(true)]; diff --git a/src/LibCecSharp/CecSharpTypes.h b/src/LibCecSharp/CecSharpTypes.h index 563bb0a..74afce6 100644 --- a/src/LibCecSharp/CecSharpTypes.h +++ b/src/LibCecSharp/CecSharpTypes.h @@ -1233,10 +1233,14 @@ namespace CecSharp /// v2.1.4 /// Version2_1_4 = 0x2104, - /// + /// + /// v2.1.4 + /// + Version2_2_0 = 0x2200, + /// /// The current version /// - CurrentVersion = 0x2104 + CurrentVersion = 0x2200 }; /// @@ -1352,14 +1356,18 @@ namespace CecSharp /// v2.1.3 /// Version2_1_3 = 0x2103, - /// + /// /// v2.1.4 /// Version2_1_4 = 0x2104, /// + /// v2.2.0 + /// + Version2_2_0 = 0x2200, + /// /// The current version /// - CurrentVersion = 0x2104 + CurrentVersion = 0x2200 }; /// diff --git a/src/LibCecTray/Properties/AssemblyInfo.cs b/src/LibCecTray/Properties/AssemblyInfo.cs index 8d6e8ed..ed4ac9f 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.1.4.0")] -[assembly: AssemblyFileVersion("2.1.4.0")] +[assembly: AssemblyVersion("2.2.0.0")] +[assembly: AssemblyFileVersion("2.2.0.0")] diff --git a/src/lib/CECTypeUtils.h b/src/lib/CECTypeUtils.h index 0eccdcc..64f5c21 100644 --- a/src/lib/CECTypeUtils.h +++ b/src/lib/CECTypeUtils.h @@ -589,6 +589,8 @@ namespace CEC return "2.1.3"; case CEC_CLIENT_VERSION_2_1_4: return "2.1.4"; + case CEC_CLIENT_VERSION_2_2_0: + return "2.2.0"; default: return "Unknown"; } @@ -654,6 +656,8 @@ namespace CEC return "2.1.3"; case CEC_SERVER_VERSION_2_1_4: return "2.1.4"; + case CEC_SERVER_VERSION_2_2_0: + return "2.2.0"; default: return "Unknown"; }