Skip to content

Commit

Permalink
version bump to prepare for release 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
opdenkamp committed Mar 8, 2013
1 parent cf84504 commit 331d659
Show file tree
Hide file tree
Showing 13 changed files with 83 additions and 17 deletions.
28 changes: 27 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,30 @@
libcec (2.1.0-1) unstable; urgency=low
libcec (2.1.1-1) unstable; urgency=low

* changed / added:
* send an alert when the TV does not respond to polls
* fixed:
* LG didn't switch sources after the TV powered up
* always poll a device when the status is unknown, and don't try to
determine whether it needs to be polled by checking the status of other
devices
* don't mark a device as inactive when receiving a routing change message,
only when another device was made acive. fixes the issue that rc
passthrough doesn't work when a tv sends a quick routing change to
another port before requesting the active source when coming out of
standby
* LibCecSharp: fixed 14 char long OSD name (wasn't \0 terminated)
* LibCecSharp: fixed return value of GetActiveDevices(). issue #131
* cec-tray: fixed index out of range exception in CECSettingNumeric.cs.
bugzid: 2082
* cec-tray: ensure that the tray app only initialises once. bugzid: 2082
* rpi: don't set the physical address to 1.0.0.0 when receiving
VC_HDMI_UNPLUGGED. it may wake up device when they were just sent to
standby. issue #142
* osx: use the correct dylib name in cecloader.h, used by cec-client

-- Pulse-Eight Packaging <packaging@pulse-eight.com> Fri, 8 Mar 2013 17:21:00 +0100

libcec (2.1.0-1) unstable; urgency=low

* changed / added:
* added vendor id for Denon
Expand Down
28 changes: 27 additions & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,30 @@
libcec (2.1.0-1) unstable; urgency=low
libcec (2.1.1-1) unstable; urgency=low

* changed / added:
* send an alert when the TV does not respond to polls
* fixed:
* LG didn't switch sources after the TV powered up
* always poll a device when the status is unknown, and don't try to
determine whether it needs to be polled by checking the status of other
devices
* don't mark a device as inactive when receiving a routing change message,
only when another device was made acive. fixes the issue that rc
passthrough doesn't work when a tv sends a quick routing change to
another port before requesting the active source when coming out of
standby
* LibCecSharp: fixed 14 char long OSD name (wasn't \0 terminated)
* LibCecSharp: fixed return value of GetActiveDevices(). issue #131
* cec-tray: fixed index out of range exception in CECSettingNumeric.cs.
bugzid: 2082
* cec-tray: ensure that the tray app only initialises once. bugzid: 2082
* rpi: don't set the physical address to 1.0.0.0 when receiving
VC_HDMI_UNPLUGGED. it may wake up device when they were just sent to
standby. issue #142
* osx: use the correct dylib name in cecloader.h, used by cec-client

-- Pulse-Eight Packaging <packaging@pulse-eight.com> Fri, 8 Mar 2013 17:21:00 +0100

libcec (2.1.0-1) unstable; urgency=low

* changed / added:
* added vendor id for Denon
Expand Down
6 changes: 4 additions & 2 deletions include/cectypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -1406,7 +1406,8 @@ typedef enum cec_client_version
CEC_CLIENT_VERSION_2_0_4 = 0x2004,
CEC_CLIENT_VERSION_2_0_5 = 0x2005,
CEC_CLIENT_VERSION_2_1_0 = 0x2100,
CEC_CLIENT_VERSION_CURRENT = 0x2100
CEC_CLIENT_VERSION_2_1_1 = 0x2101,
CEC_CLIENT_VERSION_CURRENT = 0x2101
} cec_client_version;

typedef enum cec_server_version
Expand Down Expand Up @@ -1435,7 +1436,8 @@ typedef enum cec_server_version
CEC_SERVER_VERSION_2_0_4 = 0x2004,
CEC_SERVER_VERSION_2_0_5 = 0x2005,
CEC_SERVER_VERSION_2_1_0 = 0x2100,
CEC_SERVER_VERSION_CURRENT = 0x2100
CEC_SERVER_VERSION_2_1_1 = 0x2101,
CEC_SERVER_VERSION_CURRENT = 0x2101
} cec_server_version;

struct libcec_configuration
Expand Down
2 changes: 1 addition & 1 deletion project/libCEC.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
!include "LogicLib.nsh"
!include "x64.nsh"

Name "Pulse-Eight libCEC version 2.1.0"
Name "Pulse-Eight libCEC version 2.1.1"
OutFile "..\build\libCEC-installer.exe"

XPStyle on
Expand Down
Binary file modified project/libcec.rc
Binary file not shown.
Binary file modified project/testclient.rc
Binary file not shown.
4 changes: 2 additions & 2 deletions src/CecSharpTester/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// 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.0.0")]
[assembly: AssemblyFileVersion("2.1.0.0")]
[assembly: AssemblyVersion("2.1.1.0")]
[assembly: AssemblyFileVersion("2.1.1.0")]
2 changes: 1 addition & 1 deletion src/LibCecSharp/AssemblyInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ using namespace System::Security::Permissions;
[assembly:AssemblyTrademarkAttribute("")];
[assembly:AssemblyCultureAttribute("")];

[assembly:AssemblyVersionAttribute("2.1.0.0")];
[assembly:AssemblyVersionAttribute("2.1.1.0")];

[assembly:ComVisible(false)];
[assembly:CLSCompliantAttribute(true)];
Expand Down
16 changes: 12 additions & 4 deletions src/LibCecSharp/CecSharpTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -1191,7 +1191,11 @@ namespace CecSharp
/// <summary>
/// v2.1.0
/// </summary>
Version2_1_0 = 0x2100
Version2_1_0 = 0x2100,
/// <summary>
/// v2.1.1
/// </summary>
Version2_1_1 = 0x2101
};

/// <summary>
Expand Down Expand Up @@ -1294,7 +1298,11 @@ namespace CecSharp
/// <summary>
/// v2.1.0
/// </summary>
Version2_1_0 = 0x2100
Version2_1_0 = 0x2100,
/// <summary>
/// v2.1.1
/// </summary>
Version2_1_1 = 0x2101
};

/// <summary>
Expand Down Expand Up @@ -1685,8 +1693,8 @@ namespace CecSharp
PhysicalAddress = CEC_DEFAULT_PHYSICAL_ADDRESS;
BaseDevice = (CecLogicalAddress)CEC_DEFAULT_BASE_DEVICE;
HDMIPort = CEC_DEFAULT_HDMI_PORT;
ClientVersion = CecClientVersion::Version2_1_0;
ServerVersion = CecServerVersion::Version2_1_0;
ClientVersion = CecClientVersion::Version2_1_1;
ServerVersion = CecServerVersion::Version2_1_1;
TvVendor = CecVendorId::Unknown;

GetSettingsFromROM = false;
Expand Down
4 changes: 2 additions & 2 deletions src/LibCecTray/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// 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.0.0")]
[assembly: AssemblyFileVersion("2.1.0.0")]
[assembly: AssemblyVersion("2.1.1.0")]
[assembly: AssemblyFileVersion("2.1.1.0")]
4 changes: 2 additions & 2 deletions src/LibCecTray/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/LibCecTray/Properties/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
<value>Could not detect to any CEC adapter. Please check your configuration. Do you want to try again?</value>
</data>
<data name="app_name" xml:space="preserve">
<value>Pulse-Eight USB-CEC Adapter - libCECTray BETA3</value>
<value>Pulse-Eight USB-CEC Adapter - libCECTray</value>
</data>
<data name="device_type_changed" xml:space="preserve">
<value>You have changed the device type. Persist the configuration, and restart the application to use the new setting.</value>
Expand Down
4 changes: 4 additions & 0 deletions src/lib/CECTypeUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -571,6 +571,8 @@ namespace CEC
return "2.0.5";
case CEC_CLIENT_VERSION_2_1_0:
return "2.1.0";
case CEC_CLIENT_VERSION_2_1_1:
return "2.1.1";
default:
return "Unknown";
}
Expand Down Expand Up @@ -628,6 +630,8 @@ namespace CEC
return "2.0.5";
case CEC_SERVER_VERSION_2_1_0:
return "2.1.0";
case CEC_SERVER_VERSION_2_1_1:
return "2.1.1";
default:
return "Unknown";
}
Expand Down

0 comments on commit 331d659

Please sign in to comment.