X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=ChangeLog;h=57b6228d8dd841b720a1b4372b8906831a1644f9;hb=fdd91966a0d9d32b3e68cd91b6612840b80b227d;hp=709cdd2703011c7b8a71a77010d61fc10214232c;hpb=4af74d0bd3f9b077a2b67fe9bbc4ad9a09a27662;p=deb_libcec.git diff --git a/ChangeLog b/ChangeLog index 709cdd2..57b6228 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,115 @@ +libcec (1.2-1) unstable; urgency=low + + * bugfixes: + * pass the deck_control command to libcec listeners + * check whether the initiator is valid in CCECProcessor::ParseCommand(). + fixes possible segfault when parsing invalid data + + -- Pulse-Eight Packaging Sat, 12 Nov 2011 13:36:00 +0100 + +libcec (1.1-3) unstable; urgency=low + + * fixed return value in CCECProcessor::SetStreamPath(), which prevented + active source and menu state from being sent + + -- Pulse-Eight Packaging Fri, 11 Nov 2011 23:36:00 +0100 + +libcec (1.1-2) unstable; urgency=low + + * forgot to update the headers to v1.1 + + -- Pulse-Eight Packaging Fri, 11 Nov 2011 18:56:00 +0100 + +libcec (1.1-1) unstable; urgency=low + + * interface changes: + * added logical address autodetection and let libcec handle multiple types + simultaniously. for logical address autodetection, you have to use + CECInit()/cec_init_typed() instead of CECCreate()/cec_init() + * added SetActiveSource()/cec_set_active_source() to the interface. + deprecated SetActiveView()/cec_set_active_view() + * added SetMenuState() + * added PollDevice()/cec_poll_device() + * removed duplicate method SetActiveSource() / SetActiveView() + * added SetDeckControlMode() and SetDeckInfo() + * fixed: + * added vendor detection for panasonic and broadcast active view and set + menu state when a panasonic device sets the stream path. thanks for the + pointer cptcoconut. + * added vendor code for pioneer + * osd string is 13 chars max. don't send more + * send the correct cec version for each device + * switch to panasonic specific cec implementation if a panasonic device was + detected + * send the correct device type in TransmitPhysicalAddress() + * send a reply from the correct device when the stream path is requested + * opcode 0x80 means the stream path changed, not the physical address + * don't poll for a vendor ID in monitoring mode + * fixed parameter parsing in SetVendorId() + * buffer up commands that are received while waiting for an ack. only send + 'active source' message for the actual active source + * win32: prepend the com port path with '\\.\', so com ports > 9 can be + accessed. thanks smolesen + * audio systems cannot be an active source, so don't transmit active + source message from this device + * only send 'active source' when powered on + * only set the osd name for the primary device. use default values for + others + * increase physical address with 0x100 per device + * win32: removed unneeded afxres.h include in the resource files, which + is not present when using studio express. thanks Ghuron + * fixed C headers + * mark the active source as active and other devices as inactive + * set the power status to 'on' when receiving CEC_USER_CONTROL_CODE_POWER + * transmit the menu state as (active) when the stream path is set + * changed: + * changed copyright of boblight files with permission of the original + author + * partial handling of audio related opcodes + * more consistent log messages + * set a device type and name for each CCECBusDevice + * keep a power and menu state per device + * renamed all Broadcast...() and Report...() methods to Transmit...() + * renamed SetOSDString() to TransmitOSDString() + * changed debug level of 'did not receive ack' from error to debug + * only set the power status to 'on' for the primary device + * moved method decriptions from cecc.h to cec.h + * only send a power on command when a device isn't on already and set + the power state to CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON while + powering on + * handle CEC_OPCODE_STANDBY + * handle CEC_OPCODE_ACTIVE_SOURCE + * always start in standby mode and let the tv (or other device) send the + power on command + * renamed the last few enums + * handle deck related opcodes. + * added TransmitVendorId(), but only transmit the id if it's not set to 'unknown' + + -- Pulse-Eight Packaging Fri, 11 Nov 2011 17:42:00 +0100 + +libcec (1.0-1) unstable; urgency=low + + * interface changes: + * set lib interface version back to 1.0 and rename GetLibVersion() to + GetLibVersionMajor() and GetMinVersion() to GetMinLibVersion() + * added GetLibVersionMinor()/cec_get_lib_version_minor() and set the minor + version number to 1 + * fixed: + * samsung's vendor specific remote keypresses don't send key releases. added + call to AddKey() directly after the keypress + * always reset the button press time in CLibCEC::AddKey() + * always wait for a signal in CCECProcessor::Transmit() + * changed: + * drop shared_ptr and use a normal pointer. removed boost dependency + + -- Pulse-Eight Packaging Fri, 04 Nov 2011 00:14:00 +0100 + +libcec (0.8-2) unstable; urgency=low + + * added 'libboost-dev' to build deps + + -- Pulse-Eight Packaging Tue, 01 Nov 2011 23:31:00 +0100 + libcec (0.8-1) unstable; urgency=low * interface changes: @@ -6,10 +118,10 @@ libcec (0.8-1) unstable; urgency=low * added GetDeviceMenuLanguage()/cec_get_device_menu_language() * added GetDeviceCecVersion()/cec_get_device_cec_version() * added SwitchMonitoring()/cec_switch_monitoring() to the interface. when - monitoring is enabled, the device will only log the data it received, - but will not respond to any message + monitoring is enabled, the device will only log the data it received, + but will not respond to any message * removed timeout parameter in Transmit() and included the ack timeout in - the cec_command struct + the cec_command struct * made the vendor id -> vendor name translation available * made CEC_LOG levels powers of 2 * introduced CEC_LOG_TRAFFIC log level @@ -18,25 +130,25 @@ libcec (0.8-1) unstable; urgency=low * wait for ack while keeping a lock * wait for the processor thread to start before continueing on startup * wait for messages to be transmitted before continueing in - CCECProcessor::Transmit() + CCECProcessor::Transmit() * only set the logical address once when it has changed * correct source for broadcast messages * win32: create Release type installer * changed: * make all reads and write in CAdapterCommunication go through buffers. * poll for a vendor ID of connected devices and switch to a non-standard - CEC implementation if needed. + CEC implementation if needed. * added vendor detection of Samsung and LG devices * handle samsung remote command 'return' * cec-client: * added -la and --logical-address to the command line params * added -d and --log-level params to cec-client * added -sf and --short-log-file, which only log the actual messages, not - the level and timestamp + the level and timestamp * added -f and --log-file parameters to cec-client * added option to change the log level to cec-client - -- Pulse-Eight Packaging Tue, 01 Nov 2011 22:58:00 +0200 + -- Pulse-Eight Packaging Tue, 01 Nov 2011 22:58:00 +0100 libcec (0.7-1) unstable; urgency=low