cec: fixed return value in CCECProcessor::SetStreamPath(), which prevented active...
[deb_libcec.git] / debian / changelog
CommitLineData
f0197d4f
LOK
1libcec (1.1-2) unstable; urgency=low
2
3 * forgot to update the headers to v1.1
4
5 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Fri, 11 Nov 2011 18:56:00 +0100
6
4f8dcef2
LOK
7libcec (1.1-1) unstable; urgency=low
8
9 * interface changes:
10 * added logical address autodetection and let libcec handle multiple types
11 simultaniously. for logical address autodetection, you have to use
12 CECInit()/cec_init_typed() instead of CECCreate()/cec_init()
13 * added SetActiveSource()/cec_set_active_source() to the interface.
14 deprecated SetActiveView()/cec_set_active_view()
15 * added SetMenuState()
16 * added PollDevice()/cec_poll_device()
17 * removed duplicate method SetActiveSource() / SetActiveView()
18 * added SetDeckControlMode() and SetDeckInfo()
19 * fixed:
20 * added vendor detection for panasonic and broadcast active view and set
21 menu state when a panasonic device sets the stream path. thanks for the
22 pointer cptcoconut.
23 * added vendor code for pioneer
24 * osd string is 13 chars max. don't send more
25 * send the correct cec version for each device
26 * switch to panasonic specific cec implementation if a panasonic device was
27 detected
28 * send the correct device type in TransmitPhysicalAddress()
29 * send a reply from the correct device when the stream path is requested
30 * opcode 0x80 means the stream path changed, not the physical address
31 * don't poll for a vendor ID in monitoring mode
32 * fixed parameter parsing in SetVendorId()
33 * buffer up commands that are received while waiting for an ack. only send
34 'active source' message for the actual active source
35 * win32: prepend the com port path with '\\.\', so com ports > 9 can be
36 accessed. thanks smolesen
37 * audio systems cannot be an active source, so don't transmit active
38 source message from this device
39 * only send 'active source' when powered on
40 * only set the osd name for the primary device. use default values for
41 others
42 * increase physical address with 0x100 per device
43 * win32: removed unneeded afxres.h include in the resource files, which
44 is not present when using studio express. thanks Ghuron
45 * fixed C headers
46 * mark the active source as active and other devices as inactive
47 * set the power status to 'on' when receiving CEC_USER_CONTROL_CODE_POWER
c6b7b98b 48 * transmit the menu state as (active) when the stream path is set
4f8dcef2
LOK
49 * changed:
50 * changed copyright of boblight files with permission of the original
51 author
52 * partial handling of audio related opcodes
53 * more consistent log messages
54 * set a device type and name for each CCECBusDevice
55 * keep a power and menu state per device
56 * renamed all Broadcast...() and Report...() methods to Transmit...()
57 * renamed SetOSDString() to TransmitOSDString()
58 * changed debug level of 'did not receive ack' from error to debug
59 * only set the power status to 'on' for the primary device
60 * moved method decriptions from cecc.h to cec.h
61 * only send a power on command when a device isn't on already and set
62 the power state to CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON while
63 powering on
64 * handle CEC_OPCODE_STANDBY
65 * handle CEC_OPCODE_ACTIVE_SOURCE
66 * always start in standby mode and let the tv (or other device) send the
67 power on command
68 * renamed the last few enums
69 * handle deck related opcodes.
70 * added TransmitVendorId(), but only transmit the id if it's not set to 'unknown'
71
72 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Fri, 11 Nov 2011 17:42:00 +0100
73
84c27c41 74libcec (1.0-1) unstable; urgency=low
5984d274
LOK
75
76 * interface changes:
77 * set lib interface version back to 1.0 and rename GetLibVersion() to
78 GetLibVersionMajor() and GetMinVersion() to GetMinLibVersion()
79 * added GetLibVersionMinor()/cec_get_lib_version_minor() and set the minor
80 version number to 1
81 * fixed:
82 * samsung's vendor specific remote keypresses don't send key releases. added
83 call to AddKey() directly after the keypress
84 * always reset the button press time in CLibCEC::AddKey()
85 * always wait for a signal in CCECProcessor::Transmit()
86 * changed:
87 * drop shared_ptr and use a normal pointer. removed boost dependency
88
89 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Fri, 04 Nov 2011 00:14:00 +0100
90
b3efc8f2
LOK
91libcec (0.8-2) unstable; urgency=low
92
93 * added 'libboost-dev' to build deps
94
95 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Tue, 01 Nov 2011 23:31:00 +0100
96
971d0e9e
LOK
97libcec (0.8-1) unstable; urgency=low
98
99 * interface changes:
100 * added GetDevicePowerStatus()/cec_get_device_power_status()
101 * added GetDeviceVendorId()/cec_get_device_vendor_id()
102 * added GetDeviceMenuLanguage()/cec_get_device_menu_language()
103 * added GetDeviceCecVersion()/cec_get_device_cec_version()
104 * added SwitchMonitoring()/cec_switch_monitoring() to the interface. when
b3efc8f2
LOK
105 monitoring is enabled, the device will only log the data it received,
106 but will not respond to any message
971d0e9e 107 * removed timeout parameter in Transmit() and included the ack timeout in
b3efc8f2 108 the cec_command struct
971d0e9e
LOK
109 * made the vendor id -> vendor name translation available
110 * made CEC_LOG levels powers of 2
111 * introduced CEC_LOG_TRAFFIC log level
112 * fixed:
113 * set the correct ackmask on startup
114 * wait for ack while keeping a lock
115 * wait for the processor thread to start before continueing on startup
116 * wait for messages to be transmitted before continueing in
b3efc8f2 117 CCECProcessor::Transmit()
971d0e9e
LOK
118 * only set the logical address once when it has changed
119 * correct source for broadcast messages
120 * win32: create Release type installer
121 * changed:
122 * make all reads and write in CAdapterCommunication go through buffers.
123 * poll for a vendor ID of connected devices and switch to a non-standard
b3efc8f2 124 CEC implementation if needed.
971d0e9e
LOK
125 * added vendor detection of Samsung and LG devices
126 * handle samsung remote command 'return'
127 * cec-client:
128 * added -la and --logical-address to the command line params
129 * added -d and --log-level params to cec-client
130 * added -sf and --short-log-file, which only log the actual messages, not
b3efc8f2 131 the level and timestamp
971d0e9e
LOK
132 * added -f and --log-file parameters to cec-client
133 * added option to change the log level to cec-client
134
b3efc8f2 135 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Tue, 01 Nov 2011 22:58:00 +0100
971d0e9e 136
8f084f00
LOK
137libcec (0.7-1) unstable; urgency=low
138
139 * send a keypress with 0 duration when a key is pressed and with a duration
140 set when it's released
141 * added SetOSDString() to the interface (not supported by all tvs)
142 * fixed: 'routing change' is a broadcast message. log routing changes, but
143 don't send a 'set active view' message, so the active input won't be
144 changed
145 * log keypresses in the debug log
146 * added 'pa' command to cec-client, to change the physical address
147 * added SetPhysicalAddress()/cec_set_physical_address() to the interface, so
148 the HDMI port number to use can be changed
149 * fixed: put the message processing code from WaitForAck() in ParseMessage().
150 fixes missing incoming message logging of non-data messages when not
151 waiting for an ACK
152 * added 'txn' command to cec-client. same as 'tx', but doesn't wait for ACK
153 before returning
154 * fixed: set initiator and destination first in cec_command::push_back().
155 fixes 'tx' command in cec-client
156 * fixed: keep trying to connect while iTimeout isn't reached (default 10
157 seconds). fixes exit with a 'permission denied' error when the device isn't
158 ready yet. remove CEC_SETTLE_DOWN_TIME
159 * fixed: don't call SetActiveView() when reporting the power status. fixes
160 loop which causes some TVs to report failed connections
161 * fixed: eom was not being parsed when receiving MSGCODE_FRAME_DATA. fixed.
162 * fixed: add the device type as parameter when sending the physical address.
163 thanks bobo1on1
164 * fixed: typo in libcec.pc.in
165 * added optional strLib parameter to LoadLibCec(), so the location of the
166 shared library can be specified
167 * only link cec-client against ld. use AC_SEARCH_LIBS instead of AC_CHECK_LIB
168 * use int instead of bool on the public C interface and remove stdbool.h include
169 * renamed: CECExports.h => cec.h, CECExportsC.h => cecc.h, CECLoader.h =>
170 cecloader.h, CECTypes.h => cectypes.h
171 * updated debian package. split up libcec and libcec-dev
172 * fixed: changed to use dlopen instead of static linkage. shuffled headers a
173 bit. bumped interface to version 7
174 * removed 'rt' from libraries. it's not needed (anymore)
175 * fixed: reset the active view after a routing change. issue #1
176 * fixed: changed attached license to be GPLv2 instead of GPLv3 this was an
177 error as libCEC is licensed GPLv2 not GPLv3 thanks @garbear
178 * added contributors link
179
180 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Fri, 14 Oct 2011 17:34:00 +0200
181
11d0a2d6
LOK
182libcec (0.6-1) unstable; urgency=low
183
184 * bumped interface version to 6
185 * fixed packet output (reporting the OSD name correctly now)
186 * refactored packet structs: split up in cec commands and adapter messages
187 * fixed i/o timings
188 * added Darwin support (thanks Davilla!)
189 * fixed WaitForAck()
190 * fixed possible deadlock when starting a new thread
191 * implemented vendor id and device class parsing. full detection will follow
192 * added "on" and "standby" commands to the test client
193 * retransmit packets if needed
194 * fix GetTimeMs() on linux
195 * added timestamp to log messages
196
197 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Sun, 09 Oct 2011 15:15:00 +0200
198
9519c249 199libcec (0.5-1) unstable; urgency=low
25701fa6
LOK
200
201 * bumped interface version to 5
202 * don't pass std::string and std::vector accross the interface
203 * fixed heap corruption crashes on windows
204 * fixed some memory leaks
205 * reset all structs to default values before doing with them
206
11d0a2d6 207 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Fri, 07 Oct 2011 22:00:00 +0200
25701fa6 208
262f3b05
LOK
209libcec (0.4-3) unstable; urgency=low
210
211 * fixed reconnect
212 * fixed some threading related bugs
213 * fixed deadlock on exit
214 * fixed wrongly reported physical address
215
216 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Thu, 06 Oct 2011 00:19:00 +0200
217
4463fb80
LOK
218libcec (0.4-2) unstable; urgency=low
219
220 * fixed int parameter sizes and some signed/unsigned warnings
221 * check whether m_port isn't NULL in ReadFromDevice
222 * stop the processor thread and delete the CSerialPort instance on exit
223 * added mutex in CSerialPort
224 * fix segfault on exit
225 * renamed libPlatform -> platform.
226 * stuck everything from libCEC in the CEC namespace to avoid namespace
227 polution
228
229 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Tue, 04 Oct 2011 23:45:00 +0200
230
88c5a743
LOK
231libcec (0.4-1) unstable; urgency=low
232
233 * bumped interface version to 4
234 * timeout parameter removed from Close()/cec_close(). return type changed to
235 void
236 * added cec_destroy() method
237 * removed timeout parameter from Transmit()
238 * change the default argument of PowerOnDevices() to CECDEVICE_TV
239 * removed PowerOffDevices(). use StandbyDevices() instead
240 * removed obsolete methods from the interface
241 * fixed bug: pthread_cond_wait was called without the mutex locked
242 * fixed possible deadlock: don't send messages and wait for an ack with the
243 mutex locked in CCECParser
244 * created a separate reader thread and fixed the 'lock timeout' bug
245 * testclient: use CECDEVICE_TV instead of the default argument
246 (CECDEVICE_BROADCAST) for PowerOnDevices() and PowerOffDevices()
247
248 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Tue, 04 Oct 2011 00:48:00 +0200
249
a9bb5b56
LOK
250libcec (0.3-1) unstable; urgency=low
251
252 * added device detection support for Windows
253
254 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Sun, 02 Oct 2011 12:09:33 +0200
255
c3f9951c
LOK
256libcec (0.2-1) unstable; urgency=low
257
258 * added a Close() method to the interface
259 * Added CEC command that were received by the adapter in a buffer that can be
260 read by a client with GetNextCommand()/cec_get_next_command(). added a
261 'help' command to the test client, that displays all available commands
262 * Fixed setting the ackmask. deprecated SetAckMask()/cec_set_ack_mask(). use
263 SetLogicalAddress()/cec_set_logical_address() instead. add 'la' command to
264 the testclient to set the logical address of the cec adapter
265 * Added optional logical and physical address parameters to
266 LoadLibCec()/cec_init() on the interface. fixed wrongly placed namespace
267 close tag in CECExports.h. updated interface documentation. bumped
268 interface version to 2.
269 * fixed hardcoded ackmask in SetAckMast(). set a shorter display name in the
270 test client. the previous one was too long and being rejected
271
272 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Fri, 28 Sep 2011 01:33:00 +0200
273
abbca718
LOK
274libcec (0.1-1) unstable; urgency=low
275
276 * Initial release v0.1
277
278 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Wed, 28 Sep 2011 23:55:48 +0200