-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
1721 lines (1027 loc) · 42.5 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
/***************************************************************************/
/* ChangeLog of Apcupsd 3.14.x */
/* */
/* Adam Kropelin <akropel1 at rochester dot rr dot com> */
/* Kern Sibbald <kern at sibbald dot com> */
/* */
/* http://www.apcupsd.com/ */
/* http://sourceforge.net/projects/apcupsd */
/***************************************************************************/
2008-05-18 14:18 adk0212
* platforms/suse/Makefile:
Fix init script location on SuSE. It should be /etc/rc.d, but we
were placing the file in /etc/rc.d/init.d.
2008-05-18 13:16 adk0212
* ReleaseNotes, include/version.h:
Fix release date.
2008-05-18 13:15 adk0212
* ChangeLog, ReleaseNotes, include/version.h:
Prep for 3.14.4 release.
2008-05-18 13:12 adk0212
* Makefile, doc/Makefile, doc/Makefile.in:
Add 'make install' support for man pages.
2008-05-12 20:09 adk0212
* platforms/: README, install-symlinks.sh:
Remove obsolete files.
2008-05-12 20:06 adk0212
* Developers, doc/latex/manual.tex:
Update contributors list. This is probably still way out of date.
2008-05-12 20:01 adk0212
* doc/latex/manual.tex:
Remove references to powerflute.
2008-05-11 18:34 adk0212
* platforms/: mandrake/apcupsd.spec.in, redhat/apcupsd.spec.in,
suse/apcupsd.spec.in:
Remove --with-powerflute flag from specs.
2008-05-11 18:18 adk0212
* ChangeLog.old:
Remove old changelog.
2008-05-11 17:00 adk0212
* ChangeLog, ReleaseNotes, include/version.h:
Prep for 3.14.4 test release.
2008-05-11 16:23 adk0212
* ABOUT-NLS:
Remove unused file.
2008-05-11 10:24 adk0212
* platforms/darwin/building-universal-binaries.txt:
Update Mac OS X universal binary build instructions.
2008-05-11 10:10 adk0212
* platforms/: Makefile, alpha/Makefile, darwin/Makefile,
debian/Makefile, engarde/Makefile, etc/Makefile, redhat/Makefile:
Remove unnecessary dependency includes.
2008-05-11 09:56 adk0212
* include/Makefile.in, src/libusbhid/Makefile.in:
Remove some obsolete Makefile.in
2008-05-11 09:56 adk0212
* examples/: Makefile, Makefile.in, client.c, megaclient.c,
readfifo.c, smartsim.c, snoopdecode.c:
New Makefile for examples/ and source fixes to build with C++
compiler.
2008-05-10 20:10 adk0212
* autoconf/targets.mak:
Micor cleanups: Rename 'INST' to 'COPY'. Remove extraneous
semicolons.
2008-05-10 20:07 adk0212
* autoconf/targets.mak, src/Makefile, src/cgi/Makefile,
src/gapcmon/Makefile:
Better solution for install ordering. Invoke make explicitly to
build targets and then again to perform the install. This is just
an extension of the same trick used to force 'all' to build subdirs
before local targets.
2008-05-10 13:54 adk0212
* src/: Makefile, cgi/Makefile, gapcmon/Makefile:
Fix parallel 'make install' from an unbuilt tree. Requires manually
making install-* depend on all-targets. I'd prefer this be done
automatically but I cannot find a way that works (yet).
2008-05-10 11:19 adk0212
* platforms/Makefile:
Do not perform platform install in parallel.
2008-05-10 11:18 adk0212
* Makefile:
Recurse into platforms/ after src/.
2008-05-10 10:52 adk0212
* platforms/alpha/Makefile:
Install banners for alpha.
2008-05-10 10:51 adk0212
* platforms/: darwin/Makefile, debian/Makefile, engarde/Makefile,
redhat/Makefile:
Add banners to 'make install'.
2008-05-10 10:47 adk0212
* autoconf/targets.mak:
Tweak install/uninstall banner spacing.
2008-05-10 10:47 adk0212
* platforms/: unifix/Makefile, unifix/Makefile.in,
yellowdog/Makefile, yellowdog/Makefile.in:
'make install' support for unifix and yellowdog.
2008-05-09 20:04 adk0212
* configure, autoconf/configure.in, platforms/suse/Makefile,
platforms/suse/Makefile.in, platforms/suse/Makefile.in.old,
platforms/suse/apcupsd.in.old, platforms/suse/apcupsd.spec.in.old,
platforms/suse/halt-setup.sh.in, platforms/suse/halt.in,
platforms/suse/rc.config.sh:
'make install' support for SuSE. Plus remove some bitrotted
platform files for SuSE 8.x.
2008-05-09 19:39 adk0212
* platforms/sun/: Makefile, Makefile.in:
'make install' support for sun.
2008-05-08 19:37 adk0212
* configure, autoconf/configure.in:
Do not autogenerate platform/*/Makefile any more.
2008-05-08 19:36 adk0212
* autoconf/targets.mak:
Add install/uninstall banner macros.
2008-05-08 19:36 adk0212
* autoconf/variables.mak.in:
Add some path variables needed by platform install scripts.
2008-05-08 19:35 adk0212
* platforms/: gentoo/Makefile, gentoo/Makefile.in, hpux/Makefile,
hpux/Makefile.in, mandrake/Makefile, mandrake/Makefile.in,
slackware/Makefile, slackware/Makefile.in, unknown/Makefile:
'make install' support for gentoo, hpux, mandrake, slackware.
2008-05-08 18:57 adk0212
* platforms/: freebsd/Makefile, freebsd/Makefile.in,
netbsd/Makefile, netbsd/Makefile.in, openbsd/Makefile,
openbsd/Makefile.in:
'make install' support for *BSD
2008-05-06 20:16 skoona
* src/gapcmon/gapcmon.c:
Corrected the use of NOMPOWER and the calc of current usage amount
2008-05-04 11:30 adk0212
* configure, autoconf/configure.in:
Remove powerflute option from configure. Powerflute has been broken
for several releases after the removal of rawupsstats support from
NIS
2008-05-04 11:13 adk0212
* src/drivers/usb/usb.c:
Add a heuristic to fix up incorrect NOMINV or NOMOUTV. Some UPSes
(RS 500) report decivolts instead of volts. Reported by Kirill S.
Bychkov <yason@linklevel.net>.
2008-05-04 10:43 adk0212
* src/win32/build-win32-cross-tools:
Update to NSIS 2.37.
2008-05-04 10:43 adk0212
* configure, autoconf/configure.in:
Add win32/Makefile to generate list. Necessary since we're not
rewriting the win32 Makefile stuff yet.
2008-04-20 19:03 skoona
* src/gapcmon/: ChangeLog, Makefile, gapcmon.c, gapcmon.h:
- Removed close() fron sknet_net_close() api.
g_io_channel_shutdown() handled the close and shutdown of the
socket. second close was actually closing an active socket from
another thread (i.e. reuse #) discovered on a quad-core platform.
- Added ICON_DIR to compiler makefiles to support _load_icons
ability to find icons at run-time. $(datadir) is passed into
ICON_DIR; its assumed datadir include $(DISTDIR). This change
was pointed out by Kirill S. Bychkov in Feb/2008.
James,
2008-04-19 10:12 adk0212
* examples/safe.apccontrol.in:
Remove mention of serial port since there are many other comms
types now.
2008-04-07 19:03 adk0212
* autoconf/targets.mak, autoconf/variables.mak.in,
platforms/alpha/Makefile, platforms/alpha/Makefile.in,
platforms/darwin/Makefile, platforms/darwin/Makefile.in,
platforms/debian/Makefile, platforms/debian/Makefile.in,
platforms/engarde/Makefile, platforms/engarde/Makefile.in,
platforms/redhat/Makefile, platforms/unknown/Makefile,
platforms/unknown/Makefile.in:
Add 'make install' support for alpha, darwin, debian, engarde, and
unknown. Also misc fixes to existing install support.
2008-04-06 20:24 adk0212
* configure, autoconf/configure.in:
Don't autogenerate redhat Makefile.
2008-04-06 19:35 adk0212
* src/: drivers/Makefile.in, drivers/apcsmart/Makefile.in,
drivers/dumb/Makefile.in, drivers/net/Makefile.in,
drivers/pcnet/Makefile.in, drivers/snmp/Makefile.in,
drivers/test/Makefile.in, drivers/usb/Makefile.in,
drivers/usb/bsd/Makefile.in, drivers/usb/generic/Makefile.in,
drivers/usb/linux/Makefile.in, gd1.2/Makefile.in, gd1.2/README,
gd1.2/demoin.gif, gd1.2/gd.c, gd1.2/gd.h, gd1.2/gddemo.c,
gd1.2/gdfontg.c, gd1.2/gdfontg.h, gd1.2/gdfontl.c, gd1.2/gdfontl.h,
gd1.2/gdfontmb.c, gd1.2/gdfontmb.h, gd1.2/gdfonts.c,
gd1.2/gdfonts.h, gd1.2/gdfontt.c, gd1.2/gdfontt.h, gd1.2/giftogd.c,
gd1.2/index.html, gd1.2/mathmake.c, gd1.2/mtables.c,
gd1.2/webgif.c, intl/ChangeLog, intl/Makefile.in, intl/VERSION,
intl/bindtextdom.c, intl/cat-compat.c, intl/dcgettext.c,
intl/dgettext.c, intl/explodename.c, intl/finddomain.c,
intl/gettext.c, intl/gettext.h, intl/gettextP.h,
intl/hash-string.h, intl/intl-compat.c, intl/l10nflist.c,
intl/libgettext.h, intl/linux-msg.sed, intl/loadinfo.h,
intl/loadmsgcat.c, intl/localealias.c, intl/po2tbl.sed.in,
intl/textdomain.c, intl/xopen-msg.sed, lib/Makefile.in,
po/Makefile.in, po/POTFILES.in, po/apcupsd.pot, po/ca.po,
po/cat-id-tbl.c, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po,
po/et_EE.po, po/eu_ES.po, po/fi.po, po/fo_FO.po, po/fr.po,
po/ga_IE.po, po/gr_GR.po, po/hr.po, po/hu.po, po/in_ID.po,
po/is.po, po/is_IS.po, po/is_is.po, po/it.po, po/iw_IL.po,
po/ja.po, po/kl_GL.po, po/ko.po, po/lt_LT.po, po/lv_LV.po,
po/nl.po, po/no.po, po/pl.po, po/pt.po, po/ro_RO.po, po/ru.po,
po/sk.po, po/sl.po, po/sr.po, po/stamp-cat-id, po/sv.po, po/tr.po,
po/uk_UA.po, po/wa.po, po/zh_TW.Big5.po:
Remove unused files: Various Makefile.in, gd1.2/, intl/, po/.
2008-04-06 19:09 adk0212
* autoconf/Makefile.in:
Remove unused file.
2008-04-06 19:07 adk0212
* Makefile.in, configure, autoconf/configure.in,
autoconf/mkinstalldirs, autoconf/targets.mak,
autoconf/variables.mak.in, platforms/Makefile,
platforms/Makefile.in, platforms/etc/Makefile,
platforms/etc/Makefile.in, platforms/redhat/Makefile,
platforms/redhat/Makefile.in, src/Makefile, src/Makefile.in,
src/cgi/Makefile, src/cgi/Makefile.in, src/gapcmon/Makefile,
src/gapcmon/Makefile.in:
First round of 'make install' implementation. Basic
install/uninstall is working. Only platform implemented so far is
redhat.
2008-04-04 19:11 adk0212
* autoconf/targets.mak:
Fix clean output on Solaris.
2008-04-04 19:01 adk0212
* configure, autoconf/configure.in, src/gapcmon/Makefile:
Fix gapcmon build on OpenSolaris. On OpenSolaris, gethostbyname_r()
is in libnsl. Also fix up some tests in configure to use
AC_SEARCH_LIBS. Thanks to James Dean <jgmdean@gmail.com> for
loaning me an ssh login on his OpenSolaris box.
2008-04-02 18:55 adk0212
* Makefile, configure, autoconf/aclocal.m4, autoconf/configure.in,
autoconf/targets.mak, autoconf/variables.mak.in, src/Makefile,
src/cgi/Makefile, src/drivers/Makefile,
src/drivers/apcsmart/Makefile, src/drivers/dumb/Makefile,
src/drivers/net/Makefile, src/drivers/pcnet/Makefile,
src/drivers/snmp/Makefile, src/drivers/test/Makefile,
src/drivers/usb/Makefile, src/drivers/usb/bsd/Makefile,
src/drivers/usb/generic/Makefile, src/drivers/usb/linux/Makefile,
src/gapcmon/Makefile, src/lib/Makefile, src/libusbhid/Makefile:
Add new make system - configure and build works (including
dependencies and parallel make) - 'make install' not yet
implemented - i18n support removed - included libgd support removed
- obsolete Makefile.in files will remain until 'make install' is
complete
2008-02-06 17:53 adk0212
* platforms/80-apcupsd-ups-policy.fdi:
Fix hal policy file syntax. For some reason this blatantly
incorrect file actually works on RHEL5 (hal-0.5.8). Thanks to
Andrew Telford <a.telford@ieee.org> for correcting it.
2008-02-03 16:37 adk0212
* autoconf/aclocal.m4, autoconf/configure.in,
src/gapcmon/gapcmon.c:
Revert ctime_r() change. It is not actually necessary.
2008-02-03 15:48 adk0212
* configure, autoconf/aclocal.m4, autoconf/configure.in,
src/gapcmon/gapcmon.c:
Fix gapcmon compile error on Solaris: Multiple variants of
ctime_r().
2008-02-03 15:32 adk0212
* include/apc.h:
Fix libapcnis.c compile error on Solaris.
2008-02-03 12:19 fleetworks
* platforms/: mandrake/apcupsd.spec.in, redhat/apcupsd.spec.in,
suse/apcupsd.spec.in:
Add debug package to strip suse.
2008-01-29 19:01 adk0212
* src/gapcmon/gapcmon.c:
Fix build on OpenBSD: Need to include netinet/in.h for struct
sockaddr_in.
2008-01-28 21:14 adk0212
* configure, autoconf/configure.in, src/gapcmon/gethostname.c:
Add fake (not thread-safe) gethostbyname_r() for platforms that
don't have it. I'm looking at you, OpenBSD.
2008-01-27 12:00 adk0212
* doc/latex/manual.tex, include/struct.h,
platforms/etc/apcupsd.conf.in, platforms/mingw/apcupsd.conf.in,
src/device.c, src/drivers/net/net.c,
src/drivers/snmp/drv_powernet.c, src/lib/apcconfig.c:
Add POLLTIME directive to control UPS polling interval. NETTIME is
accepted as a synonym for compatibility with old config files.
2008-01-27 11:22 adk0212
* src/lib/apclibnis.c, src/powerflute.c, src/cgi/multimon.c,
src/cgi/upsfetch.c, src/cgi/upsfetch.h, include/nis.h,
src/apcaccess.c:
Sanify net error handling. All net library functions now return
-errno on failure. Kill off global net_errno and net_errmsg.
Improve apcaccess error messages.
2008-01-27 09:56 adk0212
* src/drivers/usb/bsd/bsd-usb.c:
Another missing update.
2008-01-27 09:49 adk0212
* src/drivers/usb/bsd/bsd-usb.c:
Fix compile errors from incomplete input vs feature report
conversion.
2008-01-22 20:10 adk0212
* configure, autoconf/configure.in:
Debian is now using the standard NIS port, 3551. Contributed by
imacat <imacat@mail.imacat.idv.tw>
2008-01-20 14:58 adk0212
* doc/home-page/: index.html, index.wml:
Update web site for 3.14.3.
2008-01-19 16:48 adk0212
* ChangeLog, ReleaseNotes, include/version.h:
Updates for 3.14.3 release.
2008-01-19 13:43 adk0212
* src/gapcmon/gapcmon.c:
Merge gapcmon changes from HEAD 1.41.
2007-12-02 11:38 adk0212
* src/apcaccess.c:
Fix compile warning.
2007-11-29 19:49 adk0212
* platforms/darwin/building-universal-binaries.txt:
Update build instructions for XCode3/Leopard. Many thanks to Dennis
Wurster <dwurster@gmail.com> for loaning me a Leopard-capable G4 to
develop on.
2007-11-21 17:09 adk0212
* src/: apcaccess.c, drivers/net/net.c, lib/apclibnis.c:
Fix bugs that could cause NIS-net driver to get stuck waiting for
comms to be restored instead of shutting down. This included adding
a timeout for connection attempts in net_open() and removing a
wait-for-comms loop from the net driver. Also fix up fallout from
apclibnis cleanups in apcaccess. Thanks to Daniel Born
<born_daniel@yahoo.com> for reporting the issue and testing fixes.
2007-11-21 17:05 adk0212
* Makefile.in, configure:
Add configure parameter to control location of HAL policy file.
Install policy file to this path. By default, the policy file is
only installed on Linux systems. Other platforms need to specify
--with-halpolicydir=DIR to configure. Linux systems can use this
same switch to change the default install path. (Files missed in
last commit.)
2007-11-18 10:24 fleetworks
* platforms/: mandrake/apcupsd.spec.in, redhat/apcupsd.spec.in,
suse/apcupsd.spec.in:
Add halpolicydir to configure statement.
2007-11-18 10:18 fleetworks
* platforms/: mandrake/apcupsd.spec.in, redhat/apcupsd.spec.in,
suse/apcupsd.spec.in:
Make installs the hal policy file now.
2007-11-17 14:09 adk0212
* autoconf/configure.in, platforms/Makefile.in:
Add configure parameter to control location of HAL policy file.
Install policy file to this path. By default, the policy file is
only installed on Linux systems. Other platforms need to specify
--with-halpolicydir=DIR to configure. Linux systems can use this
same switch to change the default install path.
2007-11-17 14:06 adk0212
* platforms/redhat/Makefile.in:
Revert HAL policy file change. We'll do this at a higher level
instead.
2007-11-17 10:45 fleetworks
* platforms/: mandrake/apcupsd.spec.in, redhat/apcupsd.spec.in,
suse/apcupsd.spec.in:
Add hal policy file.
2007-11-17 10:00 adk0212
* src/win32/build-win32-cross-tools:
Upgrade to nsis-2.33.
2007-11-17 09:48 adk0212
* platforms/80-apcupsd-ups-policy.fdi:
Remove extraneous comment close tag.
2007-11-17 09:34 adk0212
* platforms/: 80-apcupsd-ups-policy.fdi, redhat/Makefile.in:
Add policy file to disable hald-addon-hid-ups. Automatically
install and uninstall this policy on Redhat systems.
2007-11-13 18:23 adk0212
* doc/latex/manual.tex:
Fix debian package URLs. Found by Chris Reeves
<chris@astro.ex.ac.uk>.
2007-11-10 08:17 fleetworks
* platforms/: mandrake/apcupsd.spec.in, redhat/apcupsd.spec.in,
suse/apcupsd.spec.in:
Update for suse 10.3
2007-11-09 18:34 adk0212
* src/win32/build-win32-cross-tools:
Update to nsis-2.32.
2007-10-30 18:46 adk0212
* doc/home-page/: index.html, index.wml:
Fix changelog links for 3.14.2.
2007-10-27 13:15 adk0212
* src/drivers/usb/bsd/bsd-usb.c:
Missed part of write report conversion.
2007-10-27 13:14 adk0212
* src/apctest.c:
Add support for reading/writing transfer voltage on USB models.
2007-10-27 13:13 adk0212
* src/drivers/usb/: bsd/bsd-usb.c, generic/generic-usb.c,
linux/linux-usb.c:
When reading, use INPUT or FEATURE report (prefer INPUT). When
writing, use FEATURE report only. This is necessary to properly
support writes on UPSes that offer the same usage in both types of
reports.
2007-10-06 10:52 adk0212
* include/drivers.h, include/extern.h, include/nis.h,
include/struct.h, src/apcaccess.c, src/apcnis.c, src/apctest.c,
src/powerflute.c, src/reports.c, src/smtp.c, src/cgi/cgilib.c,
src/cgi/cgilib.h, src/cgi/multimon.c, src/cgi/upsfetch.c,
src/drivers/drivers.c, src/drivers/apcsmart/apcsmart.h,
src/drivers/apcsmart/smarteeprom.c,
src/drivers/apcsmart/smartsetup2.c, src/drivers/dumb/dumb.h,
src/drivers/dumb/dumboper.c, src/drivers/net/net.c,
src/drivers/net/net.h, src/drivers/pcnet/pcnet.c,
src/drivers/pcnet/pcnet.h, src/drivers/snmp/drv_powernet.c,
src/drivers/snmp/snmp.c, src/drivers/snmp/snmp.h,
src/drivers/test/testdriver.c, src/drivers/test/testdriver.h,
src/drivers/usb/usb.c, src/drivers/usb/usb.h,
src/drivers/usb/usb_common.h, src/drivers/usb/linux/linux-usb.c,
src/lib/apcconfig.c, src/lib/apcexec.c, src/lib/apcfile.c,
src/lib/apclibnis.c, src/lib/apclog.c, src/lib/apcstatus.c,
src/lib/newups.c:
Eliminate "warning: deprecated conversion from string constant to
'char*'" warnings emitted from gcc-4.2.1 (earlier versions with
-Wwrite-strings). Contributed by Steve Yarmie
<tribhuvanji@gmail.com>.
2007-09-30 15:45 adk0212
* src/gapcmon/: gapcmon.c, gapcmon.h:
Merge gapcmon changes from HEAD.
2007-09-22 13:35 adk0212
* src/lib/apcstatus.c:
Add units to NOMINV, NOMOUTV, and NOMBATTV stats.
2007-09-22 13:33 adk0212
* include/defines.h, include/struct.h, src/drivers/usb/usb.c,
src/lib/apcstatus.c:
Add support for Nominal Power (aka Configured Active Power)
reading. Credit to Lars Randers <lars@nstec.dk> for most of the
code.
2007-09-22 13:10 adk0212
* include/defines.h:
Convert eleventy skillion CI_* defines to an enumeration.
2007-09-22 08:48 adk0212
* doc/home-page/: index.html, index.wml:
Update web site for 3.14.2 release.
2007-09-15 17:07 adk0212
* ChangeLog, ReleaseNotes, include/version.h:
Update ChangeLog, ReleaseNotes, and date for 3.14.2 release.
2007-09-15 10:48 adk0212
* src/win32/installer/: Apctray.ini, winapcupsd.nsi:
Remove commented-out code.
2007-09-15 10:48 adk0212
* src/win32/winmain.cpp:
Misc cleanup.
2007-09-15 10:48 adk0212
* src/win32/: balloonmgr.cpp, statmgr.cpp, wintray.cpp, wintray.h:
Fix handle leaks when adding/deleting instances.
2007-09-10 19:35 adk0212
* src/win32/build-win32-cross-tools:
Update NSIS to 2.30.
2007-09-10 19:31 adk0212
* include/version.h:
Bump version to 3.14.2.
2007-09-10 19:09 adk0212
* src/drivers/usb/: bsd/bsd-usb.c, generic/generic-usb.c,
linux/linux-usb.c:
Prefer FEATURE reports over INPUT reports when searching for
usages. This will fix compatiblity with BackUPS LCD models which
have present but non- functional INPUT reports. It may break
compatibility with other models, so fingers are crossed.
2007-09-10 19:08 adk0212
* src/win32/balloonmgr.cpp:
Minor cleanup and spelling fix.
2007-08-28 19:57 adk0212
* configure, autoconf/configure.in:
Address g++ linker vs. libsupc++ differently: Default linker to gcc
if none is specified. This avoids overriding LD= passed to
configure since if the user asks for an explicit LD we really
should honor it (and it's needed for building universal binaries on
OS X).
2007-08-28 19:02 adk0212
* configure, autoconf/configure.in:
Remove dependency on libc++ (again). Must use gcc as linker when
using libsupc++ since g++ automatically links against full libc++.
2007-08-25 15:01 adk0212
* src/lib/newups.c:
Fix race between attach_ups() and detach_ups() which could result
in the UPSINFO structure being freed prematurely. Thanks to James
Abbott <j.abbott@imperial.ac.uk> for running many tests to help me
find this bug.
2007-08-23 18:43 adk0212
* platforms/etc/multimon.conf:
Correct multimon.conf humidity monitoring. Problem fixed by
Patrick Frei. Reference:
https://bugzilla.novell.com/show_bug.cgi?id=199834
2007-08-06 20:17 adk0212
* src/win32/apctray.cpp:
Exit apctray if GetMessage() returns an error.
2007-08-06 20:16 adk0212
* src/win32/winups.h:
Use enum for application-defined messages.
2007-08-06 20:16 adk0212
* src/win32/: wintray.cpp, wintray.h:
Redraw tray icons politely after an Explorer crash.
2007-08-05 17:31 adk0212
* src/lib/apclibnis.c:
Fix bug with multi-threaded net_open() calls. net_open() was using
a global buffer for the destination address. Yikes! Bug manifestied
itself in apctray with multiple monitors occasionally (and
timing-dependently) pointing to the wrong UPS.
2007-08-03 15:08 adk0212
* src/: apctest.c, apcupsd.c, lib/apcconfig.c:
More argvalue to its primary user, apcconfig.c.
2007-08-03 15:08 adk0212
* src/drivers/pcnet/pcnet.c:
Remove SO_REUSEADDR; we'd only need this for TCP. Set SO_BROADCAST
since some platforms (Windows) seem to require it in order to
receive broadcast packets. (Most platforms use it only to enable
*sending* broadcasts.)
2007-08-03 14:41 adk0212
* src/lib/apcexec.c:
Don't leak unnecessary descriptors to child when execing
apccontrol.
2007-08-03 13:52 adk0212
* doc/latex/manual.tex:
Documentation updates: Fix up udev info for modern Linux distros.
Update Windows section for apctray.
2007-08-03 11:49 adk0212
* src/drivers/apcsmart/smart.c:
Wait 20 seconds before declaring COMMLOST. This is necessary when
using a smart serial cable on an UPS with an SNMP monitoring card
installed. The SNMP card appears to disrupt serial comms for
several seconds when interesting events are in progress.
2007-08-03 11:47 adk0212
* examples/smartsim.c:
Add command help key since I can never remember what the keycodes
are.
2007-08-03 11:20 adk0212
* INSTALL, doc/latex/manual.tex, examples/safe.apccontrol.in,
platforms/apccontrol.in, platforms/darwin/apccontrol.in,
platforms/freebsd/apccontrol.in, platforms/mingw/apccontrol.bat,
platforms/openbsd/apccontrol.in, platforms/sun/apccontrol.in:
apccontrol cleanups: powerout and mainsback should not wall; that
is done by onbattery/offbattery under the control of
ONBATTERYDELAY. Also remove obsolete 'restartme' event from scripts
and documentation.
2007-08-03 11:17 adk0212
* src/apcaccess.c:
Remove lots of obsolete code. 'status' is now the only supported
option.
2007-08-01 19:05 adk0212
* src/drivers/pcnet/pcnet.c:
Enable SO_REUSEADDR on pcnet socket to prevent false EADDRINUSE
after quick restarts.
2007-07-26 16:36 adk0212
* platforms/mingw/apccontrol.bat:
Remove duplicate line. Noticed by David P. Mott <dpmott@sep.com>.
2007-07-20 12:17 adk0212
* examples/smartsim.c:
Add support for simulating comm failure.
2007-07-17 18:54 adk0212
* examples/hid-ups.c:
Include /dev in hiddev search.
2007-07-17 18:50 adk0212
* examples/hid-ups.c:
Report time delta from start of program when displaying events.
Contributed by David Fries <david@fries.net>.
2007-07-16 20:28 adk0212
* src/drivers/usb/usb.c:
Add workaround for broken BackUPS Pro model that returns certain
reports encoded in ASCII. Based on a patch from David Fries
<David@Fries.net>.
2007-07-14 13:26 adk0212
* src/win32/: apctray.cpp, winups.h:
Add/remove tray icons on the fly as instances are added or deleted.
2007-07-14 13:05 adk0212
* src/win32/: winres.h, winres.rc, wintray.cpp, wintray.h:
Add HOST field showing hostname:port to context menu.
2007-07-14 13:04 adk0212
* src/win32/build-win32-cross-tools:
Update NSIS to version 2.29.
2007-07-14 12:53 adk0212
* src/win32/apctray.cpp:
Disable autorun when last instance removed.
2007-07-01 14:30 adk0212
* src/drivers/snmp/snmp.c:
Fix SNMP port selection. Newer versions of Net-SNMP appear to
ignore the session remote_port setting. The only way to override
the default port is to include it in the peername string.
2007-06-29 18:18 adk0212
* src/drivers/usb/linux/linux-usb.c:
Fix linux-usb device detection bug when multiple hiddev nodes are
present. Fixes Fedora Bugzilla #245864:
<https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=245864>
2007-06-19 20:43 adk0212
* doc/home-page/: index.html, index.wml:
Update for 3.14.2-win32beta2 release.
2007-06-18 20:23 adk0212
* ChangeLog:
Regen ChangeLog after committing forgotten files.
2007-06-18 19:49 adk0212
* include/defines.h:
Change CMD* definitions to enumeration.
2007-06-18 19:49 adk0212
* src/action.c:
Remove unused CMDDOREBOOT.
2007-06-18 19:47 adk0212
* src/lib/apcevents.c:
Remove unused code.
2007-06-18 19:45 adk0212
* ChangeLog:
Regen ChangeLog for 3.14.2-win32beta2.
2007-06-18 19:38 adk0212
* ReleaseNotes, include/version.h:
Update for 3.14.2-win32beta2 release.
2007-06-17 20:19 adk0212
* src/win32/: statmgr.cpp, statmgr.h, wintray.cpp:
Change StatMgr::Get() to return a managed string.
2007-06-17 20:14 adk0212
* src/win32/: apctray.cpp, statmgr.cpp, statmgr.h, wintray.cpp,
wintray.h: