From b5d801b811b10d640383dcd00255c042d486a857 Mon Sep 17 00:00:00 2001 From: Lars Op den Kamp Date: Fri, 24 Oct 2014 22:02:15 +0200 Subject: [PATCH] bump to v2.2.0 --- ChangeLog | 16 ++++++++++++++++ debian/changelog | 16 ++++++++++++++++ include/cectypes.h | 6 ++++-- project/libcec/libcec.rc | Bin 4592 -> 4592 bytes project/testclient/testclient.rc | Bin 4626 -> 4626 bytes src/CecSharpTester/Properties/AssemblyInfo.cs | 4 ++-- src/LibCecSharp/AssemblyInfo.cpp | 2 +- src/LibCecSharp/CecSharpTypes.h | 16 ++++++++++++---- src/LibCecTray/Properties/AssemblyInfo.cs | 4 ++-- src/lib/CECTypeUtils.h | 4 ++++ 10 files changed, 57 insertions(+), 11 deletions(-) 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 a302d99a5e525516220209720fd37af914c16349..0505a8dccf2349fc9a184b93340f2d10f394fe4f 100644 GIT binary patch delta 58 zcmeyM{6Trc0ajKc1|0^2$wygrA*{{cSrwUqOg*5WJ-77a2OMIX{W#w+LWDNkb8ln= E0O!XKeE 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"; } -- 2.34.1