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