cosmetics in README
[deb_libcec.git] / debian / changelog
CommitLineData
8f084f00
LOK
1libcec (0.7-1) unstable; urgency=low
2
3 * send a keypress with 0 duration when a key is pressed and with a duration
4 set when it's released
5 * added SetOSDString() to the interface (not supported by all tvs)
6 * fixed: 'routing change' is a broadcast message. log routing changes, but
7 don't send a 'set active view' message, so the active input won't be
8 changed
9 * log keypresses in the debug log
10 * added 'pa' command to cec-client, to change the physical address
11 * added SetPhysicalAddress()/cec_set_physical_address() to the interface, so
12 the HDMI port number to use can be changed
13 * fixed: put the message processing code from WaitForAck() in ParseMessage().
14 fixes missing incoming message logging of non-data messages when not
15 waiting for an ACK
16 * added 'txn' command to cec-client. same as 'tx', but doesn't wait for ACK
17 before returning
18 * fixed: set initiator and destination first in cec_command::push_back().
19 fixes 'tx' command in cec-client
20 * fixed: keep trying to connect while iTimeout isn't reached (default 10
21 seconds). fixes exit with a 'permission denied' error when the device isn't
22 ready yet. remove CEC_SETTLE_DOWN_TIME
23 * fixed: don't call SetActiveView() when reporting the power status. fixes
24 loop which causes some TVs to report failed connections
25 * fixed: eom was not being parsed when receiving MSGCODE_FRAME_DATA. fixed.
26 * fixed: add the device type as parameter when sending the physical address.
27 thanks bobo1on1
28 * fixed: typo in libcec.pc.in
29 * added optional strLib parameter to LoadLibCec(), so the location of the
30 shared library can be specified
31 * only link cec-client against ld. use AC_SEARCH_LIBS instead of AC_CHECK_LIB
32 * use int instead of bool on the public C interface and remove stdbool.h include
33 * renamed: CECExports.h => cec.h, CECExportsC.h => cecc.h, CECLoader.h =>
34 cecloader.h, CECTypes.h => cectypes.h
35 * updated debian package. split up libcec and libcec-dev
36 * fixed: changed to use dlopen instead of static linkage. shuffled headers a
37 bit. bumped interface to version 7
38 * removed 'rt' from libraries. it's not needed (anymore)
39 * fixed: reset the active view after a routing change. issue #1
40 * fixed: changed attached license to be GPLv2 instead of GPLv3 this was an
41 error as libCEC is licensed GPLv2 not GPLv3 thanks @garbear
42 * added contributors link
43
44 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Fri, 14 Oct 2011 17:34:00 +0200
45
11d0a2d6
LOK
46libcec (0.6-1) unstable; urgency=low
47
48 * bumped interface version to 6
49 * fixed packet output (reporting the OSD name correctly now)
50 * refactored packet structs: split up in cec commands and adapter messages
51 * fixed i/o timings
52 * added Darwin support (thanks Davilla!)
53 * fixed WaitForAck()
54 * fixed possible deadlock when starting a new thread
55 * implemented vendor id and device class parsing. full detection will follow
56 * added "on" and "standby" commands to the test client
57 * retransmit packets if needed
58 * fix GetTimeMs() on linux
59 * added timestamp to log messages
60
61 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Sun, 09 Oct 2011 15:15:00 +0200
62
9519c249 63libcec (0.5-1) unstable; urgency=low
25701fa6
LOK
64
65 * bumped interface version to 5
66 * don't pass std::string and std::vector accross the interface
67 * fixed heap corruption crashes on windows
68 * fixed some memory leaks
69 * reset all structs to default values before doing with them
70
11d0a2d6 71 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Fri, 07 Oct 2011 22:00:00 +0200
25701fa6 72
262f3b05
LOK
73libcec (0.4-3) unstable; urgency=low
74
75 * fixed reconnect
76 * fixed some threading related bugs
77 * fixed deadlock on exit
78 * fixed wrongly reported physical address
79
80 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Thu, 06 Oct 2011 00:19:00 +0200
81
4463fb80
LOK
82libcec (0.4-2) unstable; urgency=low
83
84 * fixed int parameter sizes and some signed/unsigned warnings
85 * check whether m_port isn't NULL in ReadFromDevice
86 * stop the processor thread and delete the CSerialPort instance on exit
87 * added mutex in CSerialPort
88 * fix segfault on exit
89 * renamed libPlatform -> platform.
90 * stuck everything from libCEC in the CEC namespace to avoid namespace
91 polution
92
93 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Tue, 04 Oct 2011 23:45:00 +0200
94
88c5a743
LOK
95libcec (0.4-1) unstable; urgency=low
96
97 * bumped interface version to 4
98 * timeout parameter removed from Close()/cec_close(). return type changed to
99 void
100 * added cec_destroy() method
101 * removed timeout parameter from Transmit()
102 * change the default argument of PowerOnDevices() to CECDEVICE_TV
103 * removed PowerOffDevices(). use StandbyDevices() instead
104 * removed obsolete methods from the interface
105 * fixed bug: pthread_cond_wait was called without the mutex locked
106 * fixed possible deadlock: don't send messages and wait for an ack with the
107 mutex locked in CCECParser
108 * created a separate reader thread and fixed the 'lock timeout' bug
109 * testclient: use CECDEVICE_TV instead of the default argument
110 (CECDEVICE_BROADCAST) for PowerOnDevices() and PowerOffDevices()
111
112 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Tue, 04 Oct 2011 00:48:00 +0200
113
a9bb5b56
LOK
114libcec (0.3-1) unstable; urgency=low
115
116 * added device detection support for Windows
117
118 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Sun, 02 Oct 2011 12:09:33 +0200
119
c3f9951c
LOK
120libcec (0.2-1) unstable; urgency=low
121
122 * added a Close() method to the interface
123 * Added CEC command that were received by the adapter in a buffer that can be
124 read by a client with GetNextCommand()/cec_get_next_command(). added a
125 'help' command to the test client, that displays all available commands
126 * Fixed setting the ackmask. deprecated SetAckMask()/cec_set_ack_mask(). use
127 SetLogicalAddress()/cec_set_logical_address() instead. add 'la' command to
128 the testclient to set the logical address of the cec adapter
129 * Added optional logical and physical address parameters to
130 LoadLibCec()/cec_init() on the interface. fixed wrongly placed namespace
131 close tag in CECExports.h. updated interface documentation. bumped
132 interface version to 2.
133 * fixed hardcoded ackmask in SetAckMast(). set a shorter display name in the
134 test client. the previous one was too long and being rejected
135
136 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Fri, 28 Sep 2011 01:33:00 +0200
137
abbca718
LOK
138libcec (0.1-1) unstable; urgency=low
139
140 * Initial release v0.1
141
142 -- Pulse-Eight Packaging <packaging@pulse-eight.com> Wed, 28 Sep 2011 23:55:48 +0200