-
Notifications
You must be signed in to change notification settings - Fork 33
/
ChangeLog
4974 lines (3485 loc) · 103 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2009-01-14 michael
* [r964]
add support for Dell M1730 LCD to the G15 driver by
lcd4linux@hayward.uk.com
* [r963]
initial brightness fixed
2009-01-13 volker
* [r962]
indentation, svn-version
* [r961]
speedup X11 display
2009-01-13 michael
* [r960]
new example for X11 config
* [r959]
heavy X11 reorganization to (hopefully) finally fix Tickets #141
and #117
* [r958]
list sub-drivers for serdisplib without -v
* [r957]
moved 'print list of drivers and plugins' to the end of configure
2009-01-12 michux
* [r956]
update copyright
2009-01-12 volker
* [r955]
additional verbose messages
2009-01-12 michux
* [r954]
fix some compiler warnings
2009-01-11 michux
* [r953]
plugin_fifo: fix compile warnings
* [r952]
drv_st2205u: add verbose error message
2009-01-09 volker
* [r951]
version of linked serdisplib in long verbose output
2009-01-08 michael
* [r950]
hhdtemp plugin fixed
2009-01-06 michael
* [r949]
hddtemp autconf bug fixed
* [r948]
compiler warnings fixed
* [r947]
indentation
* [r946]
unused array 'tokenNames' removed
* [r945]
compiler warning removed
* [r944]
initialize plugin on first use
* [r943]
indentation
* [r942]
initialize fifo on first use
* [r941]
cosmetics
2009-01-04 michael
* [r940]
new string operators eq ne gt ge lt le
* [r939]
indentation
* [r938]
typo fixed
* [r937]
disable unimplemented ioctls
2009-01-01 michael
* [r936]
distcheck bugs fixed
* [r935]
button debugging changed
* [r934]
widget_bar scale debugging changed
2008-12-31 michux
* [r933]
add buttons to X11 sample conf
2008-12-31 michael
* [r932]
clear pixel to BG_COL (Ticket #117)
* [r931]
version bumped to 0.11.0
* [r930]
netinfo plugin added to smoketest
* [r929]
ported r847 (new Display CW12832 128x32) from volker_dev
* [r928]
ported r846 from volker_dev
* [r927]
ported r839 from volker_dev
* [r926]
ported r838 from volker_dev
* [r925]
ported r837 from volker_dev
* [r924]
ported r835 from volker_dev
* [r923]
ported r834 from volker_dev
* [r922]
r828: 'additional verbose and info messages' ported from
volker_dev
* [r921]
includes for umask() ported from volker_dev (r827)
* [r920]
handle config files with <CR><LF> (DOS line ending) ported from
volker_dev (r826)
* [r919]
netinfo plugin ported from volker_dev (r823)
* [r918]
format characters in qprintf() with optional length (r821) ported
from volker_dev
* [r917]
short circuit evaluation ported from volker_dev (r820,r822,r824)
* [r916]
Fixes a buffer underrun error and possible array index issues by
mcarey@...
2008-12-27 michael
* [r915]
ported r819 from volker_dev
* [r914]
ported and modified r818 from volker_dev
* [r913]
port r817 from volker_dev
* [r912]
ported (modified) r815 from voker_dev
2008-12-24 michael
* [r911]
cleanup & cosmetics
* [r910]
driver for the PHAnderson serial-to-HD44780 adapter boards by
Nicolas Weill
* [r909]
w1retap plugin by Jonathan Hudson
* [r908]
Enables/controls the backlight on the Pertelian LCD device by
Jonathan Hudson
2008-12-23 michael
* [r907]
hddtemp plugin from Scott Bronson
* [r906]
keypad bug fixed
* [r905]
patch from a.nielsen: inverted parport signals, support GPI on
HD44780
* [r904]
indent run
2008-11-25 michux
* [r903]
fix lcd4linux driver for multible onboard controllers
2008-11-23 michux
* [r902]
fix automake - check for libftdi
2008-11-22 michux
* [r901]
update button_exec plugin - fix segfault
* [r900]
update fifo plugin - untested
2008-10-07 bwalle
* [r899]
Replace write to external variable usb_debug by calling
usb_set_debug().
This fixes build on openSUSE Factory.
2008-10-06 michael
* [r898]
adding GPI to picoLCD for reading button events by Igor Mammedov
<niallain@gmail.com>
* [r897]
properties fixed
2008-10-05 bwalle
* [r896]
Rebuild auto-generated autoconf stuff due to last change in
drivers.m4.
* [r895]
Add 'ULA200' driver when --with-drivers=all is specified
2008-09-14 michael
* [r894]
strftime_tz patch from Bernhard Walle
2008-09-08 michael
* [r893]
strftime_tz() plugin by Bernhard Walle
2008-09-03 michael
* [r892]
ULA200 driver by Bernhard Walle
* [r891]
indent
2008-08-31 sonic74
* [r890]
Increased the maximum bps to 230400, if defined in <termios.h>.
2008-08-27 sonic74
* [r889]
2008-08-27 michael
* [r888]
D4D updates by Sven
2008-08-03 michael
* [r887]
driver for 4D Systems serial displays by Sven Killig
* [r886]
signed/unsigned mismatch
2008-07-26 michux
* [r885]
added command functions
2008-07-15 michael
* [r884]
added IRLCD driver by Jean-Philippe Civade
* [r883]
'autoreconf -f -i' run & config.rpath added
* [r882]
forgot to add drv_picoLCDGraphic.c :-(
* [r881]
picoLCDGraphic driver by Nicu Pavel added
* [r880]
widget_keypad.h added to drv_HD44780
* [r879]
indent run
* [r878]
automake-1.10.1
2008-04-15 michux
* [r877]
forgot include
* [r876]
add signal handler, improve error check
2008-04-14 michux
* [r875]
minor update
2008-04-12 michux
* [r874]
Makefiles again, this time libiconv stuff is fixed
* [r873]
fix error, introduced in r857
* [r872]
update Makefiles
* [r871]
clean up
2008-04-10 michux
* [r870]
Add the year 2008 to the copyright
* [r869]
Add basic FIFO plugin
2008-04-04 michux
* [r868]
fixed autoconf
* [r867]
update autoconf
* [r866]
Add asterisk plugin, thanks to mcarey@yostengineering.com
2008-04-03 michux
* [r865]
fix typo, close #114
* [r864]
update charset for Crystalfontz Model 632 and 634
2008-03-05 michux
* [r863]
improve error messages
2008-03-03 michux
* [r862]
reformat plugin_mpd - use c style comments
* [r861]
correct code format (indent)
* [r860]
correct code format (indent)
* [r859]
new plugin: button_exec by Wolfgang Henerbichler
* [r858]
add new driver (st2205) by Jeroen/Sprite_tm
* [r857]
new plugin: button_exec by Wolfgang Henerbichler
* [r856]
add keypad support for module lcm162
* [r855]
add new driver (st2205) by Jeroen/Sprite_tm
2008-02-27 michux
* [r854]
add signal handler to plugin_mpd
* [r853]
plugin_mpd, update to v0.81, fix connection issues
2008-02-25 michux
* [r852]
update mpd plugin to v0.8 - makefile needs some work now
2008-01-28 michux
* [r851]
disable default emulator code
* [r850]
minor updates
* [r849]
added pingpong scrolling
2008-01-24 michux
* [r848]
2007-10-17 volker
* [r847]
added new display 128x32 (CW12832)
* [r846]
info about property change
2007-10-03 michael
* [r845]
automatic marquee patch from Manuel Grot
2007-10-01 michael
* [r844]
RDTSC delay and inclusion of asm/msr.h removed
* [r843]
driver for Pertelian display by Andy Powell
2007-09-15 michael
* [r842]
GPS plugin V0.3 by michu
* [r841]
GPS plugin V0.2 by michu
2007-09-09 michael
* [r840]
email address changed
2007-08-25 volker
* [r839]
additional information about decision which plugin and drivers
are included via configure
2007-08-23 volker
* [r838]
existence of netdevice corrected (less cpu load)
* [r837]
logging info clarified
* [r836]
Indentation
2007-08-13 volker
* [r835]
Absicherung gegen Abfragen nicht vorhandener Daten
* [r834]
erweiterte Ausgabe bei Daten ueber unterstuetzte Hardware
2007-07-27 michael
* [r833]
Fix compilation with kernel 2.6.22 by Guillaume LECERF
* [r832]
MPD plugin patch from michu
* [r831]
GPS plugin update by michu
* [r830]
indentation
2007-07-12 volker
* [r829]
svn version updated
* [r828]
additional verbose and info messages
2007-07-08 volker
* [r827]
includes for umask(); svnversion updated
2007-06-27 volker
* [r826]
handle config files with <CR><LF> (DOS line ending)
* [r825]
added plugin_netdev
* [r824]
copy&paste error corrected
* [r823]
new plugin: netinfo
* [r822]
indentation with ./indent.sh; short circuit evaluation modified
2007-06-25 volker
* [r821]
format characters in qprintf() with optional length
* [r820]
calculate only necessary elements of operands
2007-06-24 volker
* [r819]
optimization on changing brightness of backlight
2007-06-22 volker
* [r818]
list plugins
* [r817]
disable plugins where preconditions not given: compiles mostly
under MacOS X
* [r816]
keypad support added for X11 driver
2007-06-21 volker
* [r815]
optimized layer drawing (no drawing under opaque pixel)
* [r814]
LCD::brightness, keypad
* [r813]
default for Brightness is 255
2007-06-20 volker
* [r812]
LCD::brightness in drv_X11 corrected
* [r811]
development of new experimental features
* [r810]
global variable for backlight color
* [r809]
keypad support completed; new property brightness implemented
* [r808]
maximum value for brightness is 8
2007-06-17 michael
* [r807]
buttons for X11 driver (thanks to Volker Gering)
* [r806]
Apple has no utsbuf.domainname (thanks to Volker Gering)
* [r805]
strndup() replacement
* [r804]
better usage output by Volker Gering
2007-06-08 michael
* [r803]
Image driver libgd dependancy fix
2007-06-04 michael
* [r802]
big MPD patch from Robert Buchholz
2007-05-19 michael
* [r801]
gps plugin, code by michu / www.neophob.com
2007-05-17 michael
* [r800]
backported r799 from trunk
* [r799]
compile error on m68k fixed (debian bug 405898)
2007-05-04 michael
* [r798]
typo in LUIse driver fixed
2007-05-02 michael
* [r797]
some compiler warnings fixed
2007-04-30 michael
* [r796]
LCD4Linux-0.10.1-RC2
* [r795]
ChangeLog updated
* [r794]
svn2cl moved and optimized
* [r793]
svn2cl.sh added
* [r792]
port r791 from trunk
* [r791]
link Cwlinux with keypad support
* [r790]
ported r777 from trunk
* [r789]
ported r784-r788 from trunk
2007-04-28 michael
* [r788]
patch from Fox: Fix a typo that prevent Bar display to work
* [r787]
patch from FoX that fixes compilation with kernel 2.6.21
2007-04-23 michael
* [r786]
MPD plugin patch from michu
2007-04-20 michael
* [r785]
keypad and firmware support for Cwlinux (patch from Volker
Gering)
* [r784]
iowait,irq and softirq added (patch from Roman Jozsef)
2007-03-22 michael
* [r783]
backport r782 from trunk
2007-03-21 michael
* [r782]
plugin_file patch from Mark Richards
2007-03-13 michael
* [r781]
backport r780 from trunk
* [r780]
Crystalfontz keypad patch from kenson
2007-03-05 michael
* [r779]
ported changeset 778 from branches/0.10.1
* [r778]
picoLCD linker error fixed (libusb was missing)
2007-02-28 michael
* [r777]
imon::quantity and imon::status patch from Stefan Gmeiner /
Christian Brueggemann
2007-02-26 michael
* [r776]
backported 774:775 from trunk
* [r775]
ChangeLog refresh
* [r774]
compiler warnings on x86_64 fixed
2007-02-25 michael
* [r773]
backport 768:771 from trunk, version changed to 0.10.1-RC2
* [r772]
ChangeLog refreshed
* [r771]
lots of compiler warnings removed, C++-style comments removed,
changed struc initialisation from 'field:value' to '.field=value'
2007-02-24 michael
* [r770]
strstr() and substr() added to string plugin
* [r769]
ChangeLog processed with svn2cl
* [r768]
LCD4Linux-0.10.1-RC1
* [r767]
trunk version incremented to 0.10.2-SVN
* [r766]
branch 0.10.1 created
* [r765]
tag 0.10.0 created
* [r764]
Version number changed to 0.10.1-RC1
2007-02-05 michael
* [r763]
only use picoLCD if libusb is available
2007-02-04 michael
* [r762]
svn version bumped manually
* [r761]
autoconf & smoketest bugs fixed
* [r760]
'Electronic Assembly' driver by Stefan Gmeiner
* [r759]
picoLCD driver bugs fixed
2007-01-23 michael
* [r758]
drv_picoLCD was missing in distribution
* [r757]
removed -SVN from version string
* [r756]
try to add svn version
2007-01-21 michael
* [r755]
indent
* [r754]
new function 'decode()'
* [r753]
removed unused variable
2007-01-20 michael
* [r752]
keypad widget cleanup
* [r751]
GPO cleanup
* [r750]
minor fixes to evaluator
* [r749]
dynamic properties for bars; new 'property_valid()' helper
* [r748]
indent
2007-01-19 michael
* [r747]
driver for picoLCD displays from mini-box.com by Nicu Pavel
* [r746]
dynamic properties for keypad widget
* [r745]
indent
2007-01-18 michael
* [r744]
dynamic properties for Icon widget
2007-01-17 michael
* [r743]
dynamic properties for GPO's
* [r742]
removed DOS newlines again :-(
* [r741]
indent
* [r740]
changed version number from 0.10.1-CVS to 0.10.1-SVN
2007-01-16 michael
* [r739]
new driver 'HD44780-I2C'
* [r738]
Fix compilation of plugin_wireless.c with linux kernel 2.6.19
from Guillaume LECERF
* [r737]
Patch from Robert Buchholz: NULL driver link error fixed, m4
files included in distribution
* [r736]
patch from Mattia Jona-Lasinio for lcd-linux 0.12.0
* [r735]
svn keywords
* [r734]
removed some DOS newlines
2007-01-15 michael
* [r733]
minor cosmetic changes and fixes
2007-01-14 michael
* [r732]
re-bootstrapped
* [r731]
svn keywords corrected
* [r730]
svn keywords corrected
* [r729]
added svn properties and keywords
* [r728]
changed $Revision to $Rev
* [r727]
removed all tags
* [r726]
svn properties fixed
* [r725]
svn:ignore ported from .cvsignore
* [r724]
switch from CVS to SVN
2006-10-01 reinelt
* [r723]
[lcd4linux @ 2006-10-01 11:54:38 by reinelt]
timer widget uses properties
2006-09-29 reinelt
* [r722]
[lcd4linux @ 2006-09-29 04:48:21 by reinelt]
image widget uses properties now; new property 'reload'
2006-10-04 root
* [r721]
image widget memory leaks fixed (thanks to Magne Torresen)
2006-09-19 entropy
* [r720]
[lcd4linux @ 2006-09-19 11:20:52 by entropy]
Added missing prototypes
2006-09-15 siretart
* [r719]
[lcd4linux @ 2006-09-15 20:30:03 by siretart]
rerun bootstrap on request from Ernst Bachmann
<e.bachmann@xebec.de>
Message-Id: <200609152109.17600.e.bachmann@xebec.de>
2006-09-15 entropy
* [r718]
[lcd4linux @ 2006-09-15 19:06:47 by entropy]
debug spam reduced, comment typo fixed
* [r717]
[lcd4linux @ 2006-09-15 19:00:50 by entropy]
iconv charset converter plugin
2006-09-14 entropy
* [r716]
[lcd4linux @ 2006-09-14 20:36:39 by entropy]
Improved example showing how to display network and hdd activity
on an usb hub
* [r715]
[lcd4linux @ 2006-09-14 11:19:29 by entropy]
New cmdline option -p to specify the pidfile location
2006-09-14 reinelt
* [r714]
[lcd4linux @ 2006-09-14 04:08:54 by reinelt]
variables use a static list, no realloc, linear search
* [r713]
[lcd4linux @ 2006-09-14 03:49:14 by reinelt]
indent run
2006-09-13 entropy
* [r712]
[lcd4linux @ 2006-09-13 20:07:59 by entropy]
Fixing bug #1494773 (compiles only on i368/amd64 machines) by
providing a dummy implementation for other archs
* [r711]
[lcd4linux @ 2006-09-13 20:04:57 by entropy]
threads change argv[0] to their thread name, for a neat 'ps'
output
2006-09-13 reinelt