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 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008
|
2006-06-12 Danny Kukawka <danny.kukawka@web.de>
again (re)tagged and released official update release v0.6.2
2006-06-12 Danny Kukawka <danny.kukawka@web.de>
Fixed SUSE bug #184076:
* ChangeLog.package, doc/doxy/changelog.dox: updated changelogs
* NEWS: updated release notes
* doc/doxy/fixed_bugs.dox: added fixed bug to list
* po/*.po, po/kpowersave.pot: removed "(messagebus)" and
s/messagebus/dbus/ in all translations
* src/infodialog.cpp: added command to adjust the size of the
dialog before open.
* src/kpowersave.cpp: fixed message if dbus daemon is not
running. Use correct script name and not the name from Fedora.
2006-06-12 Danny Kukawka <danny.kukawka@web.de>
(re)tagged and released official update release, version 0.6.2
2006-06-12 Danny Kukawka <danny.kukawka@web.de>
Fixed SLED bug ##183745:
* configure.in.in: added configure check to differ between
SUSE Linux and SLES/SLED as enterprise products
* NEWS: added fixed bug to release news
* README: changed link to bugzilla for SUSE Linux and SLED/SLES
* doc/doxy/fixed_bugs.dox: added fixed bug to list
* src/kpowersave.cpp: added new link for SLES/SLED bugzilla
* ChangeLog.package, doc/doxy/changelog.dox: updated changelogs
* packaging/*.spec: updated specs to current version
* packaging/FC5.kpowersave.spec: added new Fedora Core 5 spec
2006-06-11 Danny Kukawka <danny.kukawka@web.de>
tagged and released official update release, version 0.6.2
2006-06-11 Danny Kukawka <danny.kukawka@web.de>
Prepared update release v0.6.2:
* ChangeLog.package, doc/doxy/changelog.dox: updated changelogs
* NEWS: added release news
* configure.in.in, Doxyfile, kpowersave.kdevelop, src/main.cpp:
Updated to new version number v0.6.2
2006-06-11 Danny Kukawka <danny.kukawka@web.de>
* configure.in.in: added configure check to detect K/Ubuntu
* README: changed link to Ubuntu bugzilla to launchpad.net
* src/kpowersave.cpp: added address for ALT Linux and Ubuntu
bugzilla for "Report a bug ..."
2006-06-11 Danny Kukawka <danny.kukawka@web.de>
* kpowersave.kdevelop: added KDE and QT3 libs to code completion
* src/inactivity.cpp: fixed compiler warning
* src/kpowersave.[cpp/h]: added DCOP function to open/close
the detailed information dialog
2006-06-07 Danny Kukawka <danny.kukawka@web.de>
Updated translations back from SUSE/Novell translation team,
reworked and merged the files with existing translations:
* po/es.po:
* po/fr.po:
* po/it.po:
* po/pt_BR.po:
* po/zh_CN.po:
* po/zh_TW.po:
2006-06-07 Danny Kukawka <danny.kukawka@web.de>
* doc/doxy/fixed_bugs.dox: updated list of fixed bugs in doc.
2006-06-07 Danny Kukawka <danny.kukawka@web.de>
* src/kpowersave.[cpp/h]: Added slightly adopted patch from
Timo Hönig <thoenig@suse.de> to fix SUSE bug #176782 and
enable change display brightness (if supported and enabled in
the current scheme) via the mousewheel over the applet icon.
2006-06-07 Danny Kukawka <danny.kukawka@web.de>
Updated dependencies to powersave version 0.12.18 in docs:
* README:
* doc/doxy/main.dox:
2006-06-07 Danny Kukawka <danny.kukawka@web.de>
Fixed SUSE bug #182515: Changed configure dialog to respect the
rules for DPMS timouts from www.xfree86.org/current/DPMSLib.pdf.
* src/configure_Dialog.ui: Added new signal handlers to QSpinBoxes
for the DPMS timeouts
* src/configuredialog.[cpp/h]: added code to correct values for
the timouts to guaranty correct DPMS settings
2006-06-05 Danny Kukawka <danny.kukawka@web.de>
* po/de.po: updated translation, added missing string
2006-06-05 Danny Kukawka <danny.kukawka@web.de>
Fixed errorhandling for DBUS,HAL and powersave connections (this
fix partly SUSE bug #168619) to display correct state:
* src/dbusPowersave.[cpp/h]: added new checks to detect: if HAL
detached from the system message bus and if the user has the rights
to connect to powersaved dbus interface. Added function to access
information if user has the needed rights (check with a "Ping").
Also fixed some typos, removed withespaces, and replaced printf()
with myDebug().
* src/kpowersave.[cpp/h]: Added new function to show errormessages
related to problems with dbus (showDBusErrorMsg()), extended/
reorganised showHalErrorMsg(). Removed no longer needed code
since we now are directly informed if HAL gone. Changed
updateTooltip() to get correct tooltip if HAL not running.
* src/pdaemon.[cpp/h]: reworked handling regarding to the changes
above and to handle new information about the tree central services
for KPOwersave (DBUS,powersave,HAL). Updated code doc.
* configure.in.in: changed dependencies to powersave 0.12.18
because of needed changes related to REPLY_NO_RIGHTS.
2006-06-05 Danny Kukawka <danny.kukawka@web.de>
* src/inactivity.cpp: added a check to catch the case, where (unknow
if this ever the case) the idletime is correct get from the X-Server.
2006-06-02 Danny Kukawka <danny.kukawka@web.de>
* po/fi.po: updated translations back from SUSE/Novell translation
team
2006-06-02 Danny Kukawka <danny.kukawka@web.de>
* src/config/kpowersaverc_default: added more programs to the
autosuspend default blacklist: gmplayer,kaffeine,xine,mencoder
2006-06-02 Danny Kukawka <danny.kukawka@web.de>
* src/kpowersave.cpp: added check before autosuspend, if autosuspend
was disabled via the applet menu
2006-06-02 Danny Kukawka <danny.kukawka@web.de>
Code documentation fixes and updates to current code:
* doc/doxy/fixed_bugs.dox: Added fixed bug to list, back from
kpowersave-CODE10 branch.
* doc/doxy/implemented.dox:
* doc/doxy/process.dox:
* src/inactivity.cpp:
* src/infodialog.cpp:
* src/kpowersave.cpp:
* src/kpowersave.h:
* src/screen.cpp:
2006-06-02 Danny Kukawka <danny.kukawka@web.de>
* doc/doxy/fixed_bugs.dox: added fixed buginfo
* src/inactivity.[cpp,h]: Added new function to workaround XServer bug
regarding to idleTime (dpms timeouts are abstracted, but should not)
and DPMS timeouts (are currently additive - bug #180000). New function
correct the idleTime if needed (related SUSE bug: #177788 / sf.net
#1483392). For more info see comment in fixed_bugs.dox
Todo: evaluate if there is a way to identify the versions of X where
this was changed or get fixed.
2006-06-01 Danny Kukawka <danny.kukawka@web.de>
* po/de.po: fixed german translation
2006-05-29 Danny Kukawka <danny.kukawka@web.de>
* po/hu.po: updated translations back from SUSE/Novell translation
team
2006-05-27 Danny Kukawka <danny.kukawka@web.de>
* po/{bg,da,el,es,fi,fr,it,ja,km,nb,nl,pa,pl,pt,pt_BR,ru,sk,sl_SI,sv,
tr,uk,zh_CN,zh_TW.}.po: merged two new dummy strings from pot file
2006-05-27 Danny Kukawka <danny.kukawka@web.de>
* po/de.po: updated german translation
2006-05-27 Danny Kukawka <danny.kukawka@web.de>
* po/{cs,hu}.po: updated translations back from SUSE/Novell
translation team
2006-05-27 Danny Kukawka <danny.kukawka@web.de>
* po/{fi,km,pl}.po: fixed strings (from last typo fixes)
* po/kpowersave.pot: added dummy strings for better error messages if
powersaved or the DBUS daemon is not running or accessable.
2006-05-22 Danny Kukawka <danny.kukawka@web.de>
* src/kpowersave.cpp/h: (list_CPUFreqPolicys): Added dcop function to
list the supported CPU Frequency policies.
(do_setCPUFreqPolicy): Added dcop function to set the current CPUFreq
policy.
2006-05-22 Danny Kukawka <danny.kukawka@web.de>
* src/kpowersave.cpp/h: (do_setScheme): added new dcop function to
allow set the current scheme via kpowersave (see sf.net bug #1483392)
(disableAutosuspend): litte change, set first applet item to avoid
possible double action
2006-05-22 Danny Kukawka <danny.kukawka@web.de>
* src/eventsrc: updated missing translations back from SUSE/Novell
translation team.
2006-05-22 Danny Kukawka <danny.kukawka@web.de>
* po/de.po: fixed typo in german translation
2006-05-22 Danny Kukawka <danny.kukawka@web.de>
* src/kpowersave.cpp: (disableAutosuspend): fixed sf.net bug #1483392
and set changes on autosuspend state via dcop interface back to the
applet.
2006-04-25 Danny Kukawka <danny.kukawka@web.de>
* src/eventsrc: added czech translations from SUSE/Novell translation
team, removed wrong translations of resume_from_suspend2ram_event
(ja,zh_CN,zh_TW)
2006-04-24 Danny Kukawka <danny.kukawka@web.de>
retagged official update release, version 0.6.1
2006-04-24 Danny Kukawka <danny.kukawka@web.de>
Prepared release official (upstream) update version 0.6.1
* ChangeLog.package, doc/doxy/changelog.dox: Updated Changelogs
* NEWS: updated release NEWS and added last changes
* doc/doxy/fixed_bugs.dox: added fixed bugs to list
* src/eventsrc: removed wrong translations for jp, zh_CN, zh_TW
--> need to retranslate them, regarding to SUSE bug #168838
2006-04-24 Danny Kukawka <danny.kukawka@web.de>
Added russian translations from Anton Farygin <rider@altlinux.com>
* src/eventsrc:
* src/kpowersave.desktop:
* src/kpowersave-autostart.desktop:
2006-04-24 Danny Kukawka <danny.kukawka@web.de>
* README: updated translation with file from Anton Farygin
<rider@altlinux.com>
* po/ru.po: Changed link to ALT Linux bugzilla
2006-04-24 Danny Kukawka <danny.kukawka@web.de>
* src/eventsrc: fixed a description and translation in eventsrc
2006-04-19 Danny Kukawka <danny.kukawka@web.de>
tagged update release version 0.6.1
2006-04-18 Danny Kukawka <danny.kukawka@web.de>
Prepared offical stable update release v0.6.1:
* ChangeLog.package, doc/doxy/changelog.dox: updated Changelogs
* Doxyfile, kpowersave.kdevelop, configure.in.in, src/main.cpp:
update version string to 0.6.1
* NEWS: added new release notes
* src/*.cpp, src/*.h: removed version tag from source files to
avoid to change all files with each new version.
2006-04-18 Danny Kukawka <danny.kukawka@web.de>
* doc/doxy/fixed_bugs.dox: added fixed bug to list.
2006-04-18 Danny Kukawka <danny.kukawka@web.de>
* configure.in.in: added check for headers from dbus-qt3-devel
package (copied from KNetworkMananger source).
2006-04-18 Danny Kukawka <danny.kukawka@web.de>
* src/detaileddialog.cpp: fixed processorbar for multiprocessor/
-core machines without CPUFreq or Throttling support, if a CPU/
Core was deactivated (thanks to Daniel fot the hint).
2006-04-18 Danny Kukawka <danny.kukawka@web.de>
* src/pdaemon.cpp: fixed problems with remaining time until full
charged with APM. Also cleaned up the code and removed no longer
needed/useless checks. (see SUSE bug #167296)
2006-04-13 Danny Kukawka <danny.kukawka@web.de>
Updated translations, back from SUSE/Novell translation team:
* po/fi.po:
* po/km.po:
* po/pl.po:
2006-04-12 Danny Kukawka <danny.kukawka@web.de>
* doc/doxy/fixed_bugs.dox: added fixed bug to doc
* src/eventsrc: removed bad formated UTF8
2006-04-09 Danny Kukawka <danny.kukawka@web.de>
Retagged v0.6.0 and released new version.
2006-04-09 Danny Kukawka <danny.kukawka@web.de>
* ChangeLog.package, doc/doxy/changelog.dox: updated Changelogs
* NEWS: updated release news for v0.6.0
2006-04-09 Danny Kukawka <danny.kukawka@web.de>
* doc/doxy/fixed_bugs.dox: added SUSE/Novell bug #164683
* src/detaileddialog.cpp: Added call setProcessorThrottling()
every 2 secs if throttling is supported or if there is more than
one CPU/core in the system. Added call checkCPUSpeedThrottling()
in setProcessorThrottling() to get always actual data. Fixed
connects to use local pointer to pdaemon object.
This all (including changes since 2006-04-07) should fix
SUSE/Novell bug #164683
* src/inactivity.cpp: fixed compiler warning
2006-04-09 Danny Kukawka <danny.kukawka@web.de>
Added slightly adopted patch from Daniel Gollub to fake the CPU
system information in proc and sys for development and tests:
* configure.in.in: added configure option --enable-fake-cpu
* src/pdaemon.cpp: added ifdef and related changes to fake
the path to the CPU informations under /tmp/foo
* src/pdaemon.cpp: fixed warning for compare unsigned and signed
2006-04-09 Danny Kukawka <danny.kukawka@web.de>
* src/detaileddialog.cpp: set processorbar to deactivated if the
cpuspeed < 0 (cpu is offline) and the machine only support
throttling
* src/pdaemon.cpp: fixed throttling-case if cpu is offline
2006-04-08 Danny Kukawka <danny.kukawka@web.de>
* src/detaileddialog.cpp: reduced usage of getCPUNum(), fixed
display processor freq, if the cPU is back from offline. Added
check to reduce unneded changes in processorbars if nothing changed.
* src/detaileddialog.h: added private variable to store the numbers
in the system
* src/pdaemon.cpp: reduced usage of getCPUNum() by replace with
a variable (numOfCPUs)
* src/pdaemon.h: added private variable to store the numbers in
the system
2006-04-07 Danny Kukawka <danny.kukawka@web.de>
Released new version v0.6.0
2006-04-07 Danny Kukawka <danny.kukawka@web.de>
* ChangeLog.package, doc/doxy/changelog.dox: updated changelogs
for release 0.6.0
* NEWS: updated release news for release 0.6.0
2006-04-07 Danny Kukawka <danny.kukawka@web.de>
* src/pdaemon.cpp: changed waiting intervall for powersave on
startup from 10 sec to 20 to avoid problems on slow machines and
with autologin (again).
2006-04-05 Danny Kukawka <danny.kukawka@web.de>
* Doxyfile, configure.in.ini, src/main.cpp: updated version
numbers for the stable release 0.6.0
* doc/*/index.docbook: fixed date strings to last changes
and remove the date from the future
2006-04-05 Danny Kukawka <danny.kukawka@web.de>
Branch official stable release 0.6.0. Add two new Branches:
- kpowersave-CODE10 (for SUSE 10.1, SLES 10 and SLED 10)
- kpowersave-0.6 (general stable branch)
2006-04-05 Danny Kukawka <danny.kukawka@web.de>
* po/de.po, src/eventsrc: fixed typos in german translations
* src/kpowersave-autostart.desktop, src/kpowersave.desktop:
copied missing translations from SUSE desktop files and
removed not translated strings
2006-04-04 Danny Kukawka <danny.kukawka@web.de>
* src/kpowersave.cpp: changed address for bug reports if this
is a SUSE package to opensuse wiki page for bug reports
* src/main.cpp: fixed address for bugreports in the about
dialog. This should be a mail adress, use now powersave-users ML.
* ChangeLog.package, doc/doxy/changelog.dox: updated Changelogs
* NEWS: updated release news.
2006-04-04 Danny Kukawka <danny.kukawka@web.de>
Prepared offical stable release v0.6.0:
* ChangeLog.package, doc/doxy/changelog.dox: updated Changelogs
* NEWS: update release news
2006-04-04 Danny Kukawka <danny.kukawka@web.de>
Prepare offical stable release 0.6 and remove kpowersave-CODE10
and kpowersave-0.6 branches to add new offical release 0.6.
Reason: kpowersave is now featurecomplete for CODE10 and STABLE
and 0.6 was not released outside SUSE.
* ChangeLog.package, doc/doxy/changelog.dox: backported Changes
from deleted branches
2006-04-04 Danny Kukawka <danny.kukawka@web.de>
* doc/de/Makefile.am, doc/de/index.docbook, doc/de/*.png: Added new
german version of the handbook
2006-04-03 Danny Kukawka <danny.kukawka@web.de>
* doc/doxy/enhance.dox, doc/doxy/process.dox: Updated gnome-screensaver
related enhancement request.
2006-04-03 Danny Kukawka <danny.kukawka@web.de>
* src/screen.cpp: fixed fake shift keyevent, use correct keycode
and set delay to 0
2006-04-03 Danny Kukawka <danny.kukawka@web.de>
Added support for GNOME Screensaver for lock in a GNOME desktop
session:
* po/de.po, po/kpowersave.pot: added string for GNOME screensaver
* src/configuredialog.cpp, src/configuredialog.h: added GNOME
screensaver to configure dialog (only if a GNOME session is running)
* src/kpowersave.cpp: Fixed detection of GNOME session
* src/screen.cpp, src/screen.h: Added support for detection of and
lock with GNOME screensaver
2006-04-02 Danny Kukawka <danny.kukawka@web.de>
* src/config/kpowersaverc_default: added new configure variable
for emit faked keyevent after resume from suspend
* src/kpowersave.cpp, src/kpowersave.h: added function to call
screen:fakeShiftKeyEvent() after resume
* src/screen.h: changed fakeShiftKeyEvent to public SLOT
* src/settings.cpp, src/settings.h: added read new variable
timeToFakeKeyAfterLock from config file
2006-04-01 Danny Kukawka <danny.kukawka@web.de>
* src/Makefile.am: added -lXtst
* src/screen.cpp, src/screen.h: added new function so fake press
shift key to show the login screen on resume if the machine was
locked on supend.
2006-03-29 Danny Kukawka <danny.kukawka@web.de>
* src/kpowersave.cpp: fixed errorhandling for YaST power-management
module. Added returncode 16 (user clicked on Cancel) as successful
case to avoid error message.
2006-03-28 Danny Kukawka <danny.kukawka@web.de>
Fixed UTF-8 in desktop files:
* src/kpowersave-autostart.desktop:
* src/kpowersave.desktop:
2006-03-27 Danny Kukawka <danny.kukawka@web.de>
Branch stable release 0.6.0 for SUSE.
2006-03-27 Danny Kukawka <danny.kukawka@web.de>
* ChangeLog.package, doc/doxy/changelog.dox: updated changelogs
2006-03-27 Danny Kukawka <danny.kukawka@web.de>
* NEWS: added last changes
* doc/doxy/enhance.dox: added gnome-screen-saver related
feature request for 0.6.x code tree (at least for SLES/SLED).
2006-03-27 Danny Kukawka <danny.kukawka@web.de>
Added older spec files for SUSE 9.3 and 9.2:
* packaging/SUSE9.2.kpowersave.spec:
* packaging/SUSE9.3.kpowersave.spec:
2006-03-27 Danny Kukawka <danny.kukawka@web.de>
Updated spec files for upcomming stable version:
* packaging/FC4.kpowersave.spec:
* packaging/SUSE10.0.kpowersave.spec:
* packaging/SUSE10.1.kpowersave.spec:
* packaging/mdk.cooker.kpowersave.spec:
2006-03-27 Danny Kukawka <danny.kukawka@web.de>
* NEWS: added release news
* README: Updated install section and added section with
dependency information and help/bugreport info
* configure.in.in: updated powersave dependency to current
stable version 0.12.7
2006-03-27 Danny Kukawka <danny.kukawka@web.de>
* doc/doxy/enhance.dox, doc/doxy/process.dox: Added new planed
features/enhancements for 0.7.x (devel)/0.8.x (stable) to the
documentation.
2006-03-27 Danny Kukawka <danny.kukawka@web.de>
Prepare new release (v0.6.0-stable):
* Doxyfile: updated version string for code doc
* src/*.{cpp,h}: updated version strings
2006-03-27 Danny Kukawka <danny.kukawka@web.de>
* src/kpowersave.cpp: fixed tooltip to avoid adding string for
charging battery (" -- battery is charging") if the battery is
full (100%) and the machine is on AC, but the battery is reporting
charging (broken ACPI case).
2006-03-27 Danny Kukawka <danny.kukawka@web.de>
* po/*.po, po/kpowersave.pot: merged changes to po and pot file(s)
* src/configuredialog.cpp: fixed strings as proposed by Stefan
Seyfried
2006-03-27 Danny Kukawka <danny.kukawka@web.de>
* po/bg.poi, po/da.po, po/el.po, po/km.po, po/nl.po, po/pa.po,
po/ru.po, po/sk.po, po/sl_SI.po, po/sv.po, po/tr.po, po/uk.po:
Added merged versions of translation files
2006-03-27 Danny Kukawka <danny.kukawka@web.de>
Added patch from Michael Biebl:
* configure.in.in: removed no longer needed check
* src/kpowersave.cpp: fixed connect for autosusend notify on resume
2006-03-25 Danny Kukawka <danny.kukawka@web.de>
* doc/fi/index.docbook: merged changes/fixes from the SUSE/Novell
translation team to the handbook
2006-03-25 Danny Kukawka <danny.kukawka@web.de>
* po/es.po, po/fi.po, po/fr.po, po/it.po, po/ja.po, po/pl.po,
po/pt.po, po/pt_BR.po, po/zh_CN.po, po/zh_TW.po: Updated language
files with new translations from the SUSE/Novell translation team
2006-03-24 Danny Kukawka <danny.kukawka@web.de>
Updated and merged translations of comment and GenericName strings
from the SUSE/Novell translation team:
* src/eventsrc:
* src/kpowersave-autostart.desktop:
* src/kpowersave.desktop:
2006-03-24 Danny Kukawka <danny.kukawka@web.de>
* po/cs.po, po/de.po, po/hu.po, po/nb.po, po/pt.po: Updated
translations, back from SUSE/Novell translation team
* po/kpowersave.pot: added current pot file
2006-03-19 Danny Kukawka <danny.kukawka@web.de>
* NEWS: added some infos for the next release
2006-03-19 Danny Kukawka <danny.kukawka@web.de>
* src/*.png, src/pics/*.png: optimized the size of the applet icons
also with optipng and advdef
2006-03-19 Danny Kukawka <danny.kukawka@web.de>
* doc/$LANG/*.png: optimized the size of the png files
additional with advdef -z -4. This reduce the file minus
~ 3%
2006-03-19 Danny Kukawka <danny.kukawka@web.de>
* doc/$LANG/*.png: optimized the size of the png files with
optipng -i0 -o5. This reduced the size of the files between
minus ~18% and ~28%
2006-03-19 Danny Kukawka <danny.kukawka@web.de>
* src/pics/cr22-action-laptoppower.png: fixed some pixel
2006-03-19 Danny Kukawka <danny.kukawka@web.de>
* kpowersave.kdevelop: some automatic changes from kdevelop
* src/Makefile.am: Added new files (inactivity.*)
* src/autosuspend.cpp, src/autosuspend.h: moved basic code to
a new class inactivity for reuse on dimm brightness on incativity
* src/inactivity.cpp, src/inactivity.h: new files/class with
basic functions to detect inactivity and check blacklist
* src/kpowersave.cpp: changed name of signal for autosuspend
2006-03-19 Danny Kukawka <danny.kukawka@web.de>
* src/pdaemon.cpp: changed adding scheme to schemelist. First add
the scheme to list and then set specific schemes.
* src/schemes.cpp: Removed some todos and added checks to the
adding of specific schemes as e.g. ac_scheme. Set the specific
scheme only if the scheme is in the scheme list. Added check to
append() to avoid add scheme multiple times.
2006-03-19 Danny Kukawka <danny.kukawka@web.de>
* src/detaileddialog.cpp: fixed set processor bar for the first
open of the dialog.
2006-03-16 Danny Kukawka <danny.kukawka@web.de>
* src/pdaemon.h: changed possition of include for Slackware to
be sure that config.h is loaded befor the check.
2006-03-13 Danny Kukawka <danny.kukawka@web.de>
* src/configuredialog.cpp: added string dummys for scheme specfic
CPU hotplugging support in the next development tree and planed
feature for CODE 10 SP1.
Added some additional strings for 'Dimm dispaly on inactivity'.
All this strings added for new translation round.
* src/kpowersave.cpp: Added some string dummys for translate
s2ram message
2006-03-13 Danny Kukawka <danny.kukawka@web.de>
* src/main.cpp: updated code documentation and copyright header
2006-03-13 Danny Kukawka <danny.kukawka@web.de>
tagged release v0.5.11 (rc5)
2006-03-13 Danny Kukawka <danny.kukawka@web.de>
Prepared new release 0.5.11 (rc5):
* ChangeLog.package, doc/doxy/changelog.dox: udapted changelogs
* NEWS: added release news for 0.5.11
* src/*.cpp, src/*.h: updated version in code doc
2006-03-13 Danny Kukawka <danny.kukawka@web.de>
* src/detaileddialog.cpp: added slightly adopted patch from Timo
Hoenig <thoenig@suse.de> to replace 'Mhz' with correct 'MHz'
* po/*.po, po/kpowersave.pot: updated translation files for this
changes.
2006-03-13 Danny Kukawka <danny.kukawka@web.de>
* doc/fi/index.docbook: fixed names of screenshots
* po/fi.po: updated from SUSE/Novell translation team
* po/pt.po: updated version from Hugo Costelha
<hugo.costelha@gmail.com>
* src/eventsrc: added translation for Portuguese from Hugo Costelha
2006-03-12 Danny Kukawka <danny.kukawka@web.de>
* src/configuredialog.cpp: hide 'lock in lidclose' checkbox if the
machine is not a laptop
2006-03-12 Danny Kukawka <danny.kukawka@web.de>
* src/pdaemon.cpp, src/pdaemon.h: fixed double include and moved
one include to cpp-file instead of header to avoid unneeded includes
2006-03-12 Danny Kukawka <danny.kukawka@web.de>
* src/pdaemon.cpp, src/pdaemon.h: added function to check if the
machine is a Lpatop or not.
2006-03-12 Danny Kukawka <danny.kukawka@web.de>
Prepared for QT4 where TRUE is depricated. Replaced with true.
* src/blacklisteditdialog.cpp:
* src/detaileddialog.cpp:
* src/kpowersave.cpp:
* src/pdaemon.cpp:
* src/pdaemon.h:
* src/settings.cpp:
2006-03-11 Danny Kukawka <danny.kukawka@web.de>
Code documentation related cleanups, added new todo
* src/configuredialog.cpp:
* src/dbusPowersave.h:
* src/detaileddialog.cpp:
2006-03-11 Danny Kukawka <danny.kukawka@web.de>
* src/pdaemon.cpp: added a check to setBrightness() which should
prevent set the lowest brightness level if this is not the same as
level from BrightnessMin. This should avoid set off the display
via scheme specific brightness settings (e.g. on ppc/pmu where
lowest level 0 mean display off). (I don't like this fuzzy work-
around, but the powersave brightness interface does not work as
I would prefer ... atm)
* src/pdaemon.h: added new private variable for the number of
available brightness level to avoid unneeded dbus calls, extended
setBrightness() with a force_min option to force the given value.
2006-03-11 Danny Kukawka <danny.kukawka@web.de>
* src/configuredialog.cpp, src/configuredialog.h,
src/detaileddialog.cpp, src/detaileddialog.cpp:
renamed: s/maxBrightnessLevels/brightnessLevels/
* src/pdaemon.cpp, src/pdaemon.h: renamed variable and function
related to get the number of availabale brightness level, added new
helper function to simply get a integer value from powersave via DBUS
- this should reduce the code in this class, replaced code with call
the new helper function simpleGetIntegerValue(...)
2006-03-10 Danny Kukawka <danny.kukawka@web.de>
* removed SVN property executable from several files
2006-03-09 Danny Kukawka <danny.kukawka@web.de>
* src/detaileddialog.cpp: applied patch from Daniel Gollub to set the
processor icon correct if no battery is available and the battery
groupbox is hide.
2006-03-09 Danny Kukawka <danny.kukawka@web.de>
* src/schemes.cpp, src/schemes.h: added missing code documentation
2006-03-09 Danny Kukawka <danny.kukawka@web.de>
* src/kpowersave.h: whitespace fix
* src/kpowersave_debug.h: added copyright header and a doxygen comment
2006-03-09 Danny Kukawka <danny.kukawka@web.de>
* Doxyfile: updated EXCLUDE filelist related to the last name changes
of sourcefiles
2006-03-08 Danny Kukawka <danny.kukawka@web.de>
Added patch from Holger Macht <hmacht@suse.de> to allow root always
to suspend/standby machine.
* src/kpowersave.cpp: Added check if current user is root and use
ADMIN_MESSAGE instead of ACTION_MESSAGE if uid==0
* src/pdaemon.cpp: If user is root set suspend/standby always to
allowed
2006-03-08 Danny Kukawka <danny.kukawka@web.de>
* Doxyfile: Changed version from CVS-HEAD to SVN-trunk
* doc/doxy/enhance.dox: reorganized items and added new enhancement
for dimm display on inactivity
* doc/doxy/main.dox: updated infos and dependencies, added list
of distributions for which KPowersave is available and the releated
links
* kpowersave.kdevelop: automatical changes from kdevelop
2006-03-07 Danny Kukawka <danny.kukawka@web.de>
tagged release v0.5.10 (rc4)
2006-03-07 Danny Kukawka <danny.kukawka@web.de>
* po/pl.po, src/eventsrc: added pl translations from Dawid Wróbel
<cromo@klej.net>
* src/kpowersave-autostart.desktop, src/kpowersave.desktop: added
pl translations from Dawid Wróbel <cromo@klej.net> and cs translation
from the SUSE/Novell translation team
2006-03-06 Danny Kukawka <danny.kukawka@web.de>
* ChangeLog.package, doc/doxy/changelog.dox: added last change to
the changelogs for the release
* NEWS: added info for new dependeny
* configure.in.in: added check for powersave >= 0.12.2
2006-03-06 Danny Kukawka <danny.kukawka@web.de>
Prepared new release 0.5.10 (rc4):
* ChangeLog.package, doc/doxy/changelog.dox: updated changelogs
* NEWS: added release news
* src/*.cpp, src/*.h: updated release version strings
2006-03-06 Danny Kukawka <danny.kukawka@web.de>
* src/config/kpowersaverc_default: added new config key to disable
force dpms of on lidclose
* src/kpowersave.cpp, src/kpowersave.h: Added new function to handle
lidopen event (now reset screen settings to avoid problems after call
xset on lidclose). Added call screen::forceDPMSOff() on lidclose to set
light on LCD off. Removed notification functions for lidclose and
lidopen signals and merged them to existing functions/slots.
* src/screen.cpp, src/screen.h: added new function forceDPMSOff() to
shutdown the display via DPMS (call xset dpms force off).
* src/settings.cpp, src/settings.h: adde new variable and related
read from config file to enable/disable force dpms off on lidclose.
2006-03-06 Danny Kukawka <danny.kukawka@web.de>
updated svn:ignore properties
2006-03-06 Danny Kukawka <danny.kukawka@web.de>
* po/pl.po: added updated translation by Dawid Wróbel <cromo@klej.net>
2006-03-06 Danny Kukawka <danny.kukawka@web.de>
* doc/*/*.png: added and updated icons for the handbook in the
available language versions
* doc/cs/index.docbook, doc/en/index.docbook, doc/nb/index.docbook,
doc/pt/index.docbook: Updated handbook (icon names and updated
renamed and removed icons)
2006-03-06 Danny Kukawka <danny.kukawka@web.de>
* src/pics/cr16-action-display.png, src/pics/cr22-action-display.png:
Added new icon generated from hicolor scalable svg icons to avoid
empty icon on distributions wich not ship this iconset.
2006-03-06 Danny Kukawka <danny.kukawka@web.de>
* doc/en/*.png: updated handbook-screenshots
2006-03-06 Danny Kukawka <danny.kukawka@web.de>
Updated language files, back from the SUSE/Novell translation team:
* po/es.po, po/fr.po, po/it.po, po/ja.po, po/km.po, po/pt_BR.po,
po/zh_CN.po, po/zh_TW.po:
2006-03-04 Danny Kukawka <danny.kukawka@web.de>
Added slightly adopted patch from Daniel Gollub <dgollub@suse.de>
to check throttling state for each CPU. This should maybe effect
multiprocessor machines with throttling (but no CPUfreq) support
* src/detaileddialog.cpp: Changed to read correct throttling state
for each CPU
* src/pdaemon.cpp, src/pdaemon.h: extended getCPUThrottlingState()
to check each CPU and add the values to a QValueList
2006-03-04 Danny Kukawka <danny.kukawka@web.de>
* packaging/mdk.cooker.kpowersave.spec: added specfile for Mandriva
cooker
2006-03-04 Danny Kukawka <danny.kukawka@web.de>
* configure.in.in: added pkgconfig check for powersave libs (from
Michael Biebl), added check to get the path to the dbus-socket.
This should fix build on Mandriva, which use a different socket
name/location.
* src/Makefile.am: fixed linking libs to use pkgconfig (from Michael
Biebl)
* src/dbusPowersave.cpp: replaced path to dbus socket with define
from configure
2006-03-01 Danny Kukawka <danny.kukawka@web.de>
* configure.in.in: fixed detection of distribution. Changed position
of Mandrake/Mandriva because they also ship redhat-release. Added
two more releasefile checks for Mandriva
2006-03-01 Danny Kukawka <danny.kukawka@web.de>
* src/detaileddialog.cpp: Changed constructor to only display
batterygroupbox only if the machine has min. one batterybay. This
should hide the groupbox on workstations.
Fixed processor progressbars for multiprocessor/-core machines
without CPUfreq. Now display all progressbars with values, not only
the first. TODO: read throttling states for all CPUs/cores.
On machines without CPUfreq or throttling support changed text in
processor progressbars to only display the frequency and not also
percentages.
2006-02-27 Danny Kukawka <danny.kukawka@web.de>
tagged release v0.5.9 (rc3)
2006-02-27 Danny Kukawka <danny.kukawka@web.de>
* doc/fi/index.docbook: added updated Finish handbook version from
the SUSE/Novell translation team
* po/cs.po, po/fi.po: added updated and complete translated po files
from the SUSE/Novell translation team
2006-02-27 Danny Kukawka <danny.kukawka@web.de>
Prepared new release 0.5.9 (rc3):
* ChangeLog.package, doc/doxy/changelog.dox: updated changelogs
* NEWS: added release news
* src/*.cpp, src/*.h: updated release version strings
2006-02-27 Danny Kukawka <danny.kukawka@web.de>
* src/detaileddialog.cpp: Added battery support for APM.
NOTE: Currently HAL poll AC and battery every 2 sec. This produce
many events. This maybe result in more CPU usage and many rechecks
in KPowersave. --> fix HAL only to poll AC every 2 seconds and
battery maybe every 60 or 30 secs.
* src/kpowersave.cpp: added APM case to updateTooltip():
if charging and APM: only display percentage because we currently
get no remaining time values from HAL
2006-02-27 Danny Kukawka <danny.kukawka@web.de>
* src/detaileddialog.cpp: changed default if machine doesn't
support throttling and cpufreq. In this case display only
CPU freq from /proc/cpuinfo
* src/pdaemon.cpp, src/pdaemon.h: Added check if throttling is not
supported by machine, changed returnvalue for this from void to
boolean. This should fix e.g. machines with APM
* src/kpowersave_debug.h: fixed myDebug to make function usable
within on-line if-else commands
2006-02-23 Danny Kukawka <danny.kukawka@web.de>
* src/detaileddialog.cpp: fixed display battery state in the
misc group, now remove the line if no battery present.
TODO: fix powersave to not answer for powersave -s NORMAL if no
battery is present in the machine, better print unknown
2006-02-21 Danny Kukawka <danny.kukawka@web.de>
* po/de.po: replaced "Stromstecker" with "Stromversorgung"
2006-02-21 Danny Kukawka <danny.kukawka@web.de>
* po/de.po: fixed translation for "unplugged"
2006-02-21 Danny Kukawka <danny.kukawka@web.de>
* po/hu.po: added updated and complete translated po file from
the SUSE/Novell translation team
2006-02-21 Danny Kukawka <danny.kukawka@web.de>
tagged release v0.5.8 (rc2)
2006-02-20 Danny Kukawka <danny.kukawka@web.de>
* src/autosuspend.cpp: removed the path to pidof. On Fedora
Core 4 is no link from /sbin/pidof to /bin/pidof. Remove the
absolute path because pidof should be in the PATH of user env.
* ChangeLog.package, doc/doxy/changelog.dox, NEWS: updated for
this fix
* po/kpowersave.pot, po/*.po: fixed translation
2006-02-20 Danny Kukawka <danny.kukawka@web.de>
Prepared new release 0.5.8 (rc2):
* ChangeLog.package, doc/doxy/changelog.dox: Updated changelogs
* NEWS: added releasenotes
* src/*.h, src/*.cpp: updated version strings
2006-02-20 Danny Kukawka <danny.kukawka@web.de>
* po/*.po: merged new string
2006-02-20 Danny Kukawka <danny.kukawka@web.de>
* po/kpowersave.pot: added string for charging battery
* src/detaileddialog.cpp: remove whitespaces in code doc
* src/kpowersave.cpp: added extra string if machine is charging
2006-02-19 Danny Kukawka <danny.kukawka@web.de>
* po/*.po: updated/merged translation files
2006-02-19 Danny Kukawka <danny.kukawka@web.de>
* po/Makefile.am: added some help make commands for translations
* po/kpowersave.pot: updated
* src/configuredialog.cpp: removed outcommented tooltip string
2006-02-19 Danny Kukawka <danny.kukawka@web.de>
* po/kpowersave.pot: update pot file for the translation round
* src/detaileddialog.cpp: removed blank the string for AC state
because we get a translation round.
2006-02-19 Danny Kukawka <danny.kukawka@web.de>
* src/detaileddialog.cpp, src/detaileddialog.h: replaced layout for
battery and processor bars with QGridLayout to be sure all widgets
have the same size. Replaced picture for total battery fuel state
with a string. Cleaned up the code.
* src/pics/cr22-action-summary.png: Removed no longer needed pic.
2006-02-19 Danny Kukawka <danny.kukawka@web.de>
* src/configuredialog.cpp: added icon to the 'Configure Notifications'
button
2006-02-18 Danny Kukawka <danny.kukawka@web.de>
Renamed the *.ui files to the same name syntax/style:
* src/Makefile.am: related fixed
* src/blacklist_edit.ui: renamed to blacklistedit_Dialog.ui
* src/blacklisteditdialog.cpp/h: related code changes
* src/kpowersave_configure.ui: renamed to configure_Dialog.ui
* src/configureDialog.cpp/h: renamed to configuredialog.cpp/h and
related code changes
* src/detailed_dialog.ui:renamed to detailed_Dialog.ui
* src/detaileddialog.cpp/h: related code changes
* src/info_dialog.ui: renamed to info_Dialog.ui
* src/infodialog.cpp/h: related code changes
* src/kpowersave.h: related code changes
2006-02-17 Danny Kukawka <danny.kukawka@web.de>
* src/configureDialog.cpp: fixed string
* src/eventsrc: Added new events and default settings. including the
german translation of the comments.
* src/kpowersave.cppn src/kpowersave.h: Added new KNotify events for:
suspend (3), resume (3), scheme switched (5), lidclosed, lidopened.
Fixed code comments and cleanups.
* src/pdaemon.cpp, src/pdaemon.h: Added new signals for: lidopened,
each resume type ( resumedFrom(QString) )
2006-02-17 Danny Kukawka <danny.kukawka@web.de>
Removed no longer needed parts (sound notify) from handbook.
Also removed 2 screenshots from the effected dirs.
TODO: need to make new screenshots and add missing pics.
* doc/cs/index.docbook:
* doc/en/index.docbook:
* doc/fi/index.docbook:
* doc/hu/index.docbook:
* doc/nb/index.docbook:
* doc/pt/index.docbook:
2006-02-17 Danny Kukawka <danny.kukawka@web.de>
* po/Makefile.am: added messages_merge and messages_stat
* po/*.po, po/kpowersave.pot: updated to current code. We need new
review for the translations. Cleaned up no longer needed strings
and useless default strings.
Fixed i18n strings:
* src/autosuspend.cpp:
* src/detaileddialog.cpp:
* src/kpowersave.cpp:
* src/kpowersave_configure.ui:
2006-02-17 Danny Kukawka <danny.kukawka@web.de>
Added slightly adopted and extended patch from Michael Biebl
<biebl@teco.edu> to replace sound event settings with KNotify:
* src/Makefile.am: Added new eventsrc for KNotify to make
* src/configureDialog.cpp, src/configureDialog.h,
src/kpowersave_configure.ui: Removed sound settings from scheme
section and the general sound settings. Added a checkbox to disable
notifications per scheme in the scheme section->misc.
Changed: Added a new button to general settings to start the KNotify
config dialog also from the configure dialog, fixed ui files for KDE
user interface style guide, cleanups
* src/eventsrc: Added define and defaults for events.
Changed: Added events for different battery states and added german
translation for the comments. NOTE: need to be translated!
* src/kpowersave.cpp, src/kpowersave.h: Added menu entry to start
the KNotify config dialog to configure the notifications. Changed
handling for events, removed not needed sound events and replaced
with KNotify events (AC adapter, Battery states, Autosuspend started)
Changed: Fixed messagetexts, fixed menu entry icon, KDE style guide
changes, i18n fixes, cleanups
* src/settings.cpp, src/settings.h: Removed no longer needed code
regarding to settings for sound events
2006-02-16 Danny Kukawka <danny.kukawka@web.de>
* src/Makefile.am: comment out rule for kpowersaveui.rc
* src/kpowersaveui.rc: removed not needed file from SVN tree
2006-02-16 Danny Kukawka <danny.kukawka@web.de>
* src/kpowersave.cpp, src/kpowersave.h: Added dcop function to
open configure dialog.
2006-02-16 Danny Kukawka <danny.kukawka@web.de>
* src/COPYING, src/NEWS: cleanup: removed doubled files which
are also available in topdir
2006-02-16 Danny Kukawka <danny.kukawka@web.de>
* Makefile.am: added new Makefile.am from KDevelop
* Makefile.am.in: removed/replaced with Makefile.am
2006-02-16 Danny Kukawka <danny.kukawka@web.de>
* kpowersave.kdevelop: updated KDevelop project file, removed
svn as source verserion system because of crashes of KDevelop.
2006-02-14 Danny Kukawka <danny.kukawka@web.de>
* po/pa.po: fixed path to powersaved with patch from Michael Biebl
2006-02-13 Danny Kukawka <danny.kukawka@web.de>
Added slightly adopted patch from Daniel Gollub <dgollub@suse.de>
to display cpu bar if machine only support throttling:
* src/detaileddialog.cpp, src/detaileddialog.h: Added throttling
switch if machine not support cpufreq.
Changes: Removed usage of pdaemon pointer and replaced with pd.
Moved setTextEnabled() to constructor to reduce unneeded calls.
* src/pdaemon.cpp, src/pdaemon.h: Added new functions to read
throttling information and cpu freq from proc.
Changes: Closed filepointer in new functions and added check if
stream reaches the end of file. Added some checks and set default
value for cpu_throttling.
2006-02-13 Danny Kukawka <danny.kukawka@web.de>
* src/pdaemon.cpp, src/pdaemon.h: added new signal for throttling
events
2006-02-13 Danny Kukawka <danny.kukawka@web.de>
* po/bg.po, po/fr.po, po/pa.po: Fixed path to powersaved in
translation files (I hate this!)
2006-02-13 Danny Kukawka <danny.kukawka@web.de>
Prepared new release 0.5.7 (rc1):
* ChangeLog.package, doc/doxy/changelog.dox: updated changelogs
* NEWS: added release news
* src/*.cpp src/*.h: updated version string
2006-02-13 Danny Kukawka <danny.kukawka@web.de>
* packaging/FC4.kpowersave.spec: updates spec files
* packaging/SUSE10.0.kpowersave.spec,
packaging/SUSE10.1.kpowersave.spec: added spec files for SUSE 10.0
and SUSE 10.1 build system
2006-02-13 Danny Kukawka <danny.kukawka@web.de>
* src/detaileddialog.cpp: Added brightness support and
battery state infos to detailed dialog
2006-02-13 Danny Kukawka <danny.kukawka@web.de>
* po/es.po, po/fr.po, po/it.po, po/ja.po, po/pt_BR.po
po/zh_CN.po po/zh_TW.po: added updated and remerged
translation files from the SUSE/Novell translation team
2006-02-13 Danny Kukawka <danny.kukawka@web.de>
Removed not translated Polish help/handbook from SVN:
* doc/pl/Makefile.am:
* doc/pl/index.docbook:
2006-02-13 Danny Kukawka <danny.kukawka@web.de>
Added new Finnish and Polish help/handbook from SUSE/Novell
translation team:
* doc/fi/Makefile.am, doc/fi/index.docbook:
* doc/pl/Makefile.am, doc/pl/index.docbook:
2006-02-13 Danny Kukawka <danny.kukawka@web.de>
* po/bg.po, po/fi.po, po/km.po (new): added updated and
remerged translation files from the SUSE/Novell translation team
2006-02-13 Danny Kukawka <danny.kukawka@web.de>
* po/pt.po: added updated and remerged translation files from
the SUSE/Novell translation team
2006-02-10 Danny Kukawka <danny.kukawka@web.de>
* po/hu.po, po/nl.po: added updated and remerged translation
files from the SUSE/Novell translation team
2006-02-08 Danny Kukawka <danny.kukawka@web.de>
* po/cs.po, po/nb.po: added updated and remerged translations
from the SUSE/Novell translation team
* po/zh_CN.po: merged strings from Dawei Pang with new
language file from SUSE/Novell translation team
2006-02-07 Danny Kukawka <danny.kukawka@web.de>
* po/pt.po: added updated language file from
Flávio Moringa <flavio.moringa@caixamagica.pt>
* src/*.desktop: updated pt comment from Flávio Moringa
* po/es.po, po/fr.po, po/it.po, po/ja.po, po/pt_BR.po,
po/zh_TW.po: added updated and remerged translation files
from the SUSE/Novell translation team
2006-02-07 Danny Kukawka <danny.kukawka@web.de>
Applyed patch from Michael Biebl <biebl@teco.edu>:
* configure.in.in: removed unneeded checks for pkgconfig this
should be done automatically m4-macros
* po/*.po, po/kpowersave.pot, src/kpowersave.cpp: replaced
path to start powersave with /etc/init.d/powersaved
2006-02-07 Danny Kukawka <danny.kukawka@web.de>
* po/zh_CN.po: updated from Dawei Pang <pangdae@gmail.com>
2006-02-06 Danny Kukawka <danny.kukawka@web.de>
* src/kpowersave-autostart.desktop, src/kpowersave.desktop:
updated translations in file and remove wrong, old
translations
2006-02-06 Danny Kukawka <danny.kukawka@web.de>
* src/detaileddialog.cpp: fixed display CPU Freq Policy on
machines without cpufreq support. Should be carefull with
usage of enums and checks like 'enum<=0'.
2006-02-06 Danny Kukawka <danny.kukawka@web.de>
Prepared new release 0.5.6:
* NEWS: added release news
2006-02-06 Danny Kukawka <danny.kukawka@web.de>
Prepared new release 0.5.6:
* configure.in.in: removed not working header checks,
changed package version to SVN_TRUNK to replace with
mk_powersave_package
* ChangeLog.package, doc/doxy/changelog.dox:
update Changelog and NEWS
* src/main.cpp: changed package version to SVN_TRUNK to
replace with mk_powersave_package
* po/de.po: fixed strings
2006-02-06 Danny Kukawka <danny.kukawka@web.de>
Added patch from Daniel Gollub <dgollub@suse,de>:
* configure.in.in: added check for powerlib.h and dbus
header to configure and stop if missing
* src/Makefile.am: changed position and variable for
xgettext to enable make messages.
2006-02-06 Danny Kukawka <danny.kukawka@web.de>
* doc/pt/Makefile.am, doc/pt/index.docbook: added new
Portuguese handbook from SUSE/Novell translation team
* po/pt.po: added updated and remerged translation file
from the SUSE/Novell translation team
* po/zh_CN.po: added updated language file from
Dawei Pang <pangdae@gmail.com>
2006-02-06 Danny Kukawka <danny.kukawka@web.de>
* src/detaileddialog.cpp: fixed by Daniel Gollub catched
bug in detailed dialog which increase the nubmers of
function calls of setProcessor() with each new event from
powersave. Removed connect setProcessor to signal
generalDataChanged() from pdaemon.
2006-02-06 Danny Kukawka <danny.kukawka@web.de>
* po/nb.po: added updated and remerged translation file
from the SUSE/Novell translation team, fixed one string
2006-02-05 Danny Kukawka <danny.kukawka@web.de>
* doc/hu/index.docbook, doc/hu/*.png: removed and
changed some pics to reduce package size
* doc/nb/index.docbook, doc/nb/*.png: removed and
changed some pics to reduce package size
* po/*.po, po/kpowersave.pot: fixed pot files (removed
translated strings) and releated fixes in the po files
2006-02-05 Danny Kukawka <danny.kukawka@web.de>
* doc/en/index.docbook: removed and replaced some
of the pics in the docu
* doc/en/en_configdialog_general_autosuspend.png,
doc/en/en_configdialog_schemes_dpms.png,
doc/en/en_configdialog_yast.png,
doc/en/en_configdialog_general_lock.png: removed
this pictures to reduce the size of the package
* doc/en/en_configdialog_schemes_screen.png,
doc/en/en_configdialog_schemes.png: changed this
pictures to reuse them in different places in the
handbook to reduce the size of the package
2006-02-05 Danny Kukawka <danny.kukawka@web.de>
* src/detaileddialog.cpp: added new summary battery
progress bar if there are more than one battery bays.
* src/pics/cr22-action-summary.png: new icon for
the detailed dialog
2006-02-05 Danny Kukawka <danny.kukawka@web.de>
* doc/cs/Makefile.am: added Makefile.am for cs help
* src/pdaemon.h: added header for Slackware 10.2 within
a ifdef, because this is not needed on other distros
2006-02-03 Danny Kukawka <danny.kukawka@web.de>
* src/autosuspend.cpp: changed /sbin/pidof to /bin/pidof
(thanks to Michael Biebl for the bug tracking). Emit
a errormessage if the call of pidof fails and added
debug informations to the class
* src/autosuspend.h: added new signal to forward
error messages to class kpowersave
* src/kpowersave.cpp: Connect new autosuspend signal
to display the error msg.
2006-02-03 Danny Kukawka <danny.kukawka@web.de>
* po/pl.po: added new version from Dawid Wróbel
<cromo@klej.net>
2006-02-03 Danny Kukawka <danny.kukawka@web.de>
* doc/cs/index.docbook: fixed language mark to Czech
2006-02-03 Danny Kukawka <danny.kukawka@web.de>
* doc/cs/index.docbook: added Czech version of the
handbook (from SUSE/Novell translation team)
2006-02-03 Danny Kukawka <danny.kukawka@web.de>
* po/bg.po: added updated and remerged translation file
from the SUSE/Novell translation team, removed some
fuzzy marks
2006-02-02 Danny Kukawka <danny.kukawka@web.de>
* po/fi.po: added updated and remerged translation file
from the SUSE/Novell translation team
2006-02-02 Danny Kukawka <danny.kukawka@web.de>
* po/pl.po: added slightly fixed new polish language file
from Dawid Wróbel <cromo@klej.net>
2006-02-01 Danny Kukawka <danny.kukawka@web.de>
* src/kpowersave.cpp, src/pdaemon.cpp, src/pdaemon.h:
removed enum BAT_CHARG and replaced with define from
libpower
2006-02-01 Danny Kukawka <danny.kukawka@web.de>
* src/detaileddialog.cpp: fixed problem with display current
CPU freq if the machine doesn't support CPU Freq Policy
2006-01-30 Danny <danny.kukawka@web.de>
* po/nl.po: updated nl language file
2006-01-30 Danny Kukawka <danny.kukawka@web.de>
* src/detaileddialog.cpp: disable battery progress bar
if the batterybay is empty (bettery is not present) and
reset to enabled if battery is added
2006-01-30 Danny Kukawka <danny.kukawka@web.de>
Prepared new release 0.5.5:
* ChangeLog.package, NEWS, doc/doxy/changelog.dox: Updated
Changelogs and NEWS for the release
* configure.in.in, src/*.cpp, src/*.h: updated version
strings in the source
2006-01-30 Danny Kukawka <danny.kukawka@web.de>
* po/de.po: fixed/formated string
* src/configureDialog.cpp: changed translation string
* src/kpowersave_configure.ui: moved 'Edit Blacklist ...'
button for schemes to avoid resize dialog while switch
pages.
2006-01-30 Danny Kukawka <danny.kukawka@web.de>
* src/detailed_dialog.ui: reworked detailed dialog after
discussion and welcome criticism from Timo Hönig based on a
mocup from Timo. Thanks!
* src/detaileddialog.cpp, src/detaileddialog.h: added patch
from Daniel Gollub <dgollub@suse.de> to fix problems if a
CPU is set offline.
Added changes releated to the new designed dialog. Added
icons to show the current battery state as in the applet
and added icon for the current scheme. Fixed some strings
from the patch above to get translation in this translation
round (need to fix them for the next round)
* src/kpowersave.cpp, src/kpowersave.h: Added new pixmap
with the current applet icon and give a reference to the
detailed dialog to have there a actuall icon.
* src/pdaemon.cpp, src/pdaemon.h: added patch from Daniel
Gollub <dgollub@suse.de> to fix problems with offline
CPUs on multiprocessor machines.
* src/pics/cr22-action-processor.png: added new icon for
the processor group in detailed dialog
* src/pics/README: cleaned up and added comment about the
new icon (came from kids-icon-package).
2006-01-27 Danny Kukawka <danny.kukawka@web.de>
* src/kpowersave.cpp: use now invokeBrowser() for
open bugreport website and cleaned up includes.
2006-01-27 Danny Kukawka <danny.kukawka@web.de>
* po/de.po: removed translator string --> if not
translated the page about translator is not shown in
the 'About KPowersave' dialog.
* po/kpowersave.pot: removed translator string
2006-01-27 Danny Kukawka <danny.kukawka@web.de>
* src/pics/cr16-action-scheme_advanced_powersave.png,
src/pics/cr22-action-scheme_advanced_powersave.png:
Added icons for the new 'Advanced Powersave' scheme
* src/configureDialog.cpp, src/kpowersave.cpp: integrated
the new icon.
* src/pics/cr32-action-laptoppower.png: removed old, not
needed really ugly icon
2006-01-27 Danny Kukawka <danny.kukawka@web.de>
* src/detailed_dialog.ui: changed default size to 400x120
* src/detaileddialog.cpp: changed handling if remaining
minutes return -1 (set only percentage)
2006-01-27 Danny Kukawka <danny.kukawka@web.de>
* src/detaileddialog.cpp: fixed problem with update
battery progress bar if battery is removed from slot.
Changed interval for check processor from 500 to 333 ms
to use the same default value as powersave.
2006-01-27 Danny Kukawka <danny.kukawka@web.de>
* src/detaileddialog.cpp, src/detaileddialog.h:
connect to new signal from pdaemon batteryInfoEvent() and
refresh battery infos. Added refresh processor info every
500 ms, cleanded up included headers.
* src/pdaemon.cpp, src/pdaemon.h: Added new signal
batteryInfoEvent() to refresh detailed dialog and prevent
oversee remove battery.
2006-01-26 Danny Kukawka <danny.kukawka@web.de>
* po/de.po: added translator
* po/kpowersave.pot: added translator strings
* src/main.cpp: Added new strings for translator name and
email adress. This should prevent display KDE defaults.
2006-01-26 Danny Kukawka <danny.kukawka@web.de>
* po/*.po: merged po files with updated pot file
2006-01-26 Danny Kukawka <danny.kukawka@web.de>
* po/de.po: Fixed string
* po/kpowersave.pot: fixed 'Dimm' with 'Dim'
* src/kpowersave.cpp: fixed 'Dimm' with 'Dim'
2006-01-26 Danny Kukawka <danny.kukawka@web.de>
* po/de.po: Added new strings and translated them.
* po/kpowersave.pot: added new strings from I18N_NOOP and
from the help menu
* src/Makefile.am: Added new tag I18N_NOOP to make messages
2006-01-26 Danny Kukawka <danny.kukawka@web.de>
* NEWS: fixed version string
* src/configureDialog.cpp: fixed spell from 'dimm' to 'dim'
* po/*.po, po/kpowersave.pot: fixed spell from 'dimm' to 'dim'
* po/de.po: updated and translated german language file
2006-01-25 Danny Kukawka <danny.kukawka@web.de>
* src/kpowersave.cpp, src/kpowersave.h: Added new help menu
to the applet. This menu provide: open KPowersave handbook,
show About dialog (About, Authors, Thanks To, Licence
Agreement) and a 'Report a bug' entry which open a browser
window and open sf.net bug section.
* src/main.cpp: reformated the code and added new infos
for the About dialog.
2006-01-24 Danny Kukawka <danny.kukawka@web.de>
* po/kpowersave.pot: removed double definitions
* po/*.po: merged with new pot file
2006-01-24 Danny Kukawka <danny.kukawka@web.de>
* po/kpowersave.pot: updated to current source
2006-01-24 Danny Kukawka <danny.kukawka@web.de>
Added dummy strings for the next translation round:
* src/configureDialog.cpp: for dimm brightness on inactivity
and runtime powermanagement
* src/detaileddialog.cpp: for additional information
* src/kpowersave.cpp: for runtime powermanagement and
dimm brightness
2006-01-24 Danny Kukawka <danny.kukawka@web.de>
* packaging/FC4.kpowersave.spec: Added new dir for build files
and the current spec for Fedora Core 4
2006-01-23 Danny Kukawka <danny.kukawka@web.de>
Prepared new release 0.5.4:
* ChangeLog.package, doc/doxy/changelog.dox, NEWS: updated
Changelogs and news
* doc/doxy/enhance.dox, doc/doxy/implemented.dox: updated
current status of feature implemenation/process
* src/detaileddialog.cpp/h: update copyright header
* src/*.cpp, src/*.h: updated version string to 0.5.4
2006-01-23 Danny Kukawka <danny.kukawka@web.de>
* doc/doxy/powersave_msgs.dox: updated processor related events
in the code dokumentation
* src/detaileddialog.cpp: added additional check for current
cpu frequency to get current data
* src/pdaemon.cpp: added new processor related events (.busy and
.idle) and changed sysfs path for max. cpu freqency to prevent
problems with machines as e.g. DELL D600
2006-01-23 Danny Kukawka <danny.kukawka@web.de>
* src/detailed_dialog.ui: added new QLabel to display the
information values with right aligned text and bold. Added
new line to separate for better view.
* src/detaileddialog.cpp, src/detaileddialog.h: added current
scheme, current cpufreq policy and if powersave daemon is running
to the dialog.
2006-01-23 Danny Kukawka <danny.kukawka@web.de>
* src/detailed_dialog.ui: fixed ui-file with fixuifiles
* src/detaileddialog.cpp: Changed CHARG_STATE_CHARG_DISCHARG case
and display only the current percentage. Added i18n() for some
strings, set caption correct for dialog.
2006-01-23 Danny Kukawka <danny.kukawka@web.de>
* src/detaileddialog.cpp: added code comments, (re)moved some
variables.
* src/detaileddialog.h: added code comments, added copyright
header. changed SLOTs, pdaemon pointer and QValueLists from
public to private.
2006-01-23 Danny Kukawka <danny.kukawka@web.de>
* src/kpowersave.cpp, src/kpowersave.h: Added code comments,
fixed code format.
2006-01-23 Danny Kukawka <danny.kukawka@web.de>
Added slightly adopted patch from Daniel Gollub <dgollub@suse.de>
for a new dialog with information about current battery, cpu and
AC states. This dialog is currently connected to left mouse button
on the applet icon.
* src/Makefile.am: added new files to make
* src/detailed_dialog.ui, src/detaileddialog.cpp,
src/detaileddialog.h: new file for the dialog
* src/kpowersave.cpp, src/kpowersave.h: added new functions to
prevent open the detailed dialog twice. Added dialog to left
mouse button and comment out cpuspeed from the tooltip (TODO:
search for a good solution to readd this info).
* src/pdaemon.cpp, src/pdaemon.h: Added new functions to read
current and maximum speed of all CPUs in the system. Changed
variables for CPUSpeed to QValueList.
2006-01-17 Danny <danny.kukawka@web.de>
* ChangeLog.package, NEWS, doc/doxy/changelog.dox: updated
* src/config/kpowersaverc_default: added default settings for
'Advanced Powersave' scheme
* src/kpowersave.cpp: changed 'Aggressive' to 'Advanced' Powersave
scheme as in actual powersaved defined.
2006-01-17 Danny Kukawka <danny.kukawka@web.de>
* ChangeLog.package, doc/doxy/changelog.dox: updated Changelogs
* doc/doxy/process.dox: updated process (capability brightness)
* NEWS: updated release notes
* src/dbusPowersave.cpp: added patch from Holger Macht
<hmacht@suse.de> to add capability brightness for connect to powersave
to tell daemon to stop set brightness
2006-01-17 Danny Kukawka <danny.kukawka@web.de>
Prepared new release 0.5.3:
* ChangeLog.package, doc/doxy/changelog.dox: update changelogs
* doc/doxy/process.dox: update current state of brightness feature
* other src/*: updated version strings
* src/kpowersave.cpp: Added warning dialog if 'Aggressive Powersave'
scheme is selected.
* NEWS: added releaseinfo and changes
2006-01-17 Danny Kukawka <danny.kukawka@web.de>
* src/config/kpowersaverc_default: added new default keys
for brightness settings
* src/configureDialog.cpp, src/configureDialog.h: implemented
set/read brithness related settings for chemes
* src/kpowersave.cpp, src/kpowersave.h: implemented set
brightness if scheme switched and brightness is supported by machine
* src/kpowersave_configure.ui: Added new page in scheme settings to
set and test scheme specific brightness settings.
* src/settings.cpp, src/settings.h: added brigthness settings
2006-01-16 Danny Kukawka <danny.kukawka@web.de>
* src/screen.cpp: added gcc patch from Daniel Gollub <dgollub@suse.de>
2006-01-15 Danny Kukawka <danny.kukawka@web.de>
* doc/doxy/enhance.dox, doc/doxy/implemented.dox,
doc/doxy/process.dox: updated enhancements and current process
* src/infodialog.h: fixed doxygen problem
2006-01-14 Danny Kukawka <danny.kukawka@web.de>
* src/configureDialog.cpp, src/configureDialog.h, src/kpowersave.cpp:
Added pointer to pDaemon object from class kpowersave to be able
to read and set Brightness releated values via dbus.
* src/pdaemon.cpp, src/pdaemon.h: Added new functions: getBrightness(),
getMaxBrightnessLevels() and setBrightness() to control brightness
settings of the display.
2006-01-13 Danny Kukawka <danny.kukawka@web.de>
* po/nl.po: forgot to merge with current pot file
2006-01-13 Danny Kukawka <danny.kukawka@web.de>
* po/nl.po: updated translation file
2006-01-11 Danny Kukawka <danny.kukawka@web.de>
* src/configureDialog.cpp, src/configureDialog.h: replaced
QString::null with QString() (prepare for QT4)
2006-01-10 Danny Kukawka <danny.kukawka@web.de>
Prepared new release 0.5.2:
* ChangeLog.package, doc/doxy/changelog.dox: updated to current
release changelog
2006-01-10 Danny Kukawka <danny.kukawka@web.de>
* src/infodialog.cpp, src/infodialog.h: added new bool and related
get function to prevent popup dialog if disabled
* src/kpowersave.cpp: depending changes: added check if dialog
disabled by user.
2006-01-10 Danny Kukawka <danny.kukawka@web.de>
* src/info_dialog.ui: grouped widgets to resize the dialog
2006-01-10 Danny Kukawka <danny.kukawka@web.de>
Prepared new release 0.5.2:
* doc/doxy/fixed_bugs.dox: updated fixed bugs
* configure.in.in, src/autosuspend.cpp, src/autosuspend.h,
src/blacklisteditdialog.cpp, src/blacklisteditdialog.h,
src/configureDialog.cpp, src/configureDialog.h,
src/dbusPowersave.cpp, src/dbusPowersave.h, src/infodialog.cpp,
src/infodialog.h, src/kpowersave.h, src/main.cpp, src/pdaemon.h,
src/schemes.h, src/screen.cpp, src/screen.h, src/settings.cpp,
src/settings.h, src/suspenddialog.cpp, src/suspenddialog.hi:
updated version string to current release version
* NEWS: added releaseinfo and changes
2006-01-10 Danny Kukawka <danny.kukawka@web.de>
* po/*.po, po/kpowersave.pot: removed path from 'powersave is not
running' error message and fixed some wrong translations (powersavedd).
2006-01-10 Danny Kukawka <danny.kukawka@web.de>
* src/Makefile.am: added new files for make
* src/info_dialog.ui, src/infodialog.cpp, src/infodialog.h:
Added new class for a non-blocking dialog with only one button and
a optional "Don't display again." checkbox
* src/kpowersave.cpp, src/kpowersave.h: Added new function to display
the 'powersave is not running' error message. Removed path from
errormessage.
Added some comment to signal connects and grouped them.
* src/pdaemon.cppi, src/pdaemon.h: added new signal to display the
'powersave is not running' dialog.
2005-12-22 Danny Kukawka <danny.kukawka@web.de>
* src/kpowersave.cpp, src/kpowersave.h: Added new function to diplay
the HAL warning passive popup and delay the message 15 sec to
prevent message on HAL or powersave restart. Changed handling of
display the errormessage.
* src/pdaemon.cpp: Fixed some problems with HAL_ERROR handling. Fixed
problem with set update_info_ac_changed _before_ emit related signals.
2005-12-21 Danny Kukawka <danny.kukawka@web.de>
* src/pdaemon.cpp: cleaned up and make code shorter
2005-12-21 Danny Kukawka <danny.kukawka@web.de>
* src/pdaemon.cpp: removed no longer needed dbus_message_unref().
2005-12-21 Danny Kukawka <danny.kukawka@web.de>
* src/pdaemon.cpp: implemented new function fot errorhandling.
Added errorhandling to readDaemonData() and replaced code in
checkBatteryProcInfo with call new errorhandling function.
* src/pdaemon.h: added seperate private function to handle errors
from getBatteriesInfo().
2005-12-21 Holger Macht <hmacht@suse.de>
* src/pdaemon.cpp: fixed from powersave removed DBUS methodes for
battery infos.
2005-12-21 Danny Kukawka <danny.kukawka@web.de>
* src/kpowersave.cpp: fixed icon handling on (HAL) error. If there
is no information about battery and AC state we 'disable' the icon
(not the icon menu)
2005-12-19 Danny Kukawka <danny.kukawka@web.de>
* src/pdaemon.cpp, src/pdaemon.h: added check for new errorcode
from powerlib if connection to HAL fails (HAL_ERROR). Added new
battery state to check this in class kpowersave (BAT_HAL_ERROR).
Removed todo-lines.
* src/kpowersave.cpp, src/kpowersave.h: Added better errorhandling
if the connection to HAL fails if powersave is not running. Fixed
in this case the tooltip and added a KPassivePopup to inform the
user about this error.
Changed pixmap size for the applet icon to 22 instead of 20.
2005-12-19 Danny Kukawka <danny.kukawka@web.de>
* Makefile.am.in: removed install rule for default configfile
* src/Makefile.am: added fixed rule for defaulte configfile
to this Makefile
2005-12-13 Danny Kukawka <danny.kukawka@web.de>
* kpowersave.kdevelop: updated to use svn instead of cvs
* src/pdaemon.cpp: removed unused/ifdef'd code
2005-12-12 Holger Macht <hmacht@suse.de>
* src/pdaemon.cpp: adjust to new powerlib
2005-12-10 Danny Kukawka <danny.kukawka@web.de>
* .cvsignore, doc/.cvsignore, doc/en/.cvsignore,
doc/hu/.cvsignore, doc/nb/.cvsignore, po/.cvsignore,
src/.cvsignore, src/pics/.cvsignore: removed no CVS related
files from the SVN repository.
* src/kpowersave.cpp: corrected check AC status by check for
correct enum AC_ONLINE.
* src/pdaemon.cpp: Added correct defines/enums for the AC status.
Also added part for better errorhandling if powersaved and HAL are
not running --> TODO.
Added activation of system timer in non daemon mode. This should
prevent problems if powersaved stopped and restarted more than
one time.
2005-12-07 Danny Kukawka <danny.kukawka@web.de>
* src/pdaemon.cpp: fixed set applet icon for AC status if no
powersave daemon is running, emit now needed signals. Also
fixed signal for AC sound.
2005-12-03 Danny Kukawka <danny.kukawka@web.de>
* po/de.po: fixed typo
2005-12-02 Danny Kukawka <danny.kukawka@web.de>
* Makefile.am.in: fixed build path with patch from
Michael Biebl <biebl@teco.edu>
2005-12-02 Danny Kukawka <danny.kukawka@web.de>
* src/Makefile.am: added PACKAGE_KDE_SOUND_DIR to get path
to the KDE sound dir (usual: $prefix/share/sounds)
* src/configureDialog.cpp, src/configureDialog.h: Added check
for KDE sound dir. If exist, use to fill the file dialog for
the sound files. If not exist, use the home dir of the user.
If the user select a file via the dialog, we set the dir for
the next file dialog to this path. If the current filepath
in the editbox not exist we use KDE sound dir/user home.
2005-12-02 Danny Kukawka <danny.kukawka@web.de>
* doc/nb/nb_*.png: replaced english dummy screenshots with
norsk version.
2005-11-30 Danny Kukawka <danny.kukawka@web.de>
* doc/hu/hu_*.png: replaced english dummy screenshots with
hungarian version.
2005-11-15 Danny Kukawka <danny.kukawka@web.de>
* doc/hu/.cvsignore: added .cvsignore
2005-11-15 Danny Kukawka <danny.kukawka@web.de>
* doc/hu/index.docbook, doc/nb/index.docbook: fixed language
settings to have correct named and localized files. All
should now work.
2005-11-15 Danny Kukawka <danny.kukawka@web.de>
* doc/nb/index.docbook: replaced XML character entities with
UTF-8 characters. Thanks Karl Eichwalder <ke@suse.de> for the
help to fix the file.
2005-11-15 Danny Kukawka <danny.kukawka@web.de>
* doc/nb/index.docbook: reformated and replaced wrong file
content. Note: this file is maybe any longer broken.
2005-11-15 Danny Kukawka <danny.kukawka@web.de>
* src/screen.h: removed not needed include of qvector.h.
2005-11-14 Danny Kukawka <danny.kukawka@web.de>
* doc/hu/*: added Hungarian version of the online help.
NOTE: screenshots are currently only dummy files from the
english version. Need to update them later.
2005-11-07 Danny Kukawka <danny.kukawka@web.de>
* doc/doxy/enhance.dox: added new enhancement to discuss
2005-11-07 Danny Kukawka <danny.kukawka@web.de>
* INSTALL: updated to current KDE file
* configure.in.in: readded file to solve problems with KDE
autotools/update_admin. --> undo last changes. Also changed the
logic between check distro and check configure option to be
sure that configure otions overwrite automatically detection.
Added some messages displayed while run configure.
* doc/Makefile.am: updated to KDE package style.
2005-11-07 Danny Kukawka <danny.kukawka@web.de>
* configure.in.in: replaced with configure.in to get summary
on the right place while execute ./configure
* configure.in: added summary at the end of oputput from
configure
2005-11-01 Danny Kukawka <danny.kukawka@web.de>
* src/pdaemon.cpp: Removed errormessage from constructor of
pdaemon if connect to powersave failed. Increased timeout for
recheck to 10 seconds to prevent races from parallel booting
and autologin to KDE.
2005-10-19 Danny Kukawka <danny.kukawka@web.de>
* doc/nb/*: initial import of Norsk help file
2005-10-12 Danny Kukawka <danny.kukawka@web.de>
* doc/en/index.docbook: added updated help file (updated from
<ke@suse.de>: removed DOS line endings)
2005-10-12 Danny Kukawka <danny.kukawka@web.de>
* po/bg.po, po/cs.po, po/da.po, po/de.po, po/el.po, po/es.po,
po/fi.po, po/fr.po, po/hu.po, po/it.po, po/ja.po,
po/kpowersave.pot, po/nb.po, po/nl.po, po/pa.po, po/pl.po,
po/pt.po, po/pt_BR.po, po/ru.po, po/sk.po, po/sl_SI.po,
po/sv.po, po/tr.po, po/uk.po, po/zh_CN.po, po/zh_TW.po:
merged changes related to last patches (from Stephan Binner)
to translation files and updated german po file.
* src/blacklisteditdialog.cpp: Changed the caption of the
groupbox if the dialog is for a scheme specific blacklist to
"'Scheme: ' + schemename".
* src/configureDialog.cpp, src/kpowersave_configure.ui: changed
some strings related to the last fixes for KDE user interface
style guide
2005-10-12 Danny Kukawka <danny.kukawka@web.de>
Patch from Stephan Binner <stbinner@suse.de>:
* src/configureDialog.cpp:
- fix to respect KDE user interface style guide
- changed Yes/No buttons to "Import"/"Do Not Import"
* src/kpowersave.cpp, src/kpowersave_configure.ui,
src/suspenddialog.cpp:
- fixes to respect KDE user interface style guide
- replaced usage of SmallIcon with SmallIconSet
* src/kpowersave.desktop: Added GenericName and fixed
Comment entry
2005-10-12 Danny Kukawka <danny.kukawka@web.de>
* src/blacklist_edit.ui, src/kpowersave_configure.ui,
src/suspend_Dialog.ui: fixes from fixuifiles script and
fix for 'OK' string in the ui-files. (Patch from Stefan
Binner <stbinner@suse.de> )
2005-10-12 Danny Kukawka <danny.kukawka@web.de>
* src/AUTHORS, src/ChangeLog, src/INSTALL, src/README:
removed duplicated files from src dir, same files could
be found in the base dir
2005-10-12 Danny Kukawka <danny.kukawka@web.de>
* po/fi.po: added Finnish translation from Ilkka Pirskanen
<ilkka.pirskanen@kolumbus.fi>
2005-10-10 Danny Kukawka <danny.kukawka@web.de>
* kpowersave.kdevelop: changed version string
* src/kpowersave.cpp, src/kpowersave.h:
- removed variables with icon names which used one time only
and replaced directly where needed with name of the icons
to reduce global variables
- fixed typo in code documentation and removed some
whitespaces/empty lines
2005-09-27 Danny Kukawka <danny.kukawka@web.de>
* po/de.po: fixed typo, see bugreport:
http://bugs.kde.org/show_bug.cgi?id=112882
2005-09-20 Danny Kukawka <danny.kukawka@web.de>
* po/ru.po: updated file from Anton Farygin <rider@altlinux.ru>
2005-09-19 Danny Kukawka <danny.kukawka@web.de>
* ChangeLog.package: moved Changelog of the package to new
file. This file now contains the CVS changelog
* README: Updated compile instruction for non-SUSE
distributions. Now the package contains a admin dir.
*******************************************************************
* NOTE: This Changelog contains starting from version 0.5.0 the *
* CVS Changelog. The package changelog could be found in *
* Changelog.package *
*******************************************************************
|