From b956050207b13acd75ecbca409af5eb18d682862 Mon Sep 17 00:00:00 2001 From: reinelt <> Date: Wed, 21 Jan 2004 11:32:48 +0000 Subject: [lcd4linux @ 2004-01-21 11:32:48 by reinelt] changelog commited --- ChangeLog | 81 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 83ef049..9731e09 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,86 @@ +2004-01-21 Michael Reinelt + + * plugin_proc_stat.c, plugin_xmms.c: two bugs with hash_age() ixed + + * config.guess, config.sub, hash.c, hash.h, libtool, ltmain.sh, plugin_cpuinfo.c, plugin_meminfo.c, plugin_proc_stat.c, plugin_xmms.c: + hash_age function added + + * drv_HD44780.c, lcd4linux.conf.sample: + HD44780 missed the "clear display' sequence + asc255bug handling added + HD44780 tested, works here! + +2004-01-20 Michael Reinelt + + * configure.in, drv.c, drv.h, drv_HD44780.c, drv_MatrixOrbital.c, drv_generic_parport.c, drv_generic_parport.h, lcd4linux.conf.sample, config.h.in, configure: + first version of Next Generation HD44780 (untested! but it compiles...) + some cleanup in the other drivers + + * Makefile.am, Makefile.in, drv_generic_parport.c, drv_generic_parport.h: + drv_generic_parport added, code from parport.c + + * drv_generic_serial.c, drv_generic_serial.h: + moved drv_generic to drv_generic_serial + + * Makefile.am, Makefile.in, drv_MatrixOrbital.c, drv_generic.c, drv_generic.h, drv_generic_text.c, widget_bar.c: + some reorganization + moved drv_generic to drv_generic_serial + moved port locking stuff to drv_generic_serial + + * drv_MatrixOrbital.c, drv_generic_text.c, lcd4linux.conf.sample, plugin_proc_stat.c, widget_bar.c: + "Default screen" working with MatrixOrbital + + * Makefile.am, Makefile.in, drv_MatrixOrbital.c, drv_generic.c, drv_generic.h, drv_generic_bar.c, drv_generic_bar.h, drv_generic_text.c, drv_generic_text.h, hash.c, lcd4linux.conf.sample: + moved text-display-specific stuff to drv_generic_text + moved all the bar stuff from drv_generic_bar to generic_text + + * Makefile.am, Makefile.in, drv_MatrixOrbital.c, drv_generic.c, drv_generic.h, drv_generic_bar.c, drv_generic_bar.h, lcd4linux.conf.sample, widget_bar.c, widget_bar.h, widget_text.c: + moved generic stuff from drv_MatrixOrbital to drv_generic + implemented new-stylish bars which are nearly finished + +2004-01-18 Michael Reinelt + + * Makefile.am, Makefile.in, drv_MatrixOrbital.c, widget_bar.c, widget_bar.h: + Framework for bar widget opened + + * hash.c, hash.h, lcd4linux.conf.sample, plugin_proc_stat.c, timer.c: + /proc/stat parsing finished + + * cfg.c, expr.c, hash.c, plugin_proc_stat.c: + bug in expr.c fixed (thanks to Xavier) + some progress with /proc/stat parsing + +2004-01-16 Michael Reinelt + + * hash.h, plugin_cpuinfo.c, plugin_proc_stat.c, plugin_xmms.c: + some bugs in plugin_xmms fixed, parsing moved to own function + plugin_proc_stat nearly finished + +2004-01-16 mkeil + + * plugin_xmms.c: -include caching for values + +2004-01-16 Michael Reinelt + + * hash.c, hash.h, plugin_cpuinfo.c, plugin_meminfo.c, plugin_proc_stat.c: + moved various /proc parsing to own functions + made some progress with /proc/stat parsing + + * Makefile.am, Makefile.in, cfg.c, filter.c, hash.c, hash.h, lcd4linux.conf.sample, plugin.c, plugin_proc_stat.c, system.c: + started plugin proc_stat which should parse /proc/stat + which again is a paint in the a** + thinking over implementation methods of delta functions + (CPU load, ...) + 2004-01-15 Michael Reinelt + * debian/postinst, debian/watch, widget_text.h, drv_MatrixOrbital.c, evaluator.c, lcd4linux.conf.sample, widget_text.c: + debian/ postinst and watch added (did CVS forget about them?) + evaluator: conditional expressions (a?b:c) added + text widget nearly finished + + * ChangeLog: *** empty log message *** + * Makefile.am, Makefile.in, lcd4linux.conf.sample, lcd4linux.conf.sample.old, plugin.c, plugin_cpuinfo.c, plugin_loadavg.c, plugin_meminfo.c, widget_text.c, widget_text.h: moved lcd4linux.conf.sample to *.old lcd4linux.conf.sample with new layout -- cgit v1.2.3 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242