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