cec: fixed - don't change the active device when the stream path changed.
[deb_libcec.git] / ChangeLog
CommitLineData
dfb08039
LOK
1libcec (1.4-1) unstable; urgency=low
2
3 * changed/added:
4 * make libudev optional. if libudev is not available on linux, adapter
5 autodetection will also not be available. fixes compilation on Hardy/ATV1
6 * added a C++ CLR wrapper for libCEC, so libCEC can be used by any .NET
7 language
8 * added vendor support for LG
9 * added vendor support for Philips
10 * added vendor support for Yamaha
11 * added vendor support for Onkyo
12 * added 'scan' command to cec-client, that displays info about devices on
13 the bus. made all ToString() methods available on the interface.
14 * added '-s' or '--single-command' to cec-client. starting cec-client with
15 this parameter executes a single command in cec-client and does not power
16 on devices on startup and power them off on exit. this way, you can use
17 cec-client in a shell script. since there's some handshaking involved at
18 startup, this is not very fast. to execute a command and only display the
19 result and any error/warning, execute it with
20 RESULT=`echo command | cec-client -s -d 3` (on linux/osx, win32 batch
21 files are a bit different)
22 * added physical address option to cec-client. credits @joshua-nord.
23 closes #3
24 * handle image view on and text view on
25 * handle routing information and report physical address opcodes
26 * handle audio status updates
27 * send ping and bootloader commands via the output queue
28 * scan the CEC bus for devices when starting libcec
29 * pass all commands that are directed at libcec to listeners
30 * interface changes:
31 * added GetActiveSource()/cec_get_active_source()
32 * added IsActiveSource()/cec_is_active_source()
33 * added GetDevicePhysicalAddress()/cec_get_device_physical_address()
34 * added GetDeviceOSDName()/cec_get_osd_name()
35 * added SendKeypress()/cec_send_keypress() and SendKeyRelease()/
36 cec_send_key_release()
37 * added VolumeUp()/cec_volume_up(), VolumeDown()/cec_volume_down(),
38 MuteAudio()/cec_mute_audio()
39 * added GetActiveDevices()/cec_get_active_devices(), IsActiveDevice()/
40 cec_is_active_device(), IsActiveDeviceType()/cec_is_active_device_type().
41 * added SetHDMIPort()/cec_set_hdmi_port(). devices are now detected on load
42 and when a device with the same physical address is detected, libcec will
43 use the selected hdmi port on that device. should fix source selection on
44 other devices, like an amplifier
45 * added a hook in libcec for physical address autodetection
46 * fixed:
47 * don't request the physical address from the tv (it's always 0x0000)
48 * set the proper ackmask before doing anything else
49 * don't unlock the transmit mutex in CCECProcessor while waiting for an
50 answer
51 * fix device polling
52 * refactor CEC read/write. keep a single lock for all writes, not one per
53 device
54 * ignore other data while waiting for a response
55 * retry failed tranmissions
56 * don't delete a message before it's been sent when starting the bootloader
57 * or when sending a ping
58 * fixed possible segfault when switching the command handler after a vendor
59 * id changed
60 * handle audio opcodes correctly
61 * inactive source should be directly addressed at the TV
62 * don't report a changed physical address when it hasn't changed
63 * routing information sets the stream path, not the physical address
64 * don't scan the whole bus in CCECProcessor::IsActiveDeviceType()
65 * don't request the vendor id from devices that are handled by libcec
66 * mark device status as present when a command was received from a device
67 * always send a power on command in CCECBusDevice::PowerOn()
68 * don't request updates statusses unless needed
69 * report physical address sends 3 parameters, not 2. check whether the
70 device type is correct
71 * devices can send vendor commands from other vendors, so don't assume the
72 device is of a certain vendor when it sends commands with a vendor id
73 * thread safety fixes. bugzid: 19
74 * clear any previous input when opening a connection to the adapter.
75 bugzid: 54
76 * use the correct source address in CSLCommandHandler::HandleVendorCommand()
77 * uncorrected CEC_OPCODE_DEVICE_VENDOR_ID. closes #5
78 * renamed enum methods. fixes potential macro collision with isset().
79 thanks davilla
80
81 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Sat, 12 Nov 2011 13:36:00 +0100
82
94d98b71
LOK
83libcec (1.2-1) unstable; urgency=low
84
85 * bugfixes:
86 * pass the deck_control command to libcec listeners
87 * check whether the initiator is valid in CCECProcessor::ParseCommand().
88 fixes possible segfault when parsing invalid data
89
90 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Sat, 12 Nov 2011 13:36:00 +0100
91
c3da3073
LOK
92libcec (1.1-3) unstable; urgency=low
93
94 * fixed return value in CCECProcessor::SetStreamPath(), which prevented
95 active source and menu state from being sent
96
97 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Fri, 11 Nov 2011 23:36:00 +0100
98
f0197d4f
LOK
99libcec (1.1-2) unstable; urgency=low
100
101 * forgot to update the headers to v1.1
102
103 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Fri, 11 Nov 2011 18:56:00 +0100
104
4f8dcef2
LOK
105libcec (1.1-1) unstable; urgency=low
106
107 * interface changes:
108 * added logical address autodetection and let libcec handle multiple types
109 simultaniously. for logical address autodetection, you have to use
110 CECInit()/cec_init_typed() instead of CECCreate()/cec_init()
111 * added SetActiveSource()/cec_set_active_source() to the interface.
112 deprecated SetActiveView()/cec_set_active_view()
113 * added SetMenuState()
114 * added PollDevice()/cec_poll_device()
115 * removed duplicate method SetActiveSource() / SetActiveView()
116 * added SetDeckControlMode() and SetDeckInfo()
117 * fixed:
118 * added vendor detection for panasonic and broadcast active view and set
119 menu state when a panasonic device sets the stream path. thanks for the
120 pointer cptcoconut.
121 * added vendor code for pioneer
122 * osd string is 13 chars max. don't send more
123 * send the correct cec version for each device
124 * switch to panasonic specific cec implementation if a panasonic device was
125 detected
126 * send the correct device type in TransmitPhysicalAddress()
127 * send a reply from the correct device when the stream path is requested
128 * opcode 0x80 means the stream path changed, not the physical address
129 * don't poll for a vendor ID in monitoring mode
130 * fixed parameter parsing in SetVendorId()
131 * buffer up commands that are received while waiting for an ack. only send
132 'active source' message for the actual active source
133 * win32: prepend the com port path with '\\.\', so com ports > 9 can be
134 accessed. thanks smolesen
135 * audio systems cannot be an active source, so don't transmit active
136 source message from this device
137 * only send 'active source' when powered on
138 * only set the osd name for the primary device. use default values for
139 others
140 * increase physical address with 0x100 per device
141 * win32: removed unneeded afxres.h include in the resource files, which
142 is not present when using studio express. thanks Ghuron
143 * fixed C headers
144 * mark the active source as active and other devices as inactive
145 * set the power status to 'on' when receiving CEC_USER_CONTROL_CODE_POWER
c6b7b98b 146 * transmit the menu state as (active) when the stream path is set
4f8dcef2
LOK
147 * changed:
148 * changed copyright of boblight files with permission of the original
149 author
150 * partial handling of audio related opcodes
151 * more consistent log messages
152 * set a device type and name for each CCECBusDevice
153 * keep a power and menu state per device
154 * renamed all Broadcast...() and Report...() methods to Transmit...()
155 * renamed SetOSDString() to TransmitOSDString()
156 * changed debug level of 'did not receive ack' from error to debug
157 * only set the power status to 'on' for the primary device
158 * moved method decriptions from cecc.h to cec.h
159 * only send a power on command when a device isn't on already and set
160 the power state to CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON while
161 powering on
162 * handle CEC_OPCODE_STANDBY
163 * handle CEC_OPCODE_ACTIVE_SOURCE
164 * always start in standby mode and let the tv (or other device) send the
165 power on command
166 * renamed the last few enums
167 * handle deck related opcodes.
168 * added TransmitVendorId(), but only transmit the id if it's not set to 'unknown'
169
170 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Fri, 11 Nov 2011 17:42:00 +0100
171
35d9c32a
LOK
172libcec (1.0-1) unstable; urgency=low
173
174 * interface changes:
175 * set lib interface version back to 1.0 and rename GetLibVersion() to
176 GetLibVersionMajor() and GetMinVersion() to GetMinLibVersion()
177 * added GetLibVersionMinor()/cec_get_lib_version_minor() and set the minor
178 version number to 1
179 * fixed:
180 * samsung's vendor specific remote keypresses don't send key releases. added
181 call to AddKey() directly after the keypress
182 * always reset the button press time in CLibCEC::AddKey()
183 * always wait for a signal in CCECProcessor::Transmit()
184 * changed:
185 * drop shared_ptr and use a normal pointer. removed boost dependency
186
187 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Fri, 04 Nov 2011 00:14:00 +0100
188
b3efc8f2
LOK
189libcec (0.8-2) unstable; urgency=low
190
191 * added 'libboost-dev' to build deps
192
193 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Tue, 01 Nov 2011 23:31:00 +0100
194
971d0e9e
LOK
195libcec (0.8-1) unstable; urgency=low
196
197 * interface changes:
198 * added GetDevicePowerStatus()/cec_get_device_power_status()
199 * added GetDeviceVendorId()/cec_get_device_vendor_id()
200 * added GetDeviceMenuLanguage()/cec_get_device_menu_language()
201 * added GetDeviceCecVersion()/cec_get_device_cec_version()
202 * added SwitchMonitoring()/cec_switch_monitoring() to the interface. when
b3efc8f2
LOK
203 monitoring is enabled, the device will only log the data it received,
204 but will not respond to any message
971d0e9e 205 * removed timeout parameter in Transmit() and included the ack timeout in
b3efc8f2 206 the cec_command struct
971d0e9e
LOK
207 * made the vendor id -> vendor name translation available
208 * made CEC_LOG levels powers of 2
209 * introduced CEC_LOG_TRAFFIC log level
210 * fixed:
211 * set the correct ackmask on startup
212 * wait for ack while keeping a lock
213 * wait for the processor thread to start before continueing on startup
214 * wait for messages to be transmitted before continueing in
b3efc8f2 215 CCECProcessor::Transmit()
971d0e9e
LOK
216 * only set the logical address once when it has changed
217 * correct source for broadcast messages
218 * win32: create Release type installer
219 * changed:
220 * make all reads and write in CAdapterCommunication go through buffers.
221 * poll for a vendor ID of connected devices and switch to a non-standard
b3efc8f2 222 CEC implementation if needed.
971d0e9e
LOK
223 * added vendor detection of Samsung and LG devices
224 * handle samsung remote command 'return'
225 * cec-client:
226 * added -la and --logical-address to the command line params
227 * added -d and --log-level params to cec-client
228 * added -sf and --short-log-file, which only log the actual messages, not
b3efc8f2 229 the level and timestamp
971d0e9e
LOK
230 * added -f and --log-file parameters to cec-client
231 * added option to change the log level to cec-client
232
b3efc8f2 233 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Tue, 01 Nov 2011 22:58:00 +0100
971d0e9e 234
8f084f00
LOK
235libcec (0.7-1) unstable; urgency=low
236
237 * send a keypress with 0 duration when a key is pressed and with a duration
238 set when it's released
239 * added SetOSDString() to the interface (not supported by all tvs)
240 * fixed: 'routing change' is a broadcast message. log routing changes, but
241 don't send a 'set active view' message, so the active input won't be
242 changed
243 * log keypresses in the debug log
244 * added 'pa' command to cec-client, to change the physical address
245 * added SetPhysicalAddress()/cec_set_physical_address() to the interface, so
246 the HDMI port number to use can be changed
247 * fixed: put the message processing code from WaitForAck() in ParseMessage().
248 fixes missing incoming message logging of non-data messages when not
249 waiting for an ACK
250 * added 'txn' command to cec-client. same as 'tx', but doesn't wait for ACK
251 before returning
252 * fixed: set initiator and destination first in cec_command::push_back().
253 fixes 'tx' command in cec-client
254 * fixed: keep trying to connect while iTimeout isn't reached (default 10
255 seconds). fixes exit with a 'permission denied' error when the device isn't
256 ready yet. remove CEC_SETTLE_DOWN_TIME
257 * fixed: don't call SetActiveView() when reporting the power status. fixes
258 loop which causes some TVs to report failed connections
259 * fixed: eom was not being parsed when receiving MSGCODE_FRAME_DATA. fixed.
260 * fixed: add the device type as parameter when sending the physical address.
261 thanks bobo1on1
262 * fixed: typo in libcec.pc.in
263 * added optional strLib parameter to LoadLibCec(), so the location of the
264 shared library can be specified
265 * only link cec-client against ld. use AC_SEARCH_LIBS instead of AC_CHECK_LIB
266 * use int instead of bool on the public C interface and remove stdbool.h include
267 * renamed: CECExports.h => cec.h, CECExportsC.h => cecc.h, CECLoader.h =>
268 cecloader.h, CECTypes.h => cectypes.h
269 * updated debian package. split up libcec and libcec-dev
270 * fixed: changed to use dlopen instead of static linkage. shuffled headers a
271 bit. bumped interface to version 7
272 * removed 'rt' from libraries. it's not needed (anymore)
273 * fixed: reset the active view after a routing change. issue #1
274 * fixed: changed attached license to be GPLv2 instead of GPLv3 this was an
275 error as libCEC is licensed GPLv2 not GPLv3 thanks @garbear
276 * added contributors link
277
278 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Fri, 14 Oct 2011 17:34:00 +0200
279
11d0a2d6
LOK
280libcec (0.6-1) unstable; urgency=low
281
282 * bumped interface version to 6
283 * fixed packet output (reporting the OSD name correctly now)
284 * refactored packet structs: split up in cec commands and adapter messages
285 * fixed i/o timings
286 * added Darwin support (thanks Davilla!)
287 * fixed WaitForAck()
288 * fixed possible deadlock when starting a new thread
289 * implemented vendor id and device class parsing. full detection will follow
290 * added "on" and "standby" commands to the test client
291 * retransmit packets if needed
292 * fix GetTimeMs() on linux
293 * added timestamp to log messages
294
295 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Sun, 09 Oct 2011 15:15:00 +0200
296
9519c249 297libcec (0.5-1) unstable; urgency=low
25701fa6
LOK
298
299 * bumped interface version to 5
300 * don't pass std::string and std::vector accross the interface
301 * fixed heap corruption crashes on windows
302 * fixed some memory leaks
303 * reset all structs to default values before doing with them
304
11d0a2d6 305 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Fri, 07 Oct 2011 22:00:00 +0200
25701fa6 306
262f3b05
LOK
307libcec (0.4-3) unstable; urgency=low
308
309 * fixed reconnect
310 * fixed some threading related bugs
311 * fixed deadlock on exit
312 * fixed wrongly reported physical address
313
314 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Thu, 06 Oct 2011 00:19:00 +0200
315
4463fb80
LOK
316libcec (0.4-2) unstable; urgency=low
317
318 * fixed int parameter sizes and some signed/unsigned warnings
319 * check whether m_port isn't NULL in ReadFromDevice
320 * stop the processor thread and delete the CSerialPort instance on exit
321 * added mutex in CSerialPort
322 * fix segfault on exit
323 * renamed libPlatform -> platform.
324 * stuck everything from libCEC in the CEC namespace to avoid namespace
325 polution
326
327 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Tue, 04 Oct 2011 23:45:00 +0200
328
88c5a743
LOK
329libcec (0.4-1) unstable; urgency=low
330
331 * bumped interface version to 4
332 * timeout parameter removed from Close()/cec_close(). return type changed to
333 void
334 * added cec_destroy() method
335 * removed timeout parameter from Transmit()
336 * change the default argument of PowerOnDevices() to CECDEVICE_TV
337 * removed PowerOffDevices(). use StandbyDevices() instead
338 * removed obsolete methods from the interface
339 * fixed bug: pthread_cond_wait was called without the mutex locked
340 * fixed possible deadlock: don't send messages and wait for an ack with the
341 mutex locked in CCECParser
342 * created a separate reader thread and fixed the 'lock timeout' bug
343 * testclient: use CECDEVICE_TV instead of the default argument
344 (CECDEVICE_BROADCAST) for PowerOnDevices() and PowerOffDevices()
345
346 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Tue, 04 Oct 2011 00:48:00 +0200
347
a9bb5b56
LOK
348libcec (0.3-1) unstable; urgency=low
349
350 * added device detection support for Windows
351
352 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Sun, 02 Oct 2011 12:09:33 +0200
353
354libcec (0.2-1) unstable; urgency=low
355
356 * added a Close() method to the interface
357 * Added CEC command that were received by the adapter in a buffer that can be
358 read by a client with GetNextCommand()/cec_get_next_command(). added a
359 'help' command to the test client, that displays all available commands
360 * Fixed setting the ackmask. deprecated SetAckMask()/cec_set_ack_mask(). use
361 SetLogicalAddress()/cec_set_logical_address() instead. add 'la' command to
362 the testclient to set the logical address of the cec adapter
363 * Added optional logical and physical address parameters to
364 LoadLibCec()/cec_init() on the interface. fixed wrongly placed namespace
365 close tag in CECExports.h. updated interface documentation. bumped
366 interface version to 2.
367 * fixed hardcoded ackmask in SetAckMast(). set a shorter display name in the
368 test client. the previous one was too long and being rejected
369
370 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Fri, 28 Sep 2011 01:33:00 +0200
371
abbca718
LOK
372libcec (0.1-1) unstable; urgency=low
373
374 * Initial release v0.1
375
a9bb5b56 376 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Wed, 28 Sep 2011 23:55:48 +0200