cec: updated changelog and version numbers for v1.4.0
authorLars Op den Kamp <lars@opdenkamp.eu>
Thu, 12 Jan 2012 21:02:12 +0000 (22:02 +0100)
committerLars Op den Kamp <lars@opdenkamp.eu>
Thu, 12 Jan 2012 21:05:05 +0000 (22:05 +0100)
ChangeLog
configure.ac
debian/changelog
include/cectypes.h
project/libcec.rc
project/testclient.rc
src/CecSharpTester/AssemblyInfo.cs
src/LibCecSharp/AssemblyInfo.cpp

index 7bd454739b57597e412d02d4b86ef3ea8896573a..fbf5d237ae7d516a39dc2c60e6d17de634a8d1c2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,30 @@
-libcec (1.3-3) unstable; urgency=low
+libcec (1.4-1) unstable; urgency=low
+
+   * changed/added:
+     * added the vendor id for Sony
+     * always refresh the power state of a device when it hasn't been updated
+       for 30 seconds
+     * do silent builds by default
+   * interface changes:
+     * added optional callback methods to libCEC. enable them by calling
+       EnableCallbacks(ICECCallbacks *callbacks) /
+       cec_enable_callbacks(ICECCallbacks *callbacks). after this method is
+       called, the GetNext...() methods will not return any data
+     * added the same callbacks to LibCecSharp. implement CecCallbackMethods
+       and override the methods in there
+   * fixed:
+     * use the given timeout when trying to open a connection to the CEC
+       adapter
+     * resolved difference between method name in LibCECC.cpp and cecc.h.
+       credits: Doug Johnson
+     * don't transmit physical addresses while holding a lock in CCECProcessor
+     * don't hold a lock when sending an active source message.
+     * unload libCEC when the lib version is invalid
+     * "unused" warnings suppressed     
+
+ -- Pulse-Eight Packaging <packaging@pulse-eight.com>  Thu, 12 Jan 2012 19:06:00 +0100
+ libcec (1.3-3) unstable; urgency=low
 
    * changed/added:
      * place in libudev include in an extern C block. fixes compilations on
index a07f9586bb6124be9e0663ec6cd9cb3d4e877093..ebb68da4a7640259c693efa7497aeefed439594f 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT([libcec], 1:3:0)
+AC_INIT([libcec], 1:4:0)
 AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
 
 AM_SILENT_RULES([yes])
index 7bd454739b57597e412d02d4b86ef3ea8896573a..fbf5d237ae7d516a39dc2c60e6d17de634a8d1c2 100644 (file)
@@ -1,4 +1,30 @@
-libcec (1.3-3) unstable; urgency=low
+libcec (1.4-1) unstable; urgency=low
+
+   * changed/added:
+     * added the vendor id for Sony
+     * always refresh the power state of a device when it hasn't been updated
+       for 30 seconds
+     * do silent builds by default
+   * interface changes:
+     * added optional callback methods to libCEC. enable them by calling
+       EnableCallbacks(ICECCallbacks *callbacks) /
+       cec_enable_callbacks(ICECCallbacks *callbacks). after this method is
+       called, the GetNext...() methods will not return any data
+     * added the same callbacks to LibCecSharp. implement CecCallbackMethods
+       and override the methods in there
+   * fixed:
+     * use the given timeout when trying to open a connection to the CEC
+       adapter
+     * resolved difference between method name in LibCECC.cpp and cecc.h.
+       credits: Doug Johnson
+     * don't transmit physical addresses while holding a lock in CCECProcessor
+     * don't hold a lock when sending an active source message.
+     * unload libCEC when the lib version is invalid
+     * "unused" warnings suppressed     
+
+ -- Pulse-Eight Packaging <packaging@pulse-eight.com>  Thu, 12 Jan 2012 19:06:00 +0100
+ libcec (1.3-3) unstable; urgency=low
 
    * changed/added:
      * place in libudev include in an extern C block. fixes compilations on
index ce09d8383e37f7a82e0dadb632a904fa810101e8..ba21200fece893f93d0c13cde4be1f56d6ca5828 100644 (file)
@@ -78,7 +78,7 @@ namespace CEC {
 
 #define CEC_MIN_LIB_VERSION          1
 #define CEC_LIB_VERSION_MAJOR        1
-#define CEC_LIB_VERSION_MINOR        3
+#define CEC_LIB_VERSION_MINOR        4
 
 typedef enum cec_abort_reason
 {
index e18b9a311b2c23052b1cef4c0301dff396674f3b..2b1e541067631eedcfde7de56b18f34d9b01706e 100644 (file)
Binary files a/project/libcec.rc and b/project/libcec.rc differ
index 339801b3d2bb0e601199803863fe9aa24254f54f..f80c470ef13aec4dc8614fc258541c45b96d3b3a 100644 (file)
Binary files a/project/testclient.rc and b/project/testclient.rc differ
index e3242fb8d21cafc2e5f61f2ce3eb2d2fc3690a72..d742067945bb586f2971f1563fb4eb4199579f14 100644 (file)
@@ -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.3.2.0")]
-[assembly: AssemblyFileVersion("1.3.2.0")]
+[assembly: AssemblyVersion("1.4.0.0")]
+[assembly: AssemblyFileVersion("1.4.0.0")]
index 0624b82a9c91662984d5494958b43fd37f3df380..c5dd8e2e0025cb228a23e20026bb144bae9b111f 100644 (file)
@@ -31,7 +31,7 @@ using namespace System::Security::Permissions;
 // You can specify all the value or you can default the Revision and Build Numbers
 // by using the '*' as shown below:
 
-[assembly:AssemblyVersionAttribute("1.3.2.0")];
+[assembly:AssemblyVersionAttribute("1.4.0.0")];
 
 [assembly:ComVisible(false)];