+libcec (2.0.5-1) unstable; urgency=low
+
+ * changed:
+ * also try polls at least twice when it failed
+ * added methods to get the audiostatus and toggle the mute status from the
+ amplifier (if connected)
+ * added comboKey and iComboKeyTimeoutMs to libcec_configuration
+ * force cec_user_control_code_unknown to 0xFF
+ * fixed:
+ * check unsupported features properly
+ * only send an active source message when the stream path changed and we
+ weren't the active source yet
+ * don't mark as inactive source on routing changes
+ * press & hold
+ * never mark user control opcodes as unsupported
+ * report our OSD name to the TV, since some TVs don't request it
+ * initial audiostatus value
+ * don't log a no longer relevant FIXME
+
+ -- Pulse-Eight Packaging <packaging@pulse-eight.com> Thu, 6 Dec 2012 20:58:00 +0100
+
libcec (2.0.4-1) unstable; urgency=low
* changed:
+libcec (2.0.5-1) unstable; urgency=low
+
+ * changed:
+ * also try polls at least twice when it failed
+ * added methods to get the audiostatus and toggle the mute status from the
+ amplifier (if connected)
+ * added comboKey and iComboKeyTimeoutMs to libcec_configuration
+ * force cec_user_control_code_unknown to 0xFF
+ * fixed:
+ * check unsupported features properly
+ * only send an active source message when the stream path changed and we
+ weren't the active source yet
+ * don't mark as inactive source on routing changes
+ * press & hold
+ * never mark user control opcodes as unsupported
+ * report our OSD name to the TV, since some TVs don't request it
+ * initial audiostatus value
+ * don't log a no longer relevant FIXME
+
+ -- Pulse-Eight Packaging <packaging@pulse-eight.com> Thu, 6 Dec 2012 20:58:00 +0100
+
libcec (2.0.4-1) unstable; urgency=low
* changed:
!include "LogicLib.nsh"
!include "x64.nsh"
-Name "Pulse-Eight libCEC version 2.0.4"
+Name "Pulse-Eight libCEC version 2.0.5"
OutFile "..\build\libCEC-installer.exe"
XPStyle on
Config = new LibCECConfiguration();
Config.DeviceTypes.Types[0] = CecDeviceType.RecordingDevice;
Config.DeviceName = "CEC Tester";
- Config.ClientVersion = CecClientVersion.Version2_0_4;
+ Config.ClientVersion = CecClientVersion.Version2_0_5;
Config.SetCallbacks(this);
LogLevel = (int)CecLogLevel.All;
// 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.0.4.0")]
-[assembly: AssemblyFileVersion("2.0.4.0")]
+[assembly: AssemblyVersion("2.0.5.0")]
+[assembly: AssemblyFileVersion("2.0.5.0")]
[assembly:AssemblyTrademarkAttribute("")];
[assembly:AssemblyCultureAttribute("")];
-[assembly:AssemblyVersionAttribute("2.0.4.0")];
+[assembly:AssemblyVersionAttribute("2.0.5.0")];
[assembly:ComVisible(false)];
[assembly:CLSCompliantAttribute(true)];
/// <summary>
/// v2.0.4
/// </summary>
- Version2_0_4 = 0x2004
+ Version2_0_4 = 0x2004,
+ /// <summary>
+ /// v2.0.5
+ /// </summary>
+ Version2_0_5 = 0x2005
};
/// <summary>
/// <summary>
/// v2.0.4
/// </summary>
- Version2_0_4 = 0x2004
+ Version2_0_4 = 0x2004,
+ /// <summary>
+ /// v2.0.5
+ /// </summary>
+ Version2_0_5 = 0x2005
};
/// <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.0.4.0")]
-[assembly: AssemblyFileVersion("2.0.4.0")]
+[assembly: AssemblyVersion("2.0.5.0")]
+[assembly: AssemblyFileVersion("2.0.5.0")]
{
if (_config == null)
{
- _config = new LibCECConfiguration { DeviceName = "CEC Tray", ClientVersion = CecClientVersion.Version2_0_4 };
+ _config = new LibCECConfiguration { DeviceName = "CEC Tray", ClientVersion = CecClientVersion.Version2_0_5 };
_config.DeviceTypes.Types[0] = CecDeviceType.RecordingDevice;
_config.SetCallbacks(this);