From: Lars Op den Kamp Date: Tue, 2 Oct 2012 23:01:48 +0000 (+0200) Subject: bump to v2.0.0 X-Git-Tag: upstream/2.2.0~1^2~17^2^2~46 X-Git-Url: https://git.piment-noir.org/?p=deb_libcec.git;a=commitdiff_plain;h=999665e393983d93aa0309fbaf608267ed1207ba bump to v2.0.0 --- diff --git a/ChangeLog b/ChangeLog index b2e908e..45c824e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +libcec (2.0.1-1) unstable; urgency=low + + * changed/added: + * added Loewe support + * added signal handlers to client applications + * Documentation updated + * interface changes: + * WARNING: breaking API changes + * clean up: deprecated methods and fields removed + * callback parameters changed to fix plain C compilation + * fixed: + * fix plain C compilation + + -- Pulse-Eight Packaging Wed, 3 Oct 2012 00:58:00 +0100 + libcec (1.9.1-1) unstable; urgency=low * changed/added: diff --git a/debian/changelog b/debian/changelog index b2e908e..45c824e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,18 @@ +libcec (2.0.1-1) unstable; urgency=low + + * changed/added: + * added Loewe support + * added signal handlers to client applications + * Documentation updated + * interface changes: + * WARNING: breaking API changes + * clean up: deprecated methods and fields removed + * callback parameters changed to fix plain C compilation + * fixed: + * fix plain C compilation + + -- Pulse-Eight Packaging Wed, 3 Oct 2012 00:58:00 +0100 + libcec (1.9.1-1) unstable; urgency=low * changed/added: diff --git a/include/cec.h b/include/cec.h index fa612ce..8d14164 100644 --- a/include/cec.h +++ b/include/cec.h @@ -36,7 +36,7 @@ #include "cectypes.h" -#define LIBCEC_VERSION_CURRENT CEC_SERVER_VERSION_1_99_0 +#define LIBCEC_VERSION_CURRENT CEC_SERVER_VERSION_2_0_0 namespace CEC { diff --git a/include/cectypes.h b/include/cectypes.h index 6f0c372..d05a392 100644 --- a/include/cectypes.h +++ b/include/cectypes.h @@ -1356,6 +1356,7 @@ typedef enum cec_client_version CEC_CLIENT_VERSION_1_8_2 = 0x1802, CEC_CLIENT_VERSION_1_9_0 = 0x1900, CEC_CLIENT_VERSION_1_99_0 = 0x1990, + CEC_CLIENT_VERSION_2_0_0 = 0x2000, } cec_client_version; typedef enum cec_server_version @@ -1377,6 +1378,7 @@ typedef enum cec_server_version CEC_SERVER_VERSION_1_8_2 = 0x1802, CEC_SERVER_VERSION_1_9_0 = 0x1900, CEC_SERVER_VERSION_1_99_0 = 0x1990, + CEC_SERVER_VERSION_2_0_0 = 0x2000, } cec_server_version; struct libcec_configuration diff --git a/project/cec-config.rc b/project/cec-config.rc index 7940825..8927346 100644 Binary files a/project/cec-config.rc and b/project/cec-config.rc differ diff --git a/project/libCEC.nsi b/project/libCEC.nsi index 2292fb3..eddaa10 100644 --- a/project/libCEC.nsi +++ b/project/libCEC.nsi @@ -7,7 +7,7 @@ !include "LogicLib.nsh" !include "x64.nsh" -Name "Pulse-Eight USB-CEC Adapter" +Name "Pulse-Eight libCEC version 2.0.0" OutFile "..\build\libCEC-installer.exe" XPStyle on diff --git a/project/libcec.rc b/project/libcec.rc index 3ac6a81..579649f 100644 Binary files a/project/libcec.rc and b/project/libcec.rc differ diff --git a/project/testclient.rc b/project/testclient.rc index 1e5f447..b7f8c08 100644 Binary files a/project/testclient.rc and b/project/testclient.rc differ diff --git a/src/CecSharpTester/Properties/AssemblyInfo.cs b/src/CecSharpTester/Properties/AssemblyInfo.cs index 53d167c..2b249ff 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("1.9.0.0")] -[assembly: AssemblyFileVersion("1.9.0.0")] +[assembly: AssemblyVersion("2.0.0.0")] +[assembly: AssemblyFileVersion("2.0.0.0")] diff --git a/src/LibCecSharp/AssemblyInfo.cpp b/src/LibCecSharp/AssemblyInfo.cpp index c3151e2..ed06b3b 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("1.99.0.0")]; +[assembly:AssemblyVersionAttribute("2.0.0.0")]; [assembly:ComVisible(false)]; [assembly:CLSCompliantAttribute(true)]; diff --git a/src/LibCecSharp/CecSharpTypes.h b/src/LibCecSharp/CecSharpTypes.h index c609526..a1be0d4 100644 --- a/src/LibCecSharp/CecSharpTypes.h +++ b/src/LibCecSharp/CecSharpTypes.h @@ -1159,7 +1159,11 @@ namespace CecSharp /// /// v2.0.0-pre /// - Version1_99_0 = 0x1990 + Version1_99_0 = 0x1990, + /// + /// v2.0.0 + /// + Version2_0_ = 0x2000 }; /// @@ -1234,7 +1238,11 @@ namespace CecSharp /// /// v2.0.0-pre /// - Version1_99_0 = 0x1990 + Version1_99_0 = 0x1990, + /// + /// v2.0.0 + /// + Version2_0_ = 0x2000 }; /// diff --git a/src/cec-config-gui/Properties/AssemblyInfo.cs b/src/cec-config-gui/Properties/AssemblyInfo.cs index a13c18b..b793ae2 100644 --- a/src/cec-config-gui/Properties/AssemblyInfo.cs +++ b/src/cec-config-gui/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("1.99.0.0")] -[assembly: AssemblyFileVersion("1.99.0.0")] +[assembly: AssemblyVersion("2.0.0.0")] +[assembly: AssemblyFileVersion("2.0.0.0")] diff --git a/src/lib/CECTypeUtils.h b/src/lib/CECTypeUtils.h index 9635ccf..45a62b6 100644 --- a/src/lib/CECTypeUtils.h +++ b/src/lib/CECTypeUtils.h @@ -555,6 +555,8 @@ namespace CEC return "1.9.0"; case CEC_CLIENT_VERSION_1_99_0: return "2.0.0-pre"; + case CEC_CLIENT_VERSION_2_0_0: + return "2.0.0"; default: return "Unknown"; } @@ -598,6 +600,8 @@ namespace CEC return "1.9.0"; case CEC_SERVER_VERSION_1_99_0: return "2.0.0-pre"; + case CEC_CLIENT_VERSION_2_0_0: + return "2.0.0"; default: return "Unknown"; }