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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735
|
2012-01-22 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.6 released.
2012-01-22 [r384-385] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* README, procmeter.c, procmeter.h, NEWS, FILES: Updated for version 3.6.
2012-01-22 [r383] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeter3_modules.1: Added the Battery module and re-ordered
all of the modules into alphabetical order.
2012-01-22 [r382] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/battery.c: Add capital letters and full stops to
description, replace spaces with underscores in output name.
2012-01-22 [r381] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/battery.c: Use design full for percentage remaining, make
all variable outputs graphs as well as text, reduce update rate
on fixed data, change graph units to common format, display
voltage in V not mV.
2012-01-22 [r380] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/battery.c: Replace TABs with spaces.
2012-01-21 [r379] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/battery.c (added): A module to report on the new-style
battery information from /sys/class/power_supply/ (written by
Bernhard R. Link).
2012-01-09 [r378] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk3/menus.c: Remove the last traces of bitmaps.
2012-01-09 [r377] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk3/menus.c, man/procmeterrc.5, procmeterrc: Allow setting the
menu background colour on GTK3.
2012-01-09 [r375-376] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeterrc.5: Describe the new font option and clarify which
other options apply only to specific versions.
* gtk3/window.c, procmeterrc: Change the name of the GTK3 font
option.
2012-01-09 [r374] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk3/window.c, procmeterrc: Add new font entries to the
configuration file that can be used by GTK3 version and using
Pango naming method rather than XLFD.
2012-01-08 [r373] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/menus.c, xaw/window.c: Don't crash if the specified font
doesn't exist.
2012-01-08 [r372] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* Makefile: Install the procmeter.h file into
/usr/local/include/ProcMeter3 rather than into
/usr/local/lib/X11/ProcMeter3/include. (Fix for Debian bug
#651150).
2012-01-08 [r371] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* Makefile: Don't install the procmeterrc.install file except when
there is already a procmeterrc file in the installation directory
(don't overwrite it). (Fix for Debian bug #651149).
2012-01-08 [r370] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* Makefile, modules/Makefile, procmeterp.h: Don't install ProcMeter
modules under /usr/lib/X11/ProcMeter3 but use
/usr/lib/ProcMeter3. (Patch from ISHIKAWA Mutsumi in Debian bug
report #651145).
2012-01-08 [r369] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* Makefile, log/Makefile, lcd/Makefile, gtk1/Makefile,
gtk2/Makefile, gtk3/Makefile, xaw/Makefile: Remove "PHONY"
targets so that when recompiling the executables don't get
needlessly relinked.
2012-01-08 [r367-368] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* Makefile: Adjust the usage of the LDFLAGS variable (hard-code
'-rdynamic', add '-g', change '-lX11') and small other changes.
* log/Makefile, lcd/Makefile, xaw/widgets/Makefile, gtk1/Makefile,
gtk2/Makefile, gtk3/Makefile, modules/Makefile,
gtk1/widgets/Makefile, gtk2/widgets/Makefile,
gtk3/widgets/Makefile, xaw/Makefile: Adjust the usage of the
LDFLAGS variable (hard-code '-rdynamic', add '-g', change
'-lX11') and small other changes.
2012-01-07 [r366] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk3/widgets/PMGraph.c, gtk3/widgets/PMBar.c,
gtk3/widgets/PMText.c, gtk3/widgets/PMGeneric.c: Some fine-tuning
of text positioning and margins.
2012-01-07 [r365] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk3/window.c: Fixed resize and redraw problem.
2012-01-07 [r364] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* test-compile.sh: Added GTK3 to list of tests.
2012-01-07 [r362] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk3/run.c, gtk3/widgets/PMGraph.c, gtk3/widgets/PMBar.c,
gtk3/window.c, FILES, gtk3/widgets/PMGraph.h, man/procmeterrc.5,
gtk3/resources.c, man/gprocmeter3.1, gtk3/bitmap.c (removed),
gtk3/widgets/PMBar.h, gtk3/window.h, gtk3/widgets/PMGeneric.c,
gtk3/widgets/PMGeneric.h, Makefile, gtk3/menus.c,
gtk3/widgets/PMText.c, man/procmeter3_modules.1, gtk3/Makefile,
gtk3/widgets/PMText.h, gtk3/widgets/Makefile: A mostly-working
version with GTK3 widgets:
* The widgets don't refresh properly when more than 8 present.
* The widgets don't resize when the top level window is resized.
* The fonts with standard names (used by Xaw, GTK1, GTK2) don't work.
2012-01-07 [r360-361] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/stat-intr.c: Don't use data from freed string.
* xaw/window.c: Fix for latest change.
2012-01-07 [r359] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk1/widgets/PMBar.c, gtk2/widgets/PMBar.c: Don't completely
redraw the bar widget when new data is added.
2012-01-04 [r357-358] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk2/window.c: Remove the event_box widget. Set the toplevel
widget background colour to get better visibility of divisions
between widgets (just like the Xaw version).
* gtk1/window.c: Remove the event_box widget.
2012-01-04 [r354-356] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/window.c: Change the code to match the commented out bit in
GTK1/2.
* gtk2/menus.c: Make the properties window not resizeable.
* gtk1/window.c, gtk2/window.c: Comment out larger block of unused
code for clarity.
2012-01-03 [r353] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk1/widgets/Makefile, gtk2/widgets/Makefile: Remove unneeded
target from Makefile.
2011-12-30 [r352] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk1/menus.c, gtk1/window.c, gtk2/menus.c, gtk2/window.c,
gtk1/bitmap.c (removed), gtk1/Makefile, gtk1/window.h,
gtk2/bitmap.c (removed), gtk2/Makefile, gtk2/window.h: Remove the
custom bitmaps from GTK1 and GTK2 versions because they are not
used.
2011-12-30 [r351] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/acpi.c: Remove unused variable.
2011-12-30 [r350] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeter3-gtk3.1 (added): Copy GTK2 manual page to create
GTK3 version.
2011-12-30 [r349] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk3 (added): Copy GTK2 sub-directory to create starting point
for GTK3.
2011-12-30 [r348] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/wireless.c: Fix the file header check, change units from
dBm to linear, remove kernel 2.4.x work-arounds.
2011-11-27 [r347] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/menus.c: Remove gcc compilation warning.
2011-11-05 [r345] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* Makefile: Add the "-lX11" flag in the Makefile (patch from the
Debian package maintainer Wences René Arana Fuentes for Debian
bug #556073).
2011-10-03 [r344] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* FILES, ANNOUNCE (removed), LSM (removed): Don't include the
ANNOUNCE or LSM files in future releases.
2011-10-03 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.5d released.
2011-10-03 [r341-343] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* ANNOUNCE: Update for version 3.5d.
* LSM: Update for version 3.5d.
* FILES, NEWS: Update for version 3.5d.
2011-05-21 [r340] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* Makefile, modules/Makefile: Add an 'install-strip' target, use
the force option when creating symlinks (patch from Mike Liang).
Make the GTK-2 version the default link for gprocmeter3 if both
are built (rather than making none).
2011-01-08 [r339] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/stat-intr.c, man/procmeter3_modules.1, procmeterrc: Use
the "options" parameter in the configuration file to limit the
number of interrupts processed.
2011-01-08 [r338] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/stat-intr.c: Fix parsing of /proc/interrupts.
2011-01-08 [r337] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* module.c: If realloc() fails then free the memory as well as
returning NULL (change prompted by Joey Hess).
2010-12-31 [r336] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/stat-intr.c: Remove the CVS $Header$ line.
2010-12-31 [r335] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/stat-intr.c: Don't crash if the /proc/interrupts file has
very long lines (based on patch from Joey Hess).
2010-12-24 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Changed version control environment from RCS to CVS to SVN.
2010-12-24 [r324] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeter.h: Check-in file to allow transition to CVS then SVN.
2010-07-03 [r321-323] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeter3_modules.1: Fixes for several groff errors [patch
from Wences Rene Arana Fuentes via Debian package maintainer].
* Makefile: Fix directory for manpages following FHS [patch from
Wences Rene Arana Fuentes via Debian package maintainer].
* man/procmeter3-lcd.1, man/procmeter3.1, man/procmeterrc.5,
man/gprocmeter3.1, man/procmeter3-log.1: Fixes for several groff
errors [patch from Wences Rene Arana Fuentes via Debian package
maintainer].
2010-02-28 [r320] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/longrun.c, gtk1/window.c, gtk2/window.c, xaw/run.c,
modules/acpi.c, module.c, xaw/window.c, gtk1/run.c, gtk2/run.c:
Make error messages format consistent.
2010-02-28 [r319] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/longrun.c, module.c, modules/apm.c, modules/loadavg.c,
lcd/window.c: Updated code to remove unused return value warnings
from gcc-4.4 on Ubuntu (list of warnings from Mike T. Liang).
2010-02-20 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.5c released.
2010-02-20 [r318] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* NEWS: Updated for version 3.5c.
2010-02-20 [r316-317] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* README, procmeter.h: Updated for version 3.5c.
* modules/Makefile: Include special libsensors compilation/linking
features.
2010-02-20 [r315] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/libsensors-fan.c (added), modules/libsensors-volt.c
(added), modules/libsensors-temp.c (added),
modules/check-no-libsensors.sh (added): Initial revision
2010-02-20 [r313-314] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/sensors.c: Fixed directory searching. Print warning that
module is old and recommend the new Temperature or Fanspeed
module instead.
* man/procmeter3_modules.1: Updated with libsensors based modules.
2009-12-07 [r312] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk1/menus.c, gtk2/menus.c, xaw/menus.c: Remove 64-bit
compilation warnings (patch by Mike T. Liang) as well as fix
usage of Boolean/integer data type.
2009-12-01 [r310-311] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* module.c: Sort the module menu into alphabetical order (patch by
Mike T. Liang).
* Makefile: Pass the LD and CC variables down to the sub-Makefiles
(patch inspired by Mike T. Liang).
2009-04-21 [r309] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/df.c: Fix to handle disks over 2 TB.
2008-12-07 [r308] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/stat-disk.c: Ignore the 'whole disk' type entries when
counting the total disk accesses, just count the partitions.
2008-10-23 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.5b released.
2008-10-23 [r307] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* NEWS: Update for version 3.5b.
2008-10-10 [r306] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeterrc.5, lcd/window.c: The LCD priority parameter is
now a string, not an integer.
2008-09-07 [r305] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/menus.c: Be more careful with comparisons of different data
types.
2008-07-23 [r304] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeterrc: Change the startup section to have text, graph and
bar chart as well as a comment referring to 'ProcMeter3 --help'.
2008-05-05 [r303] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/biff.c, modules/stat.c, modules/loadavg.c, modules/apm.c,
procmeterrc.c, module.c, modules/vmstat.c, modules/logfile.c,
Makefile, modules/netdev.c, modules/stat-intr.c, modules/df.c,
modules/meminfo.c, modules/sensors.c, modules/wireless.c,
procmeter.h, modules/stat-cpu.c, modules/cpuinfo.c,
modules/stat-disk.c: Provide a function fgets_realloc() that all
modules can call instead of fgets. This avoids any buffer overrun
that might occur with fgets(), removes the need for deciding
buffer sizes in advance and handles some file format changes.
2008-05-05 [r302] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeter3.1, README, gtk1/window.c, gtk2/window.c,
man/gprocmeter3.1, xaw/window.c: Add Extended Window Manager
Hints command line option (based on GTK2 patch from Wolfgang
Kroener).
2008-05-04 [r301] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/stat-intr.c, modules/stat.c: Increase the buffer size for
reading /proc/interrupts.
2008-04-27 [r300] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk1/widgets/PMBar.c, gtk2/widgets/PMBar.c,
xaw/widgets/PMGraph.c, xaw/widgets/PMBar.c, lcd/window.c,
gtk1/widgets/PMGraph.c, gtk2/widgets/PMGraph.c: Ensure that
graph-min and graph-max get updated correctly.
2008-04-13 [r299] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* module.c: Set the locale to "C" to avoid problems parsing numbers
(patch from Wolfgang Kroener).
2007-12-28 [r298] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/acpi.c: Patch from Joey Hess.
2007-12-20 [r297] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* module.c: Don't ignore the first two directory entries, they
might not be '.' and '..'.
2007-12-16 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.5a Released.
2007-12-16 [r296] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* NEWS: Updated for version 3.5a.
2007-12-16 [r295] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeter.h: Updated for version 3.5a.
2007-12-15 [r293-294] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeter3-lcd.1, man/procmeter3.1, man/procmeterrc.5,
man/gprocmeter3.1, man/procmeter3_modules.1,
man/procmeter3-log.1: Updates to the manual pages, mainly for the
new program names in version 3.5.
* modules/acpi.c, modules/acpi.h: Patch from Joey Hess for the
following: - Deal with batteries that report they're charged to
greater than their max capacity. - Patch from Christian Schäfer
to add support for using on acpi systems with no batteries. -
guard against potential division by zero. - fix an off-by-one -
minor bug fix to acpi code, don't skip over dotfiles
2007-11-24 [r292] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk1/window.c, gtk2/window.c: Set minimum size for graph window.
Make main window resize like Xaw version depending on contents or
when user requests a resize.
2007-11-21 [r290-291] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk2/widgets/PMBar.c, gtk2/widgets/PMText.c,
gtk2/widgets/PMGeneric.c, gtk2/widgets/PMGraph.c: Handle the
widget being destroyed more than once (a new GTK 'feature').
* gtk1/window.c, gtk2/window.c: Make sure that the right mouse
button menu appears even if there are no outputs displayed.
2007-11-21 [r289] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* Makefile: Only create the link from procmeter3-xaw to procmeter3
if it doesn't already exist.
2007-11-20 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.5 Released.
2007-11-20 [r288] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeter.c, procmeter.h, NEWS: Updated to version 3.5.
2007-09-27 [r287] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* README: Update README for version 3.5.
2007-09-26 [r286] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* Makefile, modules/Makefile: Added DESTDIR option for installation
location.
2007-09-26 [r284-285] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeter3-gtk1.1 (added), man/procmeter3-gtk2.1 (added),
man/procmeter3-xaw.1 (added): Initial revision
* Makefile: Rename executables for each version named after the
source directory. Create symbolic links procmeter3-xaw ->
procmeter3 and procmeter3-gtk[12] -> gprocmeter3. Change the
installation targets appropriately for the renamed executables.
2007-09-26 [r283] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk1/Makefile, gtk2/Makefile, xaw/Makefile: Rename executables
for each version named after the source directory.
2007-09-20 [r282] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk2/window.c: Fix the window resizing (different from GTK1).
2007-09-19 [r281] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk2/widgets/PMBar.c (added), gtk2/window.c (added),
gtk2/widgets/PMGraph.h (added), gtk2/resources.c (added),
gtk2/bitmap.c (added), gtk2/widgets/PMBar.h (added),
gtk2/window.h (added), gtk2/widgets/PMGeneric.c (added), gtk2
(added), gtk2/widgets/PMGeneric.h (added), gtk2/widgets (added),
gtk2/menus.c (added), gtk2/widgets/PMText.c (added),
gtk2/Makefile (added), gtk2/widgets/PMText.h (added),
gtk2/widgets/Makefile (added), gtk2/run.c (added),
gtk2/widgets/PMGraph.c (added): Initial revision
2007-09-19 [r278-280] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk1/run.c: Change to look more like GTK2 version.
* gtk1/Makefile, gtk1/widgets/Makefile: Makefile specifically
labelled as being for GTK1.
* Makefile: Make both GTK1 and GTK2 versions.
2007-09-09 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.4g Released.
2007-09-09 [r277] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* README, procmeter.h, NEWS: Update to version 3.4g.
2007-09-07 [r276] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/sensors.c: Use new sensors directory /sys/class/hwmon* in
kernel 2.6.22 (patch from Harry G. Clayton).
2007-08-25 [r275] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/netdev.c: Change to use long long values (patch from
Jacob Mandelson).
2007-08-21 [r274] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/cpuinfo.c: Fix memory allocation problem.
2007-08-10 [r273] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/stat-cpu.c: Fixed bugs with array overwriting on mult-CPU
machines and mis-allocation of memory on older kernels.
2007-06-21 [r272] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* README: Add note about being GTK 1 only.
2007-06-06 [r271] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/acpi.c: Fix the battery discharge rate statistics (mA not
mW) (patch from Joey Hess).
2007-05-15 [r270] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/acpi.c: Update for kernel version 2.6.21 (patch from Joey
Hess).
2007-04-17 [r269] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/datetime.c: Set the default updates for the date to be 60
seconds (so that it only takes 1 minute after unsuspending to
show correct time). The uptime is now accurately described as the
time that the system has been running for and not the time since
boot (counter stops when suspended).
2007-02-16 [r266-268] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeter.h, NEWS: Update to version 3.4f.
* modules/acpi.c: Limit string length when reading from /proc/.
* modules/df.c: Use longer strings for reading /proc/mounts.
2006-07-23 [r265] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/biff.c: Check the file contents if the timestamp or size
have changed.
2006-05-18 [r264] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk1/Makefile: Check for GTK1 libraries before trying to compile.
2006-04-29 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.4e Released.
2006-04-29 [r262-263] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* NEWS: Update to version 3.4e.
* man/procmeter3_modules.1: Add the CPUInfo module.
2006-04-29 [r261] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeter.h: Update to version 3.4e.
2006-04-13 [r260] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/cpuinfo.c: Replace ' ' with '_' in output name.
2006-03-21 [r259] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/cpuinfo.c (added): Initial revision
2006-03-11 [r258] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/acpi.c: Update to synchronise code with wmbattery/sleepd
(patch from Joey Hess).
2005-11-19 [r257] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeterp.h: Make the label long enough to contain the string
inserted when loading the module.
2005-11-05 [r256] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeter3-lcd.1, man/procmeterrc.5, man/gprocmeter3.1,
man/procmeter3_modules.1, man/procmeter3-log.1: Spell check and
small updates.
2005-10-15 [r255] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/longrun.c, modules/netdev.c, gtk1/bitmap.c,
modules/wireless.c, modules/vmstat.c, xaw/bitmap.c: Remove
gcc-4.0 signed/unsigned pointer warnings.
2005-06-14 [r254] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/df.c, procmeterrc: Set the default scaling to 20% and 5
divisions.
2005-06-06 [r252-253] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/stat.c: Handle, but don't display, the new CPU statistics
(iowait, irq, softirq and steal).
* modules/stat-cpu.c: Added in the new CPU statistics (iowait, irq,
softirq and steal).
2005-05-06 [r251] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/acpi.c: Fix a bug in acpi.c that made it not read the
info file and thus, not work. See Debian bug #307278 (patch from
Joey Hess).
2005-04-30 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.4d Released.
2005-04-30 [r250] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeter.h, NEWS: Update to version 3.4d.
2005-04-30 [r248-249] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/stat-intr.c, modules/stat-cpu.c, modules/stat-disk.c:
Change variables from 'long' to 'long long' (inspired by changes
to stat.c).
* modules/stat.c: Change variables from 'long' to 'long long'
(Patch from <nix@esperi.org.uk>).
2005-02-07 [r247] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/stat-disk.c: Added /dev/mapper support (patch from
<nix@esperi.org.uk>).
2004-12-11 [r246] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/acpi.c: More changes from Joey Hess for the ACPI module
for kernel 2.6.
2004-11-28 [r245] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/acpi.c: Apply fixes from my branch version back into
Joey's version.
2004-11-28 [r244] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/acpi.c, modules/acpi.h: Update from Joey Hess for ACPI
functions. o Use the proper new-style acpi string when looking
for ac adaptor status. o Base battery charge calculations for
ACPI on design capacity, instead of last full capacity. Some
batteries may exceed previous last full on their next charging,
and this also lets you see when you have a damaged battery that
is not fully charging. o If acpi battery charging state is
unknown, but the rate is 0, then the battery is charged and on AC
power, and the unknown state can be ignored. Analysis and patch
by "TeXitoi". o Sort devices returned by readdir in acpi, since
the order can be random. o Make acpi code put -1 in the time
remaining field if the "present rate" is 0. o Set the cutoff
point for old acpi to 20020214 (was 20020208). o Added support
for ACPI version 20030109 (2.5 kernel), and generally support for
changing ACPI strings across versions.
2004-11-28 [r243] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/acpi.h: Update to handle version 2.6 kernel.
2004-09-07 [r241] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeterrc.5: Make 'startup section' a sub-heading.
2004-09-05 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.4c Released.
2004-09-05 [r239-240] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeter.h, NEWS: Updated for version 3.4c.
* gtk1/window.c: Make sure setting grid-min and grid-max works.
2004-05-17 [r238] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/sensors.c: Handle kernel 2.6.x better.
2004-05-15 [r237] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk1/widgets/PMGraph.c: Fix bug that stopped grid_max being set.
2004-04-25 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.4b Released.
2004-04-25 [r236] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeter.h, NEWS: Update for version 3.4b.
2004-04-04 [r235] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeter3_modules.1: Update with information about kernel
2.6 changes.
2004-04-03 [r231-234] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/stat-disk.c: Make sure current & previous values are
reset (don't use them when checking file contents). For kernel
2.6.x use the file /proc/diskstats instead of /proc/stat.
* modules/stat.c: Make sure current & previous values are reset
(don't use them when checking file contents). Handle missing disk
line in kernel 2.6.x.
* modules/stat-intr.c, modules/vmstat.c, modules/stat-cpu.c: Make
sure current & previous values are reset (don't use them when
checking file contents).
* modules/wireless.c: Fix bug in header detection and make sure
current & previous values are reset.
2004-03-27 [r230] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/meminfo.c: Update to work with version 2.6.x kernels.
2004-03-19 [r229] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/sensors.c: Update to work with version 2.6.x kernels.
2004-01-04 [r228] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/wireless.c: Handle different header line for hostap
wireless driver (patch from Joey Hess).
2003-06-28 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.4a Released.
2003-06-28 [r227] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* NEWS: Updated for version 3.4a.
2003-06-28 [r226] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeter.h: Updated for version 3.4a.
2003-06-21 [r222-225] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeter3_modules.1: Allow an options parameter to stat-disk
to specify extra disk devices.
* modules/stat-disk.c: Allow an options parameter to specify extra
disk devices. Handle the order of disks changing at run-time.
* procmeter.c: Fix memory corruption bug.
* modules/longrun.c, gtk1/widgets/PMBar.c, gtk1/widgets/PMText.c,
modules/datetime.c, gtk1/widgets/PMGeneric.c,
gtk1/widgets/PMGraph.c: Include <string.h>.
2003-05-10 [r221] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/meminfo.c: Handle more than 4 GB of memory (patch from
Jan Christiaan van Winkel).
2003-04-12 [r220] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* log/window.c: Flush stdout after printing each line.
2003-04-06 [r219] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeter3-lcd.1: Corrected description in manual page.
2003-03-24 [r218] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/biff.c: Don't change the atime of the mailbox (patch from
Tim Connors).
2003-02-23 [r217] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/stat-intr.c: Fix for crashing when adding an interrupt
graph.
2003-01-17 [r216] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* Makefile: Don't overwrite the procmeterrc file if it already
exists, but do always copy the procmeterrc.install file.
2003-01-12 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.4 Released.
2003-01-12 [r215] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* NEWS: Updated for version 3.4.
2002-12-08 [r213-214] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeter3_modules.1: Updates to the DateTime module.
* modules/datetime.c: Add new time outputs that don't include the
timezone. Use strftime() for all the time to text conversions.
2002-12-08 [r212] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* lcd/window.c: Fix some out-by-one errors in text positioning.
2002-12-07 [r206-211] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/template.c: Remove PROCMETER_NAME_LEN from the comments.
Don't fix the string lengths in the code.
* modules/uname.c, modules/netdev.c, modules/sensors.c,
modules/stat-cpu.c, modules/logfile.c, modules/stat-disk.c:
Remove PROCMETER_NAME_LEN from the comments. Modify the
snprintf() usage to use PROCMETER_NAME_LEN+1.
* modules/df.c: Remove PROCMETER_NAME_LEN from the comments. Use
snprintf() to generate the names.
* modules/acpi.c: Rename some outputs to take account of longer
names possible.
* modules/longrun.c, modules/stat-intr.c, modules/biff.c,
modules/meminfo.c, modules/stat.c, modules/datetime.c,
modules/apm.c, modules/loadavg.c, modules/wireless.c,
modules/vmstat.c, modules/procmeter.c: Remove PROCMETER_NAME_LEN
from the comments.
2002-12-07 [r202-205] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk1/menus.c, gtk1/window.c, xaw/window.c, xaw/menus.c: Size
strings based on the #define value.
* procmeter.c: Handle the longer name output when displaying the
'-h' information.
* procmeter.h: Add #defines for the maximum length of the text
string and the graph units.
* module.c: Change PROCMETER_NAME_LEN for PROCMETER_NAME_LEN+1.
2002-12-01 [r200-201] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* README, procmeter.h: Updated to version 3.4.
* procmeterp.h: Renamed no-x to log.
2002-12-01 [r199] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* lcd/window.c: Finished the graph and bar chart outputs.
2002-12-01 [r198] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeterrc.c: Don't crash if the .procmeterrc file cannot be
read.
2002-11-30 [r195-197] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* Makefile: Added procmeter3-lcd, renamed procmeter3-no-x to
procmeter3-log. Added the extra manual pages.
* lcd/Makefile (added), lcd (added), lcd/window.c (added): Initial
revision
* log/Makefile, log/window.c: Updated now that it is no-longer
called 'no-x' but is 'log'.
2002-11-30 [r191-194] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeter3-lcd.1 (added), man/procmeter3_modules.1 (added):
Initial revision
* man/procmeterrc.5: Renamed procmeter3-no-x to procmeter3-log.
Added the LCD section to the procmeterrc file description.
* man/procmeter3-log.1: Removed the modules to a separate manual
page. Renamed procmeter3-no-x to procmeter3-log.
* man/procmeter3.1, man/gprocmeter3.1: Removed the modules to a
separate manual page.
2002-11-29 [r190] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* log/Makefile: Remove unneeded widget.o entry.
2002-11-09 [r189] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeter3.1, man/gprocmeter3.1, man/procmeter3-log.1: Added
a description of the VM statistics.
2002-11-09 [r187-188] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/vmstat.c (added): Initial revision
* modules/stat-intr.c, modules/stat.c, modules/stat-cpu.c,
modules/stat-disk.c: Updated to be more robust and handle kernel
version 2.5.x with no VM stats in /proc/stat.
2002-11-03 [r186] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/apm.c: Fix the parsing of /proc/apm where the version
number contains letters.
2002-10-27 [r185] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/longrun.c: Update for glibc v2.3.x (from Joey Hess).
2002-08-24 [r184] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* Makefile: Added an extra variable to set the man pages directory.
2002-08-10 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.3b Released.
2002-08-10 [r183] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* NEWS: Updated for version 3.3b.
2002-07-07 [r182] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/netdev.c: Use of uninitialised memory (found by
valgrind).
2002-07-06 [r181] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* module.c: Fix potential pointer problem (patch inspired by Nix).
2002-07-06 [r180] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeterrc.c: Avoid walking off the start of the line on
completely blank lines (patch from Nix).
2002-06-30 [r178-179] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* Makefile: Make the clean target go into the no-x directory.
* modules/acpi.c: Remove an ACPI potential crash (patch from Joey
Hess).
2002-06-16 [r175-177] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* Makefile: Make the RC_PATH Makefile variable and CPP definition a
pathname and not a filename. Install the procmeterrc.install file
in all cases and also as procmeterrc if not existing.
* procmeterp.h, procmeterrc.c: Make the RC_PATH Makefile variable
and CPP definition a pathname and not a filename.
* modules/Makefile: Remove the RC_PATH variable, it is not used.
2002-06-04 [r172-174] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* Makefile: Delete the executables when doing 'make distclean'.
* gtk1/window.c, modules/uname.c, modules/biff.c, modules/stat.c,
modules/template.c, modules/acpi.c, modules/loadavg.c,
modules/apm.c, procmeterp.h, module.c, modules/logfile.c,
modules/longrun.c, modules/netdev.c, modules/stat-intr.c,
modules/meminfo.c, modules/sensors.c, modules/datetime.c,
procmeter.h, modules/wireless.c, xaw/window.c,
modules/procmeter.c, modules/stat-cpu.c, modules/stat-disk.c:
Make the length of the output name be a compile time variable
rather than a hard-coded constant.
* modules/df.c: Make the length of the output name be a compile
time variable rather than a hard-coded constant. Handle NFS
mounted disks.
2002-06-04 [r163-171] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* Makefile: Added procmeter3-no-x program.
* procmeter.c: Move common code here, change names of functions to
start, stop X windows part.
* procmeterp.h: Add prototypes for the moved code and wrapper
functions for widget updates. Change prototypes/names of
functions to start, stop X windows part.
* module.c: Initialise all parts of the Output and Module
structures.
* gtk1/window.c, xaw/window.c: Remove the common parts to
../procmeter.c and add wrapper functions for widget updates.
* gtk1/window.h, xaw/window.h: Add prototypes for Resize() and
MoveOutput().
* gtk1/menus.c: Don't try and do anything if X has not been
initialised (e.g. gprocmeter3 -h).
* xaw/menus.c: Don't try and do anything if X has not been
initialised (e.g. procmeter3 -h).
* log/Makefile (added), log (added), no-x (added), no-x/run.c
(added), no-x/menus.c (added), log/window.c (added): Initial
revision
2002-06-04 [r162] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/longrun.c: Add some more details to the description of
the module.
2002-06-04 [r161] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/longrun.c, modules/wireless.c: Remove the error messages
for people who don't have this unusual hardware (same as other
modules).
2002-06-03 [r159-160] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeter3-log.1 (added): Initial revision
* man/gprocmeter3.1: Updated the manual page to include the changes
from procmeter3.1.
2002-06-02 [r158] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/acpi.c: Fix for /proc/acpi with no status file in it
(From Joey Hess).
2002-04-20 [r156-157] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/acpi.c: Bug fix if there is no battery info (from Joey
Hess).
* man/procmeter3.1: Manual page update for ACPI module (from Joey
Hess).
2002-04-20 [r155] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/netdev.c: Handle the cases of device statistics going to
zero and wrapping around separately.
2002-04-14 [r154] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* README: Add acknowledgement of the Joey Hess contributed modules.
2002-04-14 [r153] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/longrun.c (added), modules/acpi.c (added), modules/acpi.h
(added): Initial revision
2002-04-14 [r152] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/datetime.c: Small type declaration tidy-up.
2002-04-14 [r151] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeter3.1: Added documentation for the wireless andd
longrun modules.
2002-01-26 [r150] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/wireless.c: Ignore bogus results from kernel and
calculate it ourselves. (patch from Joey Hess).
2002-01-20 [r149] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/wireless.c: Handle more bogus values from card. (patch
from Joey Hess).
2001-12-16 [r148] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/df.c: Updated to allow NFS mounts to appear.
2001-12-02 [r147] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/wireless.c: Handle bogus values from card. (patch from
Joey Hess).
2001-12-02 [r146] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/wireless.c (added): Initial revision (file from Joey
Hess).
2001-11-11 [r145] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/datetime.c: Added in a 12 hour clock option. (patch from
Joey Hess).
2001-07-22 [r144] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/df.c: Fix DF free giving multiples of 1024 blocks instead
of finer granularity.
2001-07-08 [r143] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/stat.c: Fix disk statistics.
2001-05-27 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.3a Released.
2001-05-27 [r142] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeter.h, NEWS: Updated to version 3.3a.
2001-04-15 [r141] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/netdev.c: Clear the network statistics in case the device
is removed from the file.
2001-02-21 [r140] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/stat-disk.c: Updated the kernel 2.4 disk statistics.
2001-02-14 [r139] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/stat.c: Updated the kernel 2.4 disk statistics.
2001-02-02 [r138] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* Makefile: Fix the installation directory.
2001-01-05 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.3 Released.
2001-01-05 [r137] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* NEWS: Updated to version 3.3.
2001-01-05 [r132-136] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* README: Update with information about gprocmeter3.
* Makefile: Allow compilation of the programs individually. Improve
the installation procedure.
* procmeterrc: Updated with a note about the options that don't
work with GTK.
* man/gprocmeter3.1 (added): Initial revision
* man/procmeter3.1, man/procmeterrc.5: Updated the manual pages.
2001-01-04 [r129-131] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/widgets/PMGeneric.c, xaw/widgets/PMGenericP.h,
xaw/widgets/PMGraph.c, xaw/widgets/PMBar.c, xaw/widgets/PMText.c:
Update the generic widget to match GTK widgets. Change the
variable name for the widget to match GTK widgets.
* gtk1/widgets/PMBar.c, gtk1/widgets/PMText.c,
gtk1/widgets/PMGeneric.c, gtk1/widgets/PMGraph.c: Change some
function names to match the Xaw widgets.
* Makefile: Pass the LDFLAGS into the xaw and gtk sub-directories.
2000-12-16 [r127-128] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/widgets/PMGeneric.c, xaw/widgets/PMGraph.c,
xaw/widgets/PMBar.c, xaw/widgets/PMText.c, xaw/widgets/PMGraph.h,
xaw/widgets/PMBar.h, xaw/widgets/PMText.h: Change some functions
to get commonality with GTK version.
* xaw/widgets/Makefile: Makefile improvements.
2000-12-16 [r126] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/Makefile (added): Initial revision
2000-12-16 [r122-125] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/window.c: Change the name of the files. Use display as an
extern variable and not pane. Change some functions to match the
GTK version.
* xaw/run.c: Change the name of the files. Use display as an extern
variable and not pane.
* xaw/menus.c: Change the name of the files. Make some small
changes to match up with the GTK version.
* xaw/resources.c, xaw/bitmap.c, xaw/window.h: Change the name of
the files.
2000-12-16 [r121] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* gtk1/widgets/PMBar.c (added), gtk1/window.c (added),
gtk1/widgets/PMGraph.h (added), gtk1/resources.c (added),
gtk1/widgets/PMBar.h (added), gtk1/window.h (added),
gtk1/bitmap.c (added), gtk1/widgets/PMGeneric.c (added), gtk1
(added), gtk1/widgets/PMGeneric.h (added), gtk1/widgets (added),
gtk1/menus.c (added), gtk1/widgets/PMText.c (added),
gtk1/Makefile (added), gtk1/widgets/PMText.h (added),
gtk1/widgets/Makefile (added), gtk1/widgets/PMGraph.c (added),
gtk1/run.c (added): Initial revision
2000-12-16 [r119-120] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/Makefile: Some makefile improvements.
* procmeterrc.c: Removed a gcc compilation warning.
2000-12-16 [r117-118] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeterp.h: Updated the comments to include the new file names.
* procmeter.h: Updated to version 3.3.
2000-12-16 [r116] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* Makefile: Added gtk, moved xaw parts to sub-directory.
2000-12-13 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.2b Released.
2000-12-13 [r114-115] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeter.h, NEWS: Updated to version 3.2b.
* modules/stat-intr.c, modules/stat.c, modules/stat-cpu.c,
modules/stat-disk.c: Fix for change to version 2.4 kernel format.
2000-10-22 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.2a Released.
2000-10-22 [r113] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeter.h, NEWS: Updated for version 3.2a.
2000-10-22 [r110-112] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeterrc.c: Remove a gcc compilation warning.
* procmeter.c: Update the usage information.
* modules/stat.c, modules/stat-disk.c: Make work with kernel 2.4.0.
2000-03-21 [r109] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeter3.1: Make more clear about the command line options.
2000-01-23 [r108] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/widgets/PMGeneric.c, xaw/widgets/PMText.c: Use a default font
if the user specified one does not exist.
1999-12-16 [r107] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeterrc.c: Close the .procmeterrc file after reading from it.
1999-12-12 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.2 Released.
1999-12-12 [r106] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* NEWS: Updated to version 3.2.
1999-12-12 [r105] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/df.c: Removed problems with recognising mounts in
/etc/fstab that can't be monitored.
1999-12-08 [r104] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeter.c: Updated the usage information.
1999-12-06 [r102-103] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* README: Updated to version 3.2.
* man/procmeter3.1, procmeter.c, man/procmeterrc.5, procmeterp.h,
procmeterrc.c: Allow command line options to override the
.procmeterrc file. The sections and parameters in the
.procmeterrc file are not case sensitive.
1999-12-05 [r101] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/run.c: Set the display environment variable before forking.
1999-12-05 [r100] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/sensors.c: Check for more files in the
/proc/sys/dev/sensors directories.
1999-12-04 [r97-99] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/run.c: Fix bug with memory allocation.
* procmeter.c, procmeterrc.c, procmeterp.h: Free the procmeterrc
file memory at the end.
* module.c: Free the memory for the run command.
1999-12-04 [r96] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/sensors.c: Updated the Unload() function to make memory
cleanup safer.
1999-12-03 [r95] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/netdev.c, modules/df.c, modules/datetime.c,
modules/stat-cpu.c, modules/logfile.c: Updated the Unload()
function to make memory cleanup safer.
1999-11-30 [r93-94] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/run.c (added): Initial revision
* Makefile, man/procmeterrc.5, procmeterrc, module.c, procmeterp.h,
xaw/menus.c: Add in simplified method of specifying programs to
run.
1999-10-05 [r90-92] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeterrc.5: Add a note about grid-min and bar charts.
* xaw/window.c: Resize the widget in the same way as the graph.
* xaw/widgets/PMBar.c, xaw/widgets/PMBarP.h: Add a rolling average
over the last 8 samples.
1999-10-04 [r89] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/logfile.c: Bug fix for bar output changes.
1999-09-30 [r88] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeterrc.5: Added a bar chart widget.
1999-09-30 [r87] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/widgets/PMBar.c (added), xaw/widgets/PMBar.h (added),
xaw/widgets/PMBarP.h (added): Initial revision
1999-09-29 [r86] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeter3.1, modules/template.c, modules/stat.c,
modules/loadavg.c, xaw/menus.c, modules/logfile.c, Makefile,
modules/stat-intr.c, modules/netdev.c, procmeter.c,
xaw/widgets/Makefile, modules/df.c, modules/meminfo.c,
modules/sensors.c, procmeter.h, xaw/window.c, modules/stat-cpu.c,
modules/stat-disk.c, xaw/bitmap.c, xaw/window.h: Added a bar
chart widget.
1999-09-29 [r85] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/widgets/SubMenus.c: Bug fix for menu popup failures.
1999-09-28 [r83-84] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/menus.c: Add a third level of menus to select the type of
output.
* xaw/widgets/SubMenus.c: Fix problems with deep sub menus.
1999-09-27 [r80-82] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/widgets/SubMenus.c (added), xaw/widgets/SubMenus.h (added):
Initial revision
* xaw/widgets/Makefile: Add the SubMenus file.
* Makefile, xaw/menus.c: Abstract the submenu operations in new
files widgets/SubMenus.[ch].
1999-09-24 [r78-79] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/menus.c: Add a delete option to the function menu.
* module.c: Allow the update interval to be specified globally in
the resources section of the config file.
1999-09-24 [r77] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeterrc.5: Allow the update interval to be specified
globally in the resources section of the config file.
1999-09-24 [r76] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeterrc.5, module.c, procmeterp.h, xaw/menus.c,
xaw/window.c: Allow the labels on the outputs to be changed.
1999-09-24 [r75] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* module.c: Don't change to the library directory when running.
1999-08-31 [r72-74] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/resources.c, xaw/window.h: Simpler parsing of config file
options.
* xaw/window.c: Better handling of colour options in the config
file.
* xaw/menus.c: Better handling of colour options in the config
file. Force the dialog box labels to be flat even with Xaw3d.
1999-08-30 [r71] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeterrc: Changed the white background to almost-white to work
better with Xaw3d.
1999-08-22 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.1c Released.
1999-08-22 [r70] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeter.h, NEWS: Updated to version 3.1c.
1999-07-28 [r69] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeter3.1: Added in the sensors module.
1999-07-28 [r68] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/sensors.c (added): Initial revision
1999-07-06 [r67] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/stat-cpu.c: Fix for SMP machines.
1999-06-19 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.1b Released.
1999-06-19 [r66] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeter.h, NEWS: Updated to version 3.1b.
1999-06-19 [r65] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/netdev.c, modules/stat-intr.c, modules/stat.c,
modules/stat-disk.c: Ensure that negative outputs never appear
(ppp0 start/stop or 32bit wrap around).
1999-06-19 [r64] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeter.c: List the available formats (graph or text) in the
'-h' output.
1999-06-19 [r63] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeter3.1, man/procmeterrc.5: Improve the manual page
documentation.
1999-05-20 [r62] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* Makefile: Change the XINCLUDE path to use X11R6.
1999-04-18 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.1a Released.
1999-04-18 [r61] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeter.h, NEWS: Updated to version 3.1a.
1999-04-18 [r59-60] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/netdev.c: Fixed problems with newer kernels and
bytecounts.
* modules/Makefile: Added -Wall to CFLAGS.
1999-04-17 [r58] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/widgets/Makefile: Added the include path for the X include
files.
1999-03-14 [r57] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/widgets/PMGraph.c: Bug fix with resizing the window.
1999-03-07 [r56] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* Makefile: Change the X library path.
1999-03-06 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.1 Released.
1999-03-06 [r55] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* NEWS: Updated to version 3.1.
1999-03-06 [r54] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/netdev.c: Fix bug with byte and packet outputs confusion.
1999-03-03 [r53] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/window.c: Add a new startup section with an order option
instead of the start-text/graph options.
1999-03-03 [r52] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeterrc.5, procmeterrc: Add a new startup section with an
order option instead of the start-text/graph options.
1999-03-03 [r51] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeter3.1: Add in the multiple CPU, disk and interrupt
outputs.
1999-03-03 [r49-50] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/stat-intr.c (added), modules/stat-cpu.c (added),
modules/stat-disk.c (added): Initial revision
* modules/stat.c: Increase the buffer length for interrupts in
kernel version 2.2.2.
1999-02-24 [r48] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/meminfo.c: Add in a memory available option which is the
free memory plus the disk cache.
1999-02-23 [r47] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/netdev.c: Add in the number of bytes per second on the
network interfaces.
1999-02-16 [r46] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/widgets/PMGraph.c: Bug fix for grid_max.
1999-02-13 [r42-45] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeterrc.5, module.c, xaw/menus.c, xaw/window.c: Allow the
grid-max, update and graph-scale parameters to be user specified
in the .procmeterrc file.
* modules/netdev.c, modules/df.c, modules/meminfo.c,
modules/stat.c, modules/template.c, modules/README,
modules/loadavg.c, procmeter.h, modules/procmeter.c,
modules/logfile.c: Change the graph_units parameter to allow
different graph_scale values to be user specified.
* xaw/widgets/PMGraph.c, xaw/widgets/PMGraph.h,
xaw/widgets/PMGraphP.h: Allow the maximum number of grid lines to
be specified.
* Makefile: Rename the default .procmeterrc to procmeterrc since
system defaults don't normally have a '.'.
1999-02-12 [r41] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeterrc.5: Rename the default .procmeterrc to procmeterrc
since system defaults don't normally have a '.'.
1999-02-09 [r40] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/menus.c: Add a configuration file option to specify a program
to run from the menu. Change the popping up of menus to make sure
they are on screen.
1999-02-09 [r39] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeterrc: More information and preconfigured options.
1999-02-09 [r38] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/datetime.c: Make the text for the uptime display centre
better.
1999-02-09 [r37] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeterrc.5: Add a configuration file option to specify a
program to run from the menu.
1999-02-09 [r36] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeter.c, module.c, procmeterp.h: Add a configuration file
option to specify a program to run from the menu.
1999-02-07 [r35] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/window.c: Allow the output displays to be moved around while
running.
1999-02-07 [r34] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* Makefile, modules/Makefile, procmeterp.h: Updated the way that
the paths are specified and compiled into the program.
1999-02-07 [r33] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeterp.h, xaw/menus.c: Allow the output displays to be moved
around while running.
1999-02-06 [r32] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/menus.c: Add more information to the properties display
window.
1998-10-24 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.0a Released.
1998-10-24 [r26-31] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* NEWS (added): Initial revision
* procmeter.h: Updated to version 3.0a.
* README: More information about the Internet resources.
* man/procmeter3.1: A slight re-order of the information.
* procmeter.c: Format the 'procmeter3 -h' output nicely.
* modules/uname.c: Remove a trailing newline from the text
description string.
1998-10-24 [r20-25] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeterrc: Default to having the version number visible.
* xaw/window.c: Use an inclusive OR not and exclusive or when
adding the default graphs.
* xaw/widgets/PMGraph.c: Left align the graph title to leave more
room for the units label.
* modules/uname.c: Truncate the hostname to the host part.
* modules/meminfo.c: Make the units label on the graph consistent.
* modules/netdev.c, modules/df.c, modules/logfile.c: Ensure that
the module starts without an error if there are no outputs.
1998-10-09 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.0 Released.
1998-10-09 [r19] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/apm.c: Ignore the APM version number (until I can find
what the differences are).
1998-09-26 [r17-18] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* xaw/widgets/PMGraph.c: Don't draw the graph units label if there
is no generic label.
* xaw/menus.c: Ensure that the menus popup in the correct place
first time.
1998-09-26 [r11-16] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/df.c (added), modules/logfile.c (added): Initial revision
* man/procmeter3.1: Add the LogFile and DiskUsage modules.
* xaw/window.c: Clamp the graph values to 0<=x<=65535.
* modules/biff.c: Change in line counting.
* modules/netdev.c, module.c: Bug fix in options parsing.
* Makefile: Improve the makefile.
1998-09-22 [r10] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/netdev.c: Don't add the same device more than once.
1998-09-22 [r9] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/netdev.c, modules/stat.c, modules/loadavg.c,
modules/procmeter.c: Fix some typos.
1998-09-22 [r8] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/meminfo.c: Changed Mem_Swap to Swap_Free and Swap_Used.
1998-09-21 [r7] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* modules/biff.c (added): Initial revision
1998-09-21 [r5-6] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* man/procmeter3.1: Added the biff module.
* modules/README: Clarification of the Initialise() function.
1998-09-19 Andrew M. Bishop <amb@gedanken.demon.co.uk>
Version 3.0-beta released.
1998-09-19 [r3-4] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* procmeterrc (added): Initial revision
* Makefile, modules/Makefile, procmeterp.h: Fix the make install
problems.
1998-09-19 [r2] Andrew M. Bishop <amb@gedanken.demon.co.uk>
* README (added), man/procmeter3.1 (added), modules/uname.c
(added), xaw/widgets/PMGeneric.c (added), xaw (added),
xaw/widgets/PMGeneric.h (added), modules/template.c (added),
modules/stat.c (added), xaw/widgets (added), modules/loadavg.c
(added), modules/apm.c (added), module.c (added), xaw/menus.c
(added), xaw/widgets/PMText.c (added), xaw/widgets/PMText.h
(added), procmeter.c (added), xaw/widgets/Makefile (added),
xaw/widgets/PMGraph.c (added), modules/Makefile (added),
procmeter.h (added), xaw/window.c (added), xaw/widgets/PMGraph.h
(added), xaw/resources.c (added), xaw/bitmap.c (added),
xaw/window.h (added), man/procmeterrc.5 (added), modules/README
(added), procmeterp.h (added), procmeterrc.c (added), modules
(added), xaw/widgets/PMGraphP.h (added), man (added), Makefile
(added), modules/netdev.c (added), modules/meminfo.c (added),
xaw/widgets/PMGenericP.h (added), modules/datetime.c (added),
modules/procmeter.c (added), xaw/widgets/PMTextP.h (added):
Initial revision
|