+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 <packaging@pulse-eight.com> Fri, 24 Oct 2014 21:55:00 +0100
+
libcec (2.1.4-2) unstable; urgency=low
* fixed:
+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 <packaging@pulse-eight.com> Fri, 24 Oct 2014 21:55:00 +0100
+
libcec (2.1.4-2) unstable; urgency=low
* fixed:
/*!
* libCEC's minor version number
*/
-#define CEC_LIB_VERSION_MINOR 1
+#define CEC_LIB_VERSION_MINOR 2
#define MSGSTART 0xFF
#define MSGEND 0xFE
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
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;
// 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")]
[assembly:AssemblyTrademarkAttribute("")];
[assembly:AssemblyCultureAttribute("")];
-[assembly:AssemblyVersionAttribute("2.1.4.0")];
+[assembly:AssemblyVersionAttribute("2.2.0.0")];
[assembly:ComVisible(false)];
[assembly:CLSCompliantAttribute(true)];
/// v2.1.4
/// </summary>
Version2_1_4 = 0x2104,
- /// <summary>
+ /// <summary>
+ /// v2.1.4
+ /// </summary>
+ Version2_2_0 = 0x2200,
+ /// <summary>
/// The current version
/// </summary>
- CurrentVersion = 0x2104
+ CurrentVersion = 0x2200
};
/// <summary>
/// v2.1.3
/// </summary>
Version2_1_3 = 0x2103,
- /// <summary>
+ /// <summary>
/// v2.1.4
/// </summary>
Version2_1_4 = 0x2104,
/// <summary>
+ /// v2.2.0
+ /// </summary>
+ Version2_2_0 = 0x2200,
+ /// <summary>
/// The current version
/// </summary>
- CurrentVersion = 0x2104
+ CurrentVersion = 0x2200
};
/// <summary>
// 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")]
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";
}
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";
}