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 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276
|
ChangeLog for FVWM-Crystal
Version 3.4.1
-------------
mercredi 6 janvier 2016
+ preferences/AutoHibernation,
desktop/FVWM-Crystal_Preferences, functions/Exit, scripts/AutoHibernate: make the automatic
hibernation to also work as a preference setting.
functions/About, NEWS: version 3.4.1
mardi 5 janvier 2016
+ components/scripts/FvwmScript-Clock-24h, FvwmScript-Clock-24h-small_date, FvwmScript-Clock-small_date:
reverted commit 721
Version 3.4.0
-------------
samedi 2 janvier 2016
locale/fr_FR.UTF-8/*: new string in French
COPYING: updated copyright to 2016
README: typo fixes
jeudi 31 décembre 2015
functions/Icon-[Amiga|Mwm|Thumbnails]: fix the icons when resuming from a NoIcon style
(some recipes and No Icon on desktop).
NEWS: updated with some of the last changes.
functions/Exit: add 2 battery levels for automatic hibernation.
asciidoc/fvwm-crystal, asciidoc/FAQ: some update
mercredi 30 décembre 2015
functions/Mixer: make amixer to work with 2 hardware steps when called with
Alt+Shift+[,|.].
functions/Music-cdcd: typo fix.
bindings/Music*: binding changes:
Alt + N replace Alt + M (Music-Forward)
Alt + P replace Alt + N (Music-Backward)
Alt + G replace Alt + P (Music-GUI)
bindings/Misc-Keybindings*: make each menu shortcuts to show both menus.
asciidoc/*: update with last changes.
functions/Numpad: the windows must be entirely into the screen.
recipes/Amiga: we don't want the Pager to be on top by default.
mardi 29 décembre 2015
functions/Mixer: commented show the sound card into the volume tooltip.
functions/Preferences-Menu, scripts/XDG-Menu: make it work with fvwm>2.6.5.
lundi 28 décembre 2015
functions/Feedback: remove launch of $BROWSER FvwmForm Editor at first Crystal
startup, it is into the Preferences Editor.
preferences/EDITOR: use a default that will make both Debian and gentoo happy.
scripts/PrefVars/PrefVars: fix Startup file editing at first startup.
functions/CheckForFiles: load the EDITOR preferences.
functions/Mixer: show the sound card into the volume tooltip.
dimanche 27 décembre 2015
+ icons/Default/[22x22|32x32]/apps/slack.png: new slack icons from Jorge Daniel Sampayo Vargas
COPYING, Export.README, addons/make.pot, doc/LICENSE: updated old GPL v2 text to GPL v3,
patch from Alwin.
functions/Music-cmus: small cmus fixes, patch from Alwin.
+ addons/oo4.tar.gz; asciidoc/FAQ: files to get oofice4 into the application menu and
corresponding FAQ.
scripts/AmixerControl: be sure the 0dB step is shown into the Mixer menu.
addons/make.pot: Adjust Fvwm-Tooltip filter, by Alwin.
AUTHORS; functions/About: update Alwin contributions.
samedi 26 décembre 2015
scripts/FileEditors/FileEditWithHelp: fix preference file saving when empty,
that remove the Nop icon with the Fvwm-Crystal Icons Manager (we need echo -n,
so we use printf for portability reason).
+ scripts/AMixerControl, + scripts/AMixerCurrentVolume: helper scripts for rewritten
amixer volume control.
functions/Mixer, functions/Preferences-Menu: amixer volume control can recognize now
all the controls with "Volume" in their names, as shown by
'amixer -c <n> controls | grep Volume'.
functions/Mixer: fix aumix vol control when no pcm and master; load amixer current
volume only when amixer is selected; add the mixer name in the menu when different
from amixer.
functions/Preferences-Mixer: fix loading of mixer control.
various files: fix the license of files having GPL v2 to v2+.
various files: updated the license of files having GPL v2+ to v3+.
mercredi 23 décembre 2015
functions/Preferences-Menu: fix DesktopIcons helper script shut down.
recipes/TopLine: fix IconFill style
Mercredi 9 décembre 2015
recipes/Amiga: typo/bashism fix.
Mardi 8 décembre 2015
functions/Media: typo fix by Alwin.
Lundi 7 décembre 2015
apps/DesktopIcons; functions/LoadCommonStuffs; scripts/set_DesktopIconsGeom: fix
tmpdrivefile infostore variable initialisation.
Vendredi 4 décembre 2015
recipes/*: fix menu orientation on Crystal and Music buttons.
+ scripts/set_DesktopIconsGeom; functions/LoadCommunStuffs: fix IconColumnsNumber error
due to undefined variable.
Jeudi 3 décembre 2015
functions/About: repair 2 names and shortcut that was used 2 times; by Alwin.
functions/Mixer: make MPD volume to appear; convert from float to int for 'mpc volume';
double the 1.5 dB value, as 3% is approximately 1.5 dB for MPC; patch by Alwin.
functions/Music-mpd: make volume label to appear only 1 time - Alwin.
functions/Preferences-Menu: show only 1 menu separator when rox and nautilus are not
installed. patch by Alwin.
Mercredi 2 décembre 2015
recipes/*: Crystal button: replace outdated random wallpaper function by new menu;
add a menu on button3.
functions/CheckForFiles: add ShowDirectories into the wanted preference files.
Lundi 30 novembre 2015
addons/make.pot: avoid loops by Alwin.
functions/music-cdcd: fix polish charachters by Alwin.
Patch by Alwin that repair charachters in files.
Jeudi 26 novembre 2015, Patch by Alwin:
addons/README: Small text update.
addons/fvwm-crystal-*.pot: Few new strings.
fvwm/components/functions/AutoWallpaper-Error: Typo/quoting fix.
fvwm/components/functions/Screenshot-import: A good/bad idea to localize
the screenshot name. Escapes (backslashes) from the PO files are
deleted, and non-alphanumeric characters (mainly space and apostrophe)
converted to underscores.
*_NL.UTF-8/LC_MESSAGES/fvwm-crystal.po: Recent strings translated.
fvwm-crystal/fvwm/scripts/random-wallpaper: Fix /tmp access when mounting
/tmp 'noexec'.
Mardi 24 novembre 2015
scripts/FileEditors/*, functions/Preferences-Menu: Fix preference file saving; add help
strings.
+ addons/crystal_diff: utility to make diff.
addons/README: add description of dito.
Lundi 23 novembre 2015
functions/Mixer, bindings/Multimedia_Keys*, recipes/*: Fix Change-Volume-Up/Down.
Samedi 21 novembre 2015
+ icons/Default/[22x22|32x32]/apps/[eog|google-chrome|skype|subl|thunderbird|vlc|wicd-client].png:
new and reworked icons by Jorge Daniel Sampayo Vargas.
style/Applications-Icons-22-32: commented out eog style.
addons/*.pot, locale/[fy|nl]_NL.UTF-8/*/fvwm-crystal.*: Alwin: add description
in make.po; add new translated strings; fix a wrong entry in fvwm-crystal.pot.
scripts/random-wallpaper: fix somme POSIX and portability issues; fix the number of
possible subdirectories in wallpapers/, now unlimited or system limited; fix removing
of the temporary file. Thank to Alwin for pointing that out.
apps/DesktopIcons; scripts/desktop_manager; functions/Preferences-Menu:
fix temporary file removing.
functions/AutoWallpaper-Error: add a few words about CPU usage.
Lundi 16 novembre 2015
+ icons/: a few new icons contributed by Jorge Daniel Sampayo Vargas.
styles/Applications*: add styles for Google-chrome and Eog.
+ functions/AutoWallpaper-Error; apps/DesktopIcons, functions/About, functions/Preferences-Menu,
scripts/FileEditors/ShowDirectories-Help, scripts/random-wallpaper: Show a help text when no wallpaper,
and prevent a black screen; minor streamlining with other dialogs. Contributed by Alwin.
Jeudi 12 novembre 2015
addons/make.pot: new and improved version by Alwin
addons/*.pot: fix for damage in rev.775.
functions/Exit; locale/[de_DE|fr_FR|fy_NL|nl_NL]/*/fvwm-crystal.po: improved English,
fix for damage in rev.775, new Dutch/Frisian strings, patch by Alwin.
recipes/Amiga: fix top line 'jumping' after every start by Alwin.
scripts/FontSelector/FontSelector: fix misaligned '6' under font sizes by Alwin.
+ scripts/desktop_manager;
scripts/DesktopCheckMounts;
apps/DesktopIcons: moved the calculations, the preferences menu generation and
the generation of the button into a script. That fix the submenus jumping at
the wrong places.
- script/findumppartitions: moved in desktop_manager.
scripts/FileEditors/ShowDirectories-Help: fix for help dialog showing multiple times when
called multiple times; add missing quote and exit stuff.
recipes/*: fix No such command 'RedrawIconBox' message at start (this will also pick up
the right IconBox at recipe change); remove the obsolete EdgeCommand
(they are replaced by the ShowPanelOnTop mouse binding).
Dimanche 7 novembre 2015
scripts/AutoHibernate: decrease the time for the loop from 30 to 5 secs
asciidoc/FAQ: - 3.14: not needed anymore
locale/de_DE.UTF-8/*: Updated German translation from Thomas Funk
Vendredi 5 novembre 2015
functions/Exit: Fix redirection for f. dash.
locale/de_DE.UTF-8/*: Updated German translation from thomas Funk
asciidoc/FAQ: + 3.14 about the stop auto hibernation
scripts/AutoHibernate: update the loop to make it work in real cases
Jeudi 4 novembre 2015
scripts/AutoHibernate: Avoid auto hibernate loop.
functions/Exit, locale/fr*/LC_MESSAGES/fvwm-crystal.*, addons/*.pot: Add menu
and functions for automatic hibernation.
Mardi 3 novembre 2015
+ scripts/AutoHibernate: Introducing automatic hibernation.
Lundi 2 novembre 2015
functions/Developer-Menu: The man pages viewer have now their name into the tittle bar.
Jeudi 29 octobre 2015
scripts/PrefVars/PrefVars: fix media files editing.
addons/fvwm-crystal.pot, functions/Developer-Menu,
locale/[fr_FR|fy_NL|nl_NL].UTF-8/LC_MESSAGES/fvwm-crystal.po,
scripts/FileEditors/ShowDirectories-Help: patch from Alwin, remove double separator when at least
2 of tkinfo, pinof and emacs are installed (developer menu), updated last locales strings and
fix typos.
Lundi 26 octobre 2015
addons/fvwm-crystal.pot, function/Media, functions/Music-alsaplayer, functions/alsaplayerdaemon,
functions/Wallpaper, locale/[en_US|fr_FR|fy_NL|nl_NL].UTF-8/*/fvwm-crystal*: patch from Alwin:
Re-use Gettext in Jump and Seek menu, nice looking 1/2 character, fix typo (secondes->seconds).
Dimanche 25 octobre 2015
scripts/FileEditors/FileEditWithHelp, functions/Preferences-Menu: Fix file saving: fix
loading and removal of temporary environmental variable.
apps/DesktopIcons: Add preference setting to put or not the desktop icons on top with the panel.
It now use State 30 to which windows are put on top. State 31 remain to put them to bottom.
styles/FVWM: add State 30 style to the FVWM parts.
Panel-Display: Use State 30 to control which windows are put on top.
Vendredi 23 octobre 2015
bindings/Desktop-MMB-TogglePanels: new binding to toggle on top the panels; changed the
toggle visibility of the panels from EWMH to a new iconify toggle.
styles/FVWM: moved the * style at the beginning so that it will not interfere with the other styles;
add State 1 et State 31 to all FVWM parts.
+ functions/Panel-Display: functions to control the display of the panels. It provide:
- Panel-Toggle: Toggle the visibility of all windows with State 31 = true,
- Panel-Toggle-OnTop: Toggle to top all windows with State 31 = true, Use State 1 for that:
true = on bottom, false = on top.
- various functions from diverse recipes. After cleanup, only somes from the Amiga recipe
will remain.
functions/LoadCommonStuffs: Include Panel-Display.
functions/MakePanel: change the padding variable into padding_x and padding_y variables.
functions/Window-Basic: changed the comment of ShowWindowOnTop
reipes/Amiga: various cleanup, changes related to MakePanel above.
functions/NotificationAreaManager-stalonetray: Fix multiple stalonetray instances.
Mercredi 21 octobre 2015
functions/Preferences-Menu: Fix bashism.
recipes/Amiga: cleanup
Lundi 19 octobre 2015
bin/fvwm-crystal.infoline: Fix free memory variable.
recipes/Amiga|LapLeft|LApLeft with ACPI|LapRight|LapRight with ACPI|Nebulae: Fix the Pager
when in Panel.
Dimanche 18 octobre 2015
decorations/Elberg/Default/Theme.*, decorations/Ish/*/Colorsets: fix missing Shadow and
Handles style.
functions/Preferences-Menu: Fix moving of FS window in SetGeometry.
scripts/random-wallpaper: Fix wrong wallpaper setting in trap function (was visible after a restart).
Jeudi 15 octobre 2015
functions/Preferences-Menu: Fix SelectDefaultTerminal to work the first time it is called;
Fix bashism in SetGeometry for loop condition.
Mardi 13 octobre 2015
apps/DesktopIcons: fix bashisms in test.
scripts/make_all_playlists: add webm video support.
functions/Developer-Menu: FvwmViewManPage use A instead of X. It doesn't work with terminator on Debian...
I think it is not Debian fault but a terminator issue (it necessited more than 2 years to fix a
terminator command line related bug, and 1 month or so to introduce a new one...). Anyway,
It work on gentoo, which doesn't use a wrapper around the different terminals,
so for me it is OK.
Lundi 12 octobre 2015
bin/fvwm-crystal.generate-menu: fix for multiple localised Name entries in desktop files
whih caused bad filenames, resulting in "No such command 'xyz'" fvwm errors when loading
the resulting application menu.
functions/Preferences-Menu: fix Reload-Recipe when the recipe is not given to the function;
test fvwm > 2.6.5 for the XDG menu.
functions/CheckForFiles: add the FullScreenApps file into the wanted preferences.
+ scripts/FSApps, functions/Fullscreen: Window-AutoFS: put the Piperead into an external script.
Dimanche 11 octobre 2015
apps/DesktopIcons: typo fix, icon size fixes for the icon row number
functions/Preferences-Menu: fixes quoting of the ReloadRecipe function.
bindings/Misc-Keybindings_NumLock: typo fix
+ preferences/DeskIconsSign.*: per recipe pref file for the desktop icon manager
Samedi 10 octobre 2015
recipes/*, apps/DesktopIcons: add per recipe pref setting for left/right emplacement
of the icon manager.
apps/DesktopIcons: use the EWMH hints to determine the number of rows of icons.
addons/*.pot, locale/fr_FR.UTF-8/*: a few new strings for the desktop icon manager.
+ icons/Default/22x22/fvwm-crystal/Left.png|Right.png: new icons for the desktop icon manager.
Vendredi 9 octobre 2015
recipes/*, apps/DesktopIcons: use the EWMH hints for the icon manager placement.
Jeudi 8 octobre 2015
addons/Xressources: add xterm setting to remove the menu bar in FvwmConsole, thanks to Alwin.
Lundi 5 octobre 2015
apps/DesktopIcons, functions/About, functions/Fvwm-Crystal-menu, scripts/FvwmScript-CpuTemp,
+ locale/en_US.UTF-8/*,
locale/[fr_FR.UTF-8|fy_NL.UTF-8|nl_NL.utf-8]/LC_MESSAGES/fvwm-crystal-script.po,
scripts/FontSelector/FontSelector: patch from Alwin that fix various typos, some locale translations
and introduce a new en_US.UTF-8 locale.
Vendredi 2 octobre 2015
colorsets/RedDesktop.cs: typo fix
scripts/FvwmScript-*: Use the new colorsets instead of static colors.
- components/scripts/FvwmScript-Clock-24h*, FvwmScript-Clock-small_date: removed outdated files.
Jeudi 1 octobre 2015
functions/Fullscreen: Auto FS: add condition to not put if full screen the transient windows.
colorsets/*, components/scripts/FvwmScript-AcpiBatt: update colorsets for use with AcpiBatt.
Lundi 28 septembre 2015
functions/Fullscreen: change the delay to put firefox in full screen from 5 to 10 sec.
Dimanche 27 septembre 2015
colorsets/colorset-definition, colorsets/Amiga.cs: new colorsets for the
AcpiBatt applet.
Jeudi 24 septembre 2015
components/scripts/FvwmScrpt-AcpiBatt: use the new way to get the ACPI battery status,
thanks to Jorge Sampayo.
scripts/startmplayer: save mplayer's PID into the infostore.
apps/DesktopIcons: use fusermount for umounting of simple-mtpfs partitions.
Mercredi 23 septembre 2015
functions/Fullscreen: Automatic full screened applications:
add a delay for Firefox, needed because Firefox think it now better than the
window manager/user what it must do. Todo: ignore the transiet windows.
Mardi 22 septembre 2015
+ fvwm/locale/fy_NL.UTF-8/*: New UTF-8 Frisian locales, thanks to Alwin.
+ fvwm/locale/nl_NL.UTF-8/*: New UTF-8 Dutch locales, thanks to Alwin.
- fvwm/locale/nl_NL: Removed outdated Dutch locales.
dimanche 13 septembre 2015
+ shared/fvwm-crystal.sudoers.d: Initial support for automatic sudo configuration for the Exit menu.
shared/fvwm-crystal.sudoers.d: Use the group fvwm-crystal support for sudo instead of user names.
vendredi 11 septembre 2015
functions/Exit: Initial support for resume-hibernate via pm-utils.
lundi 22 juin 2015
apps/DesktopIcons: Add simple-mtpfs to the partition icons. Usefull for devices like mobile phones.
mercredi 17 juin 2015
locale/fr_FR.UTF-8/*/*, addons/fvwm-crystal-script.pot: added last strings, typo.
functions/About: updated Version to 3.4.0
lundi 15 juin 2015
+ Red, Green, 32x32, 22x22: more icons for DesktopIcons directories
+ preferences/BROWSER, preferences/EDITOR: default preference for fvwm.crystal browser and editor,
values: /usr/bin/firefox and /usr/bin/nano.
scripts/PrefVars: add EDITOR preference.
functions/CheckForFiles: add EDITOR preference.
lundi 15 juin 2015
+ icons/Default/48x48/categories/Yellow_Drawer.png, Yellow_Drawer.png.active.png:
icons for DesktopIcons directories
lundi 8 juin 2015
components/Fullscreen: Fix non wanted full screen fvwm scripts in conjunction with the
automatic full screen preference.
jeudi 3 juin 2015
components/Preferences-Menu: Fix quoting in Reload-Recipe.
mercredi 2 juin 2015
preferences/DesktopDirs; preferences/IconsDirs: add file name as commented 1st line.
recipes/LapLeft*; recipes/LapRight*: fix panel alignement.
mercredi 27 mai 2015
functions/Preferences-Menu: fix recipe reloading when called from fvwm-crystal.generate-menu.
mardi 7 avril 2015
updated the French locale and the *.pot files.
vendredi 6 mars 2015
functions/Preferences-Menu: fix loading of recipe from the preferences menu.
lundi 2 mars 2015
functions/Music, functions/Media: introducing mplayer tooltip instead of the OSD menu.
apps/DesktopIcons: fix for the refresh of the actions in the preferences menu.
mercredi 11 février 2015
function/Exec-Accelerator: gnome-terminal support is broken due to a bug into gnome-terminal.
+ functions/Music-alsaplayerdaemon: add support for AlsaPlayer in daemon mode.
functions/Media, functions/Music, functions/Mixer, functions/Preferences-Menu: add AP daemon mode support.
mardi 10 février 2015
bindings/Misc-Keybindings*: changed BlankScreen to Alt+B; added pref test for the XDG application menu.
vendredi 30 janvier 2015
functions/Preferences-Menu: fix recipe reloding with space in file name after fvwm-crystal menu generation.
functions/Wallpaper: fix spaces in direcctory name/path with Random-Wallpaper.
mardi 20 janvier 2015
apps/DesktopIcons: oops typo fix; the action dialogs show the current preferences instead of arbitrary ones.
vendredi 16 janvier 2015
functions/Music, functions/Media: We don't want qjackctl to be autostarted by Music-QJackGUI
jeudi 15 janvier 2015
scripts/FileEditors/Show-Directories-Help: typo
apps/DesktopIcons: Add title on the directories icons.
bindings/Music*: Add Alt-S toggle QJackCtl and AlsaMixer;
add Alt+P toggle media player visibility.
functions/Media: Add Show the file name function into mplayer Playlist menu.
functions/Music: Show QJackCtl will show the mixer too.
functions/Music-alsaplayer: Add tooltip for current song.
functions/Music-mocp: Fix multiple instance with Music-GUI, we only want 1 instance.
samedi 10 janvier 2015
scripts/launchwm: add "-nolisten tcp" to the Xephyr command.
Thanks to Alwin for pointing that out.
vendredi 2 janvier 2015
Change comment in functions/Fullscreen
mercredi 10 décembre 2014
Add jack_capture_gui2 in Applications database.
mercredi 5 novembre 2014
locale/nl_NL/*: updated Dutch translation from Alwin.
mardi 28 octobre 2014
functions/Preferences: new CopyPreferences function; can be used to copy
a preference file from CONFIGDIR or SYSTEEMDIR to USERDIR
functions/Preferences-Menu: new submenu to define the thumbnail size into
the wallpaper menu.
+ scripts/FileEditors/FileEditorWithHelp,
+ scripts/FileEditors/ShowDirectories-Help: New version of the file editor for the
+ preferences/ShowDirectories: show directories preferences help file
preferences. It can edit 1 file at a time. Multiple instances can be launched. A help
file must be provided that describe the edited file.
apps/DesktopIcons: Add support for arbitrary directories.
functions/Fullscreen: Updated comments.
functions/Mixer, functions/Tooltip, functions/LoadCommonStuffs: made the tool tip function
to work, load it and use it for the volume key bindings.
functions/Preferences: copy ShowDirectories pref file to the user directory.
functions/Preferences-Menu: put the FileEditor launcher into a function and call it from the menu,
use the defaul fvwm-menu-desktop menu file location in $FVWM_USERDIR/.menu,
scripts/CheckMenuDate: use the default menu file location.
add a wallpaper thumbnail size menu, launch ShowDirectories from the file editor function.
functions/Wallpaper: add support for different thumbnail sizes.
locale/fr*/*: a few new strings
addons/*.pot: added the new strings into the pot files.
scripts/XDG-Menu: use the default menu file location, use fvwm-menu-desktop2 for fvwm-2.6.5,
vendredi 17 octobre 2014
script PrefVars: Add the full screen by default preference into the editor.
preferences/FullScreenApps: Arrange the text to fit.
mardi 14 octobre 2014
+ preferences/FullScreenApps,
functions/Fullscreen: Add fvwm event for full screen by default preference.
lundi 13 octobre 2014
functions/EWMH_BaseStruts: Add the desktop icons panel.
Mercredi 8 octobre 2014
recipes/*: cleanup.
Mardi 7 octobre 2014
INSTALL; README; session-management.README: update
functions/CheckForFiles: load XDGMenu.
apps/QuakeConsole: Fix horizontal shift.
functions/Exec-Accelerator: Add support for urxvtd.
+ functions/ScreenSaver: Add instantaneous screen blanking support.
functions/LoadCommonStuffs: Add ScreenSaver to the files we want to load by default.
bindings/Misc-Keybindings*: Add Alt+B binding for BlankScreen function. Fixed typo.
functions/Preferences-Menu: Add preferences for URxvtD and XDG menu - the XDG menu generate
a lot of image magick related errors, so we want a preference to not have it by default.
+ preferences/XDGMenu: pref file, default to no.
functions/Fullscreen: Disappear: fix the window ids.
scripts/CheckMenuDate: Add the XDG menu only if wanted in the prefs.
scripts/XDG-Menu: Make the script to be more verbose about the icon related errors.
Vendredi 2 mai 2014 Dominique Michel
+ addons/makecrystalicon: make fvwm-crystal icons from arbitrary image files.
bin/fvwm-crystal.generate-menu: review of the usage comment; add new additional
categories; use user locale when avaible for the menu name; cleanup.
+ scripts/XDG-Menu: make a XDG application menu in $FVWM_USERDIR/tmp/XDGMenu.
scripts/CheckMenuDate, functions/CheckForFiles: Include the XDG menu at startup and
update it at the same time than the regular FVWM-Crystal application menu.
bindings/Misc-Keybindings*: made the XDG menu avaible via Alt + A.
asciidoc/KeyboardBindings: add Alt + A binding.
Lundi 31 mars 2014 Dominique Michel
+ Add application entries for zynaddsubfx ALSA and JACK
bin/fvwm-crystal.generate-menu: fix typo in icon generation.
+ scripts/CheckMenuDate: helper script to launch the menu generation in case of
desktop files change.
bin/fvwm-crystal.generate-menu: create a preference file with the date of the last desktop file.
function/CheckForFiles: launch the helper script.
# fixes from alwin:
locale/nl_NL: moced the files into LC_MESSAGES with new strings and typo fixes.
addons/*.pot: ported the new strings and typo fixes.
functions/Preferences-Menu, KeyModifierEditor, scripts/media-directories: typo fixes.
FontSelector: position fix for a widget.
#
scripts/CheckMenuDate: replaced multi pipe commands by awk.
bin/fvwm-crystal.generate-menu: use awk instead of piped commands, cleanup.
Jeudi 27 mars 2014 Dominique Michel
icons/*/apps: add some missing icons in 32x32 and 48x48 sizes.
bin/fvwm-crystal.generate-menu: fix for icon generation when user is not root,
will generate more icons.
Vendredi 21 mars 2014 Dominique Michel
recipes/LapLeft*: make the application menu to not overlap the button
Mercredi 19 mars 2014 Dominique Michel
apps/FvwmMiniConsole: move env variable to infostore; made it to work at first startup
+ functions/CheckForFiles: check for preference files and application database; launch
the preference editor or fvwm-crystal.generate-menu accordingly.
functions/LoadCommonFiles: load CheckForFiles at startup/restart.
scripts/PrefVars: Add help for MediaDirectories.
scripts/mediadirectories: removed test for MediaDirectories pref file.
bin/fvwm-crystal.generate-menu: remove PrefFile warning; made it to continue after copying the pref files.
locale/fr*/fvwm-crystal-script.*; addons/fvwm-crystal-script.pot: add Help string.
Mardi 25 février 2014 Dominique Michel
bin/fvwm-crystal.generate-menu: add bmp, gif, jpg, pcx, ppm and tga formats to
icon generation; use first picure when source have several pictures.
+ icons/*/khelpcenter.png: icons for khelpcenter.
Samedi 22 février 2014 Dominique Michel
scripts/FontEditor/FontEditor: use 14 as default font size; fix for the
width of the top buttons by setting a default font, it is overwritten later.
recipes/LapLeft*, LapRight*: removed non needed PipeRead calls.
functions/Preferences-Menu: force Pager on bottom at recipe change.
functions/Exit, Exit-Safe: changed the order of the Restart and Lock Screen functions into the Exit menu.
Verion 3.3.2
------------
Jeudi 20 février 2014 Dominique Michel
scripts/launchwm, functions/Xephyr: remove use of id -un variable and
use direct $HOME call instead.
functions/About: updated version to 3.3.2.
Lundi 17 février 2014 Dominique Michel
+ scripts/FvwmScript-CpuFreq-small: Derived from FvwmScript-CpuFreq.
functions/NotificationAreaManager-Stalonetray: Fix for alpha transparency
which is the inverse of trayer.
recipes/Default with ACPI: removed TODO.
recipes/LapLeft, LapRight: Fix for stalonetray with 1 icone width in the prefs,
make the clock height of 24 px.
+ recipe/LapRight with ACPI
+ recipe/LapLeft with ACPI: 2 new recipes with ACPI support.
Samedi 15 février 2014 Dominique Michel
recipes/Default with ACPI: fix for height and scripts colorset on the
bottom bar; fix for warning with IconMan-Icons.
scripts/FvwmScript-AcpiBatt: changed the checks from /proc to /sys; patch
from Debian.
Vendredi 14 février 2014 Dominique Michel
scripts/launch: Increased delay to bring Xephyr in fullscreen.
Lundi 10 février 2014 Dominique Michel
styles/Applications: force Gambas application to not use user and program
specified locations and instead let fvwm do its job.
Verions 3.3.1
-------------
Jeudi 6 Janvier 2014 Dominique Michel
NEWS: 3.3.1 update.
functions/About: updated Version to 3.3.1
Mardi 4 Janvier 2014 Dominique Michel
functions/Music-mpd: fix quoting and special characters in played file menu;
add seek relative by 5 and 10%. Thanks to Alwin for pointing that out;
make seek as for AlsaPlayer; add seek into the Music menu.
functions/Media; make seek like AlsaPlayer.
recipes/Amiga: make the seek like the other recipes.
addons/fvwm-crystal.po; apps/DesktopIcons; functions/Developer-Menu;
functions/Preferences-Menu; addons/fvwm-crystal.pot; some new localized strings.
locale/fr/*.*: updated the french locale files,
Dimanche 2 févier 2014 Dominique Michel
+ locale/nl*: New Dutch locale files from Alwin
Jeudi 30 janvier 2014 Dominique Michel
functions/Preferences-Menu: make SilentOps to apply immediately
Mercredi 29 janvier 2014 Dominique Michel
INSTALL, README: Oops, added depend on xdg-user-dirs.
Version 3.3.0
-------------
Lundi 21 Janvier 2014 Dominique Michel
- NEWS, functions/About: update to 3.3.0
Samedi 11 Janvier 2014 Dominique Michel
- removed flock from Applications-Database
Vendredi 10 janvier 2014 Dominique Michel
styles/Applications-Icons-22-32: commented out FuncResizeTerm, this should be
in the Xresources files.
addons/Xdefault: added geometry for a few terminal emutlators.
asciidoc/FAQ: 3.2: added examples for userconfig.
asciidoc/create.sh: fix moving of FVWMCrystalFAQ.1 file.
Mercredi 8 janvier 2014 Dominique Michel
functions/Media: create ~/.mplayer directory if it doesn't exist.
functions/Exec-Accelerator: fix for AT function with infostore variable; fix
for A functions for the recent change in gnome related terms for their -e syntax...;
fix for xfce4-terminal and x-terminal-emulator (Debian) in these 2 functions...
Dimanche 5 Janvier 2014 Dominique Michel
scripts/KeyModifiersEditor/KeyModifiersEditor: fix the locale aware titles
locale/fr*/*/*: sorted the locale strings; new strings in fvwm-crystal-sring.*.
locale/fr*/*/fvwm-crystal.*: new translated strings and french spellning fixes.
functions/Preferences-Menu: fix typo in localized string + 1 new string.
functions/Media: make the speed menu like in Music-Alsaplayer, locale aware and
fast keys in menu.
locale/*/*/*: sorted all remaining po files.
+ addons/fvwm-crystal.pot; fvwm-crystal-script.pot; make.pot; sort_po: usefull
locale files.
Vendredi 3 Janvier 2014 Dominique Michel
+ scripts/KeyModifiersEditor/KeyModifiersEditor: An editor for the keyboard modifiers.
Can be useful with applications like Ardour and Emacs that use a lot of key bindings.
functions/Preferences.Menu: add Key binding modifiers menu.
functions/Keyboard-Modifiers: load user preference if present.
functions/Preferences-Menu; functions/Media; scripts/media-directories: workaround
a fvwm bug with auto generated menu with some characters in file names; for that
added a preference option to toggle the icons into the menus.
+ preferences/MediaMenuIcons: preference file for dito.
- bindings/Application-Ardour: removed outdated and non working Ardour bindings.
styles/Applications: idem.
asciidoc/FAQ: udated 3.8
functions/About: updated version to 3.2.8
+ icons/*: some new application icons
Mercredi 1 Janvier 2014 Dominique Michel
+ Applications/*: a lot of new application
scripts/launchwm: launch the nested wm in fullscreen
Mardi 31 décembre 2013 Dominique Michel
Applications/Multimedia/Audio: removed rythm category and moved its entry into rhythm.
Vendredi 27 décembre 2013 Dominique Michel
components/functions/Xephyr; scripts/launchwm: We don't want the fvwm and fvwm-themes files
to be mixed with fvwm-crystal.
Jeudi 26 déecembre 2013 Dominique Michel
components/styles/Applications: fixed style for buggy Wine windows that doesn't take the focus.
added applications menu entries and icons for wine related applications.
Lundi 23 décembre 2013 Dominique Michel
recipes/*; addonns/convert_colosets; addons/translatechars; bin/fvwm-crystal;
bin/fvwm-crystal.videomodeswitch*; functions/Debug-Functions; functions/Music;
functions/Music-Alsaplayer; functions/Preferences-Menu; scripts/DesktopActions;
scripts/FontSelector/FontSelector: fix more bashisme and quoting. Thanks to
Martin Vath for the fixes and the review.
Mercredi 10 décembre 2013 Dominique Michel
fvwm-crystal: introduced code to remove orphaned control files in /tmp at startup.
fvwm-crystal.play-movies: interval change to make it work in any directory.
apps/DesktopIcons: use bash instead of sh. Bash is the de facto standard GNU/Linux
shell andis allready in use by FVWM-Crystal. use killall instead of killall -9
to kill the helper script; separated Quit and ToRestart functions.
scripts/DesktopCheckMounts: use 1 temporary file to control it state. Cleanup this
file at exit or fvwm exit/crash.
functions/fullscreen: + Quit function to remove temporary files.
scripts/media_directories: fixed the Load Media File menu generation. fvwm-menu-directory
doesn't like Taviso's stuff whit multiple directories and non ASCII file/dir names;
It is not perfect due to fvwm-menu-directory limitation, but it is 100 times better that
before. If it still doesn't work for you, please don't complain but fix fvwm-menu-directory.
functions/Media,Music-mplayer(2): + logic to stop only the mplayer(2) instances started by
fvwm-crystal with 2 helper scripts. It is now 2 options in the menu: stop and destroy.
+ scripts/killmplayer; scripts/startmplayer: helper scripts to start/stop mplayer.
NotificationArea-stalonetray: fix the redraw at wallpaper change.
functions/Wallpaper: dito + menu for random wallpapers.
+ scripts/random-wallpaper: helper scripts for random wallpapers menu. Work with the wallpapers
in FVWM_USERDIR, take the delay as parameter and follow the symlinks. Use fvwm-crystal.wallpaper.
Amiga recipe: fixed the update infoline function. This + a style change fix the erratic buzzy
cursor.
SilentHacker recipe: fixed the update infoline that was not updating well.
+ scripts/UpdateInfoline: helper script for dito.
+ styles/FocusPolicy-NeverFocus: policy for stufs like FvwmButtons.
styles/FocusPolicy-*: fix the styles at wallpaper redraw. This fix the erratic buzzy cursor.
+ scripts/PrefVars/PrefVars: FvwmScript to update the lost preferences like the media directoories.
functions/Preferences-Menu: + menu for dito.
apps/DesktopIcons: fix 2 shism.
Mercredi 4 septembre 2013 Dominique Michel
Makefile: fixed .svn copy in make dist - replaced find command by rsync.
NEWS: updated.
components/About: updated version to 3.2.7
Mardi 3 septembre 2013 Dominique Michel
components/functions/Fullscreem: removed one more bashism.
Dimanche 1 septembre 2013 Dominique Michel
scripts/DesktopCheckMounts, findumpartitions: removed bashisms ([[ -> ]).
scripts/make_all_playlists: shebang bash; added .ram video format support.
scripts/ScreenResolution: shebang bash.
components/apps/DesktopIcons, EWMH-BaseStruts, Feedback, Media, Mixer,
Xdg-User-Dirs: removed bashisms.
recipes/*; removed bashisms
components/Xephyr, Fvwm-Crystal-Menu, scripts/launchwm: moved check for session
files to /usr/share/xsessions, adapted the code.
scripts/FontSelector/findindex.sh: changed shebang to bash.
scripts/convert_preferences: will update the Version file in $FVWM_USERDIR
to current version at startup.
components/About: updated version to 3.2.6
updated NEWS.
Mercredi 31 Juillet 2013 Dominique Michel
bin/fvwm-crystal.mplayer-wrapper: change shebang to /bin/bash
Applied some patches from Vincent Nernat for Debian:
functions/Exec-Accelerator; functions/Preferences-Menu;preferences/DefaultTerminal:
add Debian x-terminal-emulator
locale/ru_RU*/*: updated translations by Alexander Galamin
Lundi 22 Juillet 2013 Dominique Michel
functions/Preferences-menu; replaced the killall -9 by killall, some
apps don't like when stalone tray is killed -9.
functions/Fvwm-Crystal-Menu: to close an application menu and open Crystal
application menu with a single click don't work with current Xorg; replace
the H context by the I context in DesktopMenu.
FAQ: added 3.2.13 about the Feedback/Support form.
functions/About: udated Version to 3.2.5.
Mardi 16 Juillet 2013 Dominique Michel
+ functions/Feedback: form for user feedback and support
functions/About: + launch the feedback dialog, typos
functions/LoadCommonStuffs; + Include Feedback
locate/fr.../fvwm-crystal.*: new strings
functions/Media; functions/Music-Alsaplayer: a few string changes
Lundi 15 Juillet 2013 Dominique Michel
recipes/*; functions/Fvwm-Crystal-Menu: moved the music menu into the menus.
Dimanche 14 Juillet 2013 Dominique Michel
fixed app launcher for RTSynth(-jack) and added icons
Various application icons and launchers
recipes/Amiga;LapLeft;LapRight;Nebulae;Thin: fix double application menu
after its regeneration.
bin/fvwm-crystal.videomodeswitch*: cleanup; fixed resolution order between the 2 scripts.
+ scripts/ScreenResolution: helper script to generate the ScreenResolution menu
functions/Fvwm-Crystal-Menu: added ScreenResolution menu
functions/Developer-Menu: fixed recipe reload, was not working with infostoore
and the preference change without restart.
recipes/*: Removed te FVWM-Crystal menu, it is in functions/Fvwm-Crystal-Menu.
Samedi 13 Juillet 2013 Dominique Michel
asciidoc/create.sh: added aotomatic man and html file move when only 1 file
is created.
components/apps/DesktopIcons: added mount/umout options using mount, pmount
and pmount-gui.
asciidoc/fvwm-crystal: desktop icons - added mount/umount description.
+ scripts/findumpartitions: helper script that check for unmounted partitions
in /etc&fstab and add the corresponding menu items if they have the user(s) key.
Updated version to 3.2.4.
News: added a few words about this release.
Install: Updated with optional dependencies for mounting/unmounting.
asciidoc/FAQ: changed Q 3.12 to reflect the changes with the new u/mount functions.
Samedi 6 Juillet 2013 Dominique Michel
Added trasmission icons and app script
Dimanche 23 Juin 2013 Dominique Michel
Makefile: removed Copying from the installed files; that make distributions
happy.
NEWS: 3.2.3
About: changed version to 3.2.3
Samedi 22 Juin 2013 Dominique Michel
bin/fvwm-crystal.{apps,wallpaper}, scripts/FvwmMPD/*.py: reverted the
shebang change as they work with python-2.{5,6,7}.
INSTALL: updated dependencies accordingly.
Mardi 18 Juin 2013 Dominique Michel
functions/Mixer: fix for possible cursor freeze with mplayer;
add Mixer-Mute-Toggle which only toggle mute alsamixer or aumix.
vindings/KeyboardBinding: Mixer-Mute-Toggle with Ctrl + XF86AudioMute.
asciidoc/KeyboardBindings: add above bindings.
functions/About: updated version to 3.2.2
NEWS: version 3.2.2
Samedi 15 Juin 2013 Dominique Michel
functions/About: updated version to 3.2.1
asciidoc/KeyboardBindings: fixed typo
Vendredi 7 juin 2013 Dominique Michel
Updated NEWS
bindings/Desktop-MMB-EdgeScroll; make it work with preferences without restart
bindings/Dekstop-MMB-ToggleTopBar: make it work with the Silent Hacker recipe
recipes/*: streamlining to respect the recent changes.
Jeudi 6 juin 2013 Dominique Michel
functions/Mixer; bindings/Multimedia*: added toggle mute/pause function
and bindings
asciidoc/*: updated version to 3.2.1
asciidoc/KeyboardBindings: added multimedia keys bindings description
Mercredi 5 juin 2013 Dominique Michel
recipes(Default with ACPI; recipes/SilentHacker: make the buttons to be aligned
when the font size is changing
bindings/Misc_Keybindings_NumLock: removed non necessary and wrong binding on
PrintScreen
bin/fvwm-crystal.apps; bin/fvwm-crystal.wallpaper; scripts/FvwmMPD/*.py:
updated the python shebangs from python2 to python2.7
Mardi 4 Juin 2013 Dominique Michel
Makefile: fix make uninstall of fvwm-crystal man page
Makefile: fix for successive installations with different install prefixes
Makefile: added make clean section
Makefile: make preferences/LastChoosenRecipe to respect $prefix; thanks to
Thomas Funk for pointing that out.
INSTALL: added a few workds about make uninstall, make clean and correctpath,
as well than about the preferences.
+ functions/Fvwm-Crystal-Menu; functions/LoadCommonStuffs; Preferences-Menu;
recipes/*: make the DesktopMenu to show only 1 time after a recipe change
recipes/*: make the clock button to be in layer 2
Samedi 1 Jui 2013 Dominique michel
INSTALL: updated
Jeudi 29 Mai 2013 Dominique Michel
bin/fvwm-cystal.generate-menu: remove libpng warnings about bad ICCM profiles
Mardi 27 Mai 2013 Dominique Michel
preferences-menu: make the preferences not to restart fvwm
+ functions/Icon-None: file for dito
desktop/Icon-Amiga & Icon-Mwm & Icon-None; functions/Icon-Amiga & Thumbnails;
recipes/*; bin/fvwm-crystal.generate-menu: make these files to work with
preferences without restart.
scripts/make_all_playlists: added ac3, flv and ts file formats
functions/Fullscreen; Eindoe-Buttons; bindings/Window-Rearrange*:
add NS-Window-Rearrange: rearrange the windows to their original size and
place again them with Alt + Shift + D; add Fullscreen-Rearrange: toggle the non iconic windows
in fulls screen with Alt + Shift +F.
asciidoc: KeyboardBindings: update the man page
Dimanche 25 Mai 2013 Dominique Michel
preferences/MediaDirectories: replaced variables by full paths
INSTALL: changed some sentence to reflect the actual process.
+ asciidoc/fvwm-crystal: introduced fvwm-crystal man page
asciidoc/*; functions/About: updated version to 3.2.0
functions/Developer-Menu: added fvwm-crystal man page
updated NEWS
locales/fr_FR.UTF-8/LC_MESSAGES/fvwm-crystal.*: added strings for DesktopIcons
Makefile: fixed shared installation in make dist-minimal; fixed uninstallation
of fvwm-crystal.1; simplified the sed in FEATURES with a cut: fix make install
with dist-minimum
Samedi 24 Mai 2013 Dominique Michel
- apps/Thunar;
+ apps/DesktopIcons; functions/Preferences-Menu: renamed Thunar to DesktopIcons
to avoid confusion, this is FVWM-Crystal that manage those icons.
- scripts/ThunarCheckMounts;
+ scripts/DesktopCheckMounts: renamed DesktopIcons helper script.
+ script/DesktopAcrions: new DesktopIcons helper script: it generate the
actions prefernces menu.
functions/Preferences-Menu: avoid logout and restart with FVWM-Crystal Desktop
Icons when possible.
+ asciidoc/MouseBindings & FAQ & KeyboardBindings & ApplicationsDatabase & Tips &
CrystalRoxHowto & Tips & create.sh: ported documentation to asciidoc with a helper
script to generate the man pages and html documentation; uodated the doc at the
same time.
- doc/Application Database.txt & Crystal ROX! HOWTO & FAQ & KeyboardBindings &
Mouse Bindings & Tips.txt: removed txt documentation
+ html/*: autogenerated html documentation
man/*: auto updated the man pages
Makefile: make it work with the new asciidoc documentation; added missing files
in uninstall
asciidoc/KeyboardBindings: added FvwmExpose and some more comment about Alt+Shift+KP*;
updated the man and html pages
Vendredi 23 Mai 2013 Dominique Michel
functions/FvwmExpose: silent xwd
apps/Thunar: add preliminary preference support for the action 1 and 2
+ preferences/FileBrowser1&2: preference files for Thunar actions
Jeudi 23 Mai 2013 Dominique Michel
recipes/* - crystal button: changed random wallpaper to Mouse 2, Menu on
selected recipes with Mouse 3, removed xrandr whell binding when not
in top left corner
icons/Default/*/fvwm-crystal/audio-x-generic.png renamed to audio-x-generic-3.png
+ icons/Default/*/fvwm-crystal/mixer.png&mixer-2.png&audio-x-generic-1&2.png
&audio-preferences-1&2.png: more Ken's icons
symlinked audio-x-feneric.png to audio-y-generic-2.png
preferences/LastChoosenRecipe: changed the defaut to not load 2 times
the same recipe at the initial startup. This seam to confuse FVWM a little bit -:)
functions/Media; scripts/media_directories: fix for errors at stderr when DVB
is present but not configured, and when the media directories preferences are
not set by the user.
scripts/media_directories; functions/Prefernces-Menu: popup a help message
when preferences/MediaDirectories is copied into the user directory.
desktop/Keyboard&Keyboard-NumLock; bindings/Misc-Keybings&Misc-Keybindings_NumLock:
fixed typo in fvwm-Expose bindings and moved them to Misc-Keybindings*
functions/FvwmExpose: added trayer and FvwmIconMan into the exclude list
Mercredi 22 Mai 2013 Dominique Michel
moved the X session and desktop files to new location: shared
apps/Thunar; recipes/*: make the IconBox to work togueter
functions/Media; functions/Mixer: some icon changes
Makefile: adjusted the installation of the X session and desktop files;
added recipe/LapRight and the 48x48 fvwm-crystal and categories icons
in dist-minimal;
shared/fvwm-crystal.desktop: commented out the tryexec key. Thanks to
Thomas Funk for pointing that out.
recipes/*: make the icon styles to be coherent; removed non needed icon styles
recipes/Wing-Commander: fixed the icon man and notification area geometries
functions/Prefernces-Menu: The pref warning message will be shown in several
lines instead of 1. Thanks to Thomas Funk for pointing that out.
recipes/*: added Help menu in FVWM_Crystal menu. Thanks to Thomas Funk.
Mardi 21 Mai 2013 Dominque Michel
scripts/ThunarCheckMounts; apps/Thunar: version 2 much simpler and better even
if I do prefer the look of the old version; v2 is just better.
Lundi 20 Mai 2013 Dominique Michel
functions/FvwmExpose: fix it to be less flashy; removed commented functions
+ icons/Default/*/fvwm-crystal/On.png&Off.png: 2 new icons from Ken
+ icons/Default/*/BlingBling2.png&Jewel.png&Jewel2.png&amiga.png&windows.png:
new icon from Ken
icons/Default/BlingBling.png&focus.png: replaced by Ken's icons
functions/Preferences-Menu; apps/Thunar: use those Ken's icons
apps/Thunar: added mc as action 2; make helper script to die/run when
closing/launching the partitions icons; changed some comments
- icons/Default/48x48/categories/Boing_4.*;
+ icons/Default/48x48/categories/Root.*; apps/Thunar: replaced Amiga drive icons by linux
drives icons for root; all Ken's icons
icons/Default/48x48/categories/DESJTOP.*&DOCUENTS.*&DOWNLOAD.*&MUSIC.*&
PICTURES.*&PUBLICSHARE.*&TEMPLATES.*&VIDEOS.*: replaced drives icons by
other Ken's icons for the XDG user directories
Dimanche 19 Mai 2013 Dominique Michel
doc/FAQ: added 3.12 about removable devices
+ scripts/checkmounts: Thunar helper script that check for mount changes;
it use FvwmCommand because we don't want the cursor to be busy every
time a check is done.
renamed scripts/checkmounts to ThunarCheckMounts
apps/Thunar: make it to redraw the partition icons when they are un/mounted
+ preferences/ShowPartitions; + preferences/ShowXDG; apps/Thunar: make the
XDG user dirs and the partitions optional with preferences; a restart may
be needed to kill modules with localised names, but not implemented (FVWM bug).
Samedi 18 Mai 2013 Dominique Michel
NEWS: Kenneth E. Lester, Jr. gave me the persmission to use his icons.
functions/BlingBling: added FvwmIconMan into the exclude styles
apps/Thunar: support for more mount points from /proc/mounts; added creation
of CD/DVD and XDG_USERDIRS icons
+ icons/Default/48x48/...: Ken's icons for CD/DVD and XDG_USERDIRS
functions/About; AUTHORS; French locale: added Kenneth E. Lester, Jr;
changed a few strings.
Vendredi 17 Mai 2013 Dominique Michel
Udated the French locale with the new strings.
doc/FAQ: added 3.11 about theme consistancy with applications
FontSelector: fix the index value into the font list
Jeudi 16 Mai 2013 Dominique Michel
+ preferences/DesktopMenu; functions/LoadCommonStuffs;
functions/Preferences-Menu; recipes/*: make the desktop menu with
Mouse 1 optional; incorporate the Music menu in all the recipes.
functions/FvwmExpose: fixed the synchronization.
desktop/Keyboard; desktop/Keyboard-NumLock; functions/LoasCommonStuffs:
make FvwmExpose available through Alt+e.
functions/FvwmExpose: move WindoId to the calling function
scripts/SetTranslucency: E17-Bling helper script; original idea from
Gronono on the gentoo forum
+ functions/BlingBling; functions/preferences-Menu; functions/LoadCommonStuffs:
Bling bling translucency support for Fvwm-Crystal; new warning form form.
+ icons/Default/*/fvwm-crytal/BlingBling.png: bling bling icons
functions/Preferences-Menu: use fvwm-crystal icon for the Menu with left click option
Mercredi 15 Mai 2013 Dominique Michel
functions/LoadCommonStuffs; recipes/*: Moved back DefaultDesktopManager
and Music player into the recipes; they must be after the Icons-* functions
+ some icons for the preferences menu
+ desktop/Icon-None; desktop-*; functions/Preferences-Menu: added icon
type preferences for the recipe that support icons on the dektop
+ icons/Default/*/icon*.png: icons file for dito
+ preferences/IconsType; preference file for dito
Mardi 14 Mai 2013 Dominique Michel
+ templates/header: template file for new files
functions/MakePanel: Fixed double AddToFunc call
+ functions/LoadCommonStuffs; recipe/*; config: Moved all the shared components
into LoadCommonStuffs
config: fixed the order of the recipe preference
Lundi 13 Mai 2013 Dominique Michel
+ addons/Xdefauts: Xressource file example; fix garbage into urxwt.
INSTALL; addons/README: some words about the Xdefaults file
AUTHORS: credited Daniel da Silva
functions/About: added all the authors I know about
functions/Window-Rearrange; bindings/Window-Rearrange";
doc/Keyboard bindings.txt; man/KeyboardBindings.1: added
Window-Rearrange-Default with associated key binding
apps/Thunar: added WindowListSkip style
Dimanche 12 Mai 2013 Dominique Michel
Updated version to 3.1.16
Samedi 11 Mai 2013 Dominique Michel
+ scripts/FontSelector/findindex.sh: helper script for FontSelector
scripts/FontSelector/FontSelector: fixed the fonts at lauch; added logic
to redraw the widgets when changing or recalling the preference
Vendredi 10 Mai 2013 Dominique Michel
functions/Fullscreen: don't interfere with MPlayer own fullscreen mode;
cleanup; increased schedule time to FullscreenRecover at restart to 1s.
functions/Windoow-Buttons: changed comment
apps/THunar: changed the icon title colorset
scripts/FontSelector: updated 1 font size to pixelsize
- recipes/Fullscreen: it doesn't make much meaning
+ recipes/LapLeft;
+ recipes/LapRight: 2 new recipes for width screens, typicaly modern laptop;
don't une trayer with them!
bin/fvwm-crystal.apps: more cosmetic code changes from Gentoo
updated amule icons
functions/Window-Basic; Window-Buttons; Window-Buttons-Vertical: remove
non used variables
Mardi 7 Mai 2013 Dominique Michel
desktop/FVWM-Crystal_Preferences: load the desktop geometry preference
doc/FAQ: added 3.8 about keyboard modifiers; add 3.9 about
personal recipe(s); add 3.10: personal application menu
styles/Menu: added automatic hotkey support
Lundi 6 Mai 2013 Dominique Michel
functions/About: version change to 3.1.13-svn
a few better quality icons
components/Fullscreen: remove temporary files when a full screened window
is closed; silent that function at restart
components/Thumbnails: fix a regresion, thumbnail was not recovered at
restart; introduce a thumbnail recovery delay at restart, needed by the
Icon-Launcher
+ icons/*/*/fvwm-crystal/geometry.png
+ preferences/DeskPageX: preference file for desktop geometry
functions/Preference-Menu: added desktop geometry preference
funcrions/Fullscreen: Added MoveToPage in Disappear off
recipes/*: add desktop geometry function
locale/fr/*/fvwm-crystal.*: a few new strings
recipes/Dock: geometry fix
Dimanche 5 Mai 2013 Dominique Michel
+ locale/fr_FR.UTF-8/*/fvwm-crystal-script.mo
+ locale/fr_FR.UTF-8/*/fvwm-crystal-script.mo
FontSelector: introduced full GetText support; added selected font label;
more relooking
preferences: make default font preferences to be coherent with FontSelector
components/functions/About: changed version to 3.1.12
News: updated
locale/fr_FR.UTF-8/*/fvwm-crystal-script.mo;
locale/fr_FR.UTF-8/*/fvwm-crystal-script.mo: added Handle width string
functions/Preferences-Menu: added Handles icon
+ icons/Default/*/fvwm-crystal/handles.png
bin/fvwm-crystal.apps: cosmetic code changes from Gentoo
Makefile: removed uninstall and added install-doc in install.
Samedi 4 Mai 2013 Dominique Miche
components/Fullscreen: restrict Fullscreen to non FvwmVuttons windows
updated IMSTALL
scripts/FontSelector/FontSelector: relooking; added example string
save and reset
Vendredi 3 Mai 2013 Dominique Michel
functions/Preferences-Menu: Fixed the styles for save panel_font
styles/FVWM: new FVWMScript style: VariablePosition Title and StayPut
styles/Focues-Policy*: added styles for FvwmScripts
desktop/FVWM-Crystal_Preferences/Styles: Moved load DefaultFocusPolicy -
it must be loaded after main FVWM styles.
+ scripts/FontSelector/FontSelector: FvwmScript based xft font selector for
Fvwm-Crystal; introduced font style preferences
+ preferences/*FontStyle: new font style default setup
functions/preferences-Menu: converted font preferences to FontSelector
associated files in functions, styles and desktop: introduce font style preference
decorations/*: batch update to font style preference
recipes/*: batch update to font style preference
moved functions/Icon-Launcher to apps/Thunar
functions/Prefernces-Menu: Added Thunar desktop preference
recipes/*; desktop/FVWM-Crystal-Preferences: moved desktop manager to the recipes
recipes/*: make all the recipes to work with apps/Thunar
Mercredi 1 Mai 2913 Dominique Michel
updated the version to 3.1.8
functions/Icon-Thumbnails: fix for desiconification of fullscreen windows;
fix the focus when restoring the window
recipes/*: unified the loading order of the notification area and media
players, this fix non wanted icons on the desktop
recipes/*: unified DesktopSize, all the recipes have now 8x1 pages
- recipes/Clean Vertical. This is the same than Clean anyway, but cannot be
unified with the other recipes. This unification fix the issue with lost
windows after a recipe change.
Mardi 30 Avril 2013 Dominique Michel
functions/FvwmExpose: Added comment about synchronization
recipes/Amiga: Commented out FvwmExpose
bindings/Numpad-Control: replaced non working function by the new maximize one
bindings/Music*: updated to use the dB step defined in functions/Mixer (1.5 dB)
updated the doc and man pages with those changes
synchronized the FAQ man page with the text file
functions/Icon-Launcher: launch the "icons" at the bottom
updated the version and NEWS to 3.1.7
Makefile: make dist-minimal: removed firefox icons; added man pages
Lundi 29 Avril 2013 Dominique Michel
NEWS update
functions/Colorsets; functions/Wallpaper: workaround for stalonetray
to update its colorset.
bin: updated some headers
doc: updated some headers, added a few sentences.
doc/FAQ: added 3.7 about flaky MPlayer.
updated and NumLock fix the mouse bindings and window decorations.
functions/Window-Buttons-Vertical: updated with the new maximize functions
doc/Mouse bindings.txt: updated mouse bindings description.
recipes/* updated the bindings, added windows transparency support using
xrandr.
Dimanche 28 Avril 2013 Dominique Michel
functions/Window-Buttons; functions/Fullscreen: cleanup of WindowResize
and associated functions. Simpler and better than ever; updated French
translation.
functions/Fullscreen; recipes/*: moved RecoverFullscreen call back to
StartFunction, but with a schedule
styles/FVWM: + style for stalonetray
recipes/Dock: fixed panel columns number
+ addons/searchstring: I use it when I search for a given function
addons/README: updated with searchstring
+ Contribute: FVWM is fun !
+ fvwm/scripts/convert_preferences; fvwm/config: convert preferences from
older releases when needed
Samedi 27 Avril 2013 Dominique Michel
bin/fvwm-crystal.videomodeswitch+: video mode switching usingg xrandr;
bin/fvwm-crystal.videomodeswitch-: video mode switching usingg xrandr:
commented debuging function
functions/FvwmExpose: make it to work. A little bit flaky. See commented
code for a non flaky version. If you know how to archive non flaky transparency,
please drop me a mail.
functions/Icon-Thumbnails: commented StartFunction, must be at the end of the
recipe instead.
recipes/Amiga: replaced Window-List by FvwmExpose
+ preferences/HandleWidth; functions/Fullscreen; functions/Preference-Menu;
styles/FVWM: added handle width preference
Vendredi 26 Avril 2013 Dominique Michel
+ addons/make_mo: make file for translations
Updated fr_FR.UTF-8 translation
Added some symlinks for the translations
styles/FVWM: updated NoHandles to !Handles
functions/Screenshot-import: added Seconds to the filename; fixed context.
functions/Fullscreen; recipes/*: fixed icons for hiden full-screened
windows after restart
Jeudi 25 Avril 2013 Dominique Michel
+ assons/10-local.rules: udev rules for some multituners dvb cards.
+ bin/fvwm-crystal.videomodeswitch+: video mode switching usingg xrandr
+ bin/fvwm-crystal.videomodeswitch-: video mode switching usingg xrandr
+ addons/fvwm-crystal: X Session file for FVWM-Crystal
Makefile: added bin/fvwm-crystal.videomodeswicth* installation;
installation of the Session and desktop file.
recipes/Default with ACPI: fixed forgotten infostore variable
components/scripts/FvwmScript-CpuTemp: updated to work with /sys
Mercredi 24 Avril 2013 Dominique Michel
functions/Icon-Launcher: cleanup; fix icon style to work with Icon-Thumbnails
functions/Preferences-Menu: re-added Eterm support
INSTALL: Added xcompmgr and transset into the optional dependencies
functions/Window-Basic: replaced transset-df ny transset
functions/Media; functions/Music; Functions/Preferences-Menu: Add DVB channel
lists support for mplayer with preferences
Mardi 23 Avril 2913 Dominique Michl
recipes/*; functions/EWMH-BaseStruts; functions/NotificationAreaManager":
fix EWMH-Toggle
recipes/Fullscreen: make the notification area movable and to appear/
disappear with EWMH-Toggle. Work best with StaloneTray.
recipes/Amiga: removed non needed tests; add Icon-Launcher
functions/Fullscreen: cleanup
functions/Icon-Launcher: cleanup; fix possible freeze at startup wih a
check on /proc/ounts instead of a mount command. Replaced cut and grep
by awk. This should be POSIX compliant, more robust and show more partitions.
Lundi 22 Avril Dominique Michel
recipes/*: move some SetEnv to Infostore; include Fullscreen functions
recipes/Default; Default with ACPI: fixed font size for Iconman
recipes/Fullscreen: + Icon-Thumbnails; add Crystal and music menu
into the default menu
recordmydesktop: added in application database
functions/FindFunctions: moved to InfoStore with associated files
recipes/*: changed some tests due to the infostore change
functions/Preferences-Menu; preferences/DefaultMusicPlayer: updated
DefaultMusicPlayer to infostore
functions/EWMH-FaseStruts; functions/Preferneces-Menu;
preferences/LastChoosenRecipe; fvwm/config: updated LastChoosenRecipe
pref to infostore with check for backward compatibility
Dimanche 21 Avril Dominique Michel
functions/Fullscreen: Disappear workk now on the current page. This fix
windows moves between pages when cycling trough the fullscreened windows.
Fixed windows overlapping when quitting fullscreen.
bindings/Numpad-Control: typo fix for Disappear binding
doc/Keyboard bindings.txt: added the Disappear binding; typo.
man/KeyboardBindings.1: typo
INSTALL: added coreutils, awk, sed and xwd into the dependencies
Venderedi 19 Avril Dominique Michel
functions/Media: Added commented out DVB channel change support. It work
for me, but nothing more. Please considere to contribute.
components/styles/FVWM: use ParentalRelativity for all FVWM parts and
modules.
styles/FocusPoolicy-Amiga; FocusPolicy-FVWM-Crystal-Raise; FocusPolicy-
MSWindow: Added FPFocusClickModifiers to fix wrong behaviour with NumLock
functions/Media; functions/Music*: playlists functions: fic quoting,
it must survive the PipeReads
functions(Media: Toad-DVD will replace play the DVD stright away
doc/FAQ: added QA about mplayer.
functions/fullscrenn: converted to infostore
Jeudi 18 Avril Dominique Michel
functions/Music; Functions/Media; functions/Music-xmms: Cleanup; moved
to InfoStore; added player volume control; added missing menus;
Music-GUI now use Iconify toggle instead of Close (fix reset the volume
with the jack output)
- components/functions/xmms: removing of outdated player
functions/Music: added missing functions from mplayer control
functions/Media; functions/Music-mplayer; functions/Music-mplayer2: moved
all the shared functions and menus to Media; added channel next and
prev for DVB; fix freeze when changing from one DVB adapter to another one.
Mercredi 17 Avril Dominique Michel
scripts/FvwmMPD/*: make the windows and fonts bigger. Its better to big
than too small
functions/Music-mpd: cleanup
functions/Music; functions/Media: added missing functions from Music-mplayer
functions/Music-mplayer*: cleanup; added preliminary DVB support.
functions/Music-quodlibet: cleanup
Mardi 16 Avril 2013 Dominique Michel
funcctions/Preferences; functions/Preferences-Menu; functions/Wallpaper;
functions/Window-Decorations; functions/Colorsets: New Silent operation
preferences. If enabled, it will redirect stdr to /dev/null for
all applications launched via the functions in Exec-Accelerator.
As a side effect, SavePreferences support now space into the file names
for all the related preferences inclusive WallpaperSet.
+ preferences/SilentOps: preference file for silent operation
functions/Exec-Accelerator: removed the fixed setting for silent operation
components/Standard: read the Silent operation preference before to
load functions/Exec-Accelerator.
Lundi 15 Avril 2013 Dominique Michel
+ Export.README: Free Export Regulations rules
recipes/Amiga: moved the SetEnv to InfoStore
functions/Music-cmus; functions/Music-mocp: cleanup; added prefernces
and playlist menu
Samedi 13 Avril 2013 Dominique Michel
functions/Music-audacious: -menu: added preferences and recreate
playlist
FAQ: Added Q 3.5
+ addons/translatechars; +addons/translatefilenames: pre alpha quality
scripts to remove special characters in files and directories names.
functions/Music: RecreatePlaylist use the new syntax.
Vendredi 12 Avril 2013 Dominique Michel
+ functions/Xdg-User-Dirs: Set locale aware and global variables
for well know user directories
scripts/make_all_playlists: use 4 variables for the playlists
directories
+ functions/Media: common file for multimedia players
functions/Music-mplayer(2): moved some functions to vomponents/Media;
introduced playlists localizations; playlist cleanup; clecup;
+ playlist copy from crystal playlists to user playlists..
functions/Music: playlist localization; moved some playlist functions
here.
functios/Music-alsaplayer: playlist localization; add copy playlist
function-> moved in Music
functions/Music-audacious: +infostore variables => plalist localization
Jeudi 11 Avril 2013 Dominique Michel
FAQ: Added q.a. about tear off menus.
functions/Music-mplayer: fix glitch into the speed control; introduced
dvdnav support
funvtions/Music-mplayer2: Introduced all the change from
Music-mplayer
Addedl capture option to mplayer(2). To press "c" will cause mplayer
to start/stop to dump the stream.
function/Music-alsaplayer: moved the envirnoment variables to
infostore; cleanup
Mercredi 10 Avril 2013 Dominique Michel
+ scripts/media_directories: auto generation of the /Music/LoadMovies
menu. It read $[FVWM_USERDIR]/preferences for that.
- scripts/make_playlist: it is part of make_all_playlists now
scipts/make_all_playlists: incorporation of make_playlist; updated
to use parameters instead of environment variables; will create the
user managed playlist directories if they don't exist..
components/Music; components/Music-mplayer: updated some variables
to infostore; updated to current make_all:playlists script; updated
speed control to infostore; removed fvwm_video_exec env var.
scripts/speed_value: zpdated to infosstore.
Mardi 9 Avril 2013 Dominique Michel
addons/alsamixerguis: updated to work with the Mixer GUI function
functions/Mixer; functions/Preferences-Menu; preferences/DefaultMixer;
preferences/DefaultSoundCaed; bindings/Multimedia_Keys*: updated
the mixer to use the infostore; almost full rewrite;
fixed alsamixer and aumix
Lundi 8 Avril 2013 Dominique Michel
bindings/Misc-Keybindings*: restoring default with working example
alternatives; apostrophe only work after a restart, change
the example to another key
funczions/Preferences-Menu: we want a restart when changing the
notification area width
-functions/NotificationAreaManager: this file is splitted in 2
that replace the 2 older NotificationAreaManager-* files.
That way, we only load the wanted functions. Updated the recipes
to reflect that change.
Mass removingg of the fonts encoding; Crystal use Xft and it is
better to use the user default config.
functions/Exec-Accelerator: silent the external applications that send
junk (from Fvwm point of vue) at stderr; add missinmg quotes in AT function.
functions/NotificationAreaManager-*: silent trayer and stalonetray as well
Dimanche 7 Avril 2013 Dominique Michel
+ addons/README: addons description
+ addons/convert_colorsets: show you how to convert existing
colorsets to InfoStore
INSTALL: Added needed dependencies
recipes Light, Nebulea, Old School, SideLine, Thin, TopDown, TopLine,
Wing-Commander: updated to new notification area.
Light recipe: pager cleanup; make pager dimensions to be variable.
comments cleanup into the recipes
functions/NotificationAreaManager: removed !Border trayer style and
end comments
Silent Hacker recipe: make the height to vary with the panel height
Thin recipe: fixed font for the music button
TopDown recipe: fixed font for the clock button; ipdated EdgeResistance
to new syntax
TopLine recipe: updated EdgeResistance to new syntax
Samedi 6 Avril 2013 Dominique Michel
recipes Corner, Dock: updated norification area
+ Mew Transparent colorset; colorset #11
+ New FullScreen recipe, show only a small transparent button. The menu
and the window list work with mouse button 1 and 2.
config: Moved Welcome from the recipe to the main config file.
Added comment about IgnoreModifiers; this command must be first.
Mass conversion of coloset environment variables to infostore variables.
Vendredi 5 Avril 2013 Dominique Michel
functions/NotificationAeraManager: Removed non needed function.
recipes Defaut and Amiga: simplification; trayer crash when swallowed
and new icons -> removed the swallowing. Anyway, it doesn't
scale well.
recipe Clean, Clean Vertical, Default with ACPI: updated notification
area
Jeudi 4 Avril 2013 Dominique Michel
Amiga decorations: removed buffering as we use outlined resize
functions/NotificationAera-Manager-trayer: typo
functions/NotificationAera-Manager-stalonetray: changed to
stalone current syntax
recipes/Default: A first recipe to try it; clear FVWM defult
functions before to load Crystal functions.
fix for stalonetray.
+ functions/NotificationAreaManager: new version of the notification
area using function parameters instead of the environment.
Updated the Default recipe to use it.
Updated the Amiga recipe to use it.
functions/NotificationAreaManager: We need to pass 9 paramters to
the trayer function when only 8 are used in it, that's because the
quoting must survive to that file.
Mercredi 3 Avril 2013 Dominique Michel
fvwm-crystal.generate-menu: run convert on the generated icon to
remove the libpng gAMA warnings.
INSTALL: added a section about this issue.
Replaced habak support by feh: solve a bug at restart (X Error
of failed request: BadValue (integer parameter out of range...));
hsetroot is now the prereded choice to load wallpapers
Mardi 2 Avril 2013 Dominique Michel
recipes/*: Add support for nested X session
icons for trayer and stalinetray
Reloaded applications icons trayer.png and stalonetray.png:
this remove some libpng warning;
Mass traitement of the icons with convert.
Mardi 24 Mars 2013 Dominique Michel
XScreenSaver: added preference that memorize the last on/off state
Dimanche 13 Janvier 2013 Dominique Michel
Added Aplications and icons files for LibreOffice
Added Icons for Timidity
Mercredi 11 Decembre 2012 Dominique Michel
components/functions/Preferences, components/functions/Preferences-Menu:
* Fix multiple preferences: Added Shedule to AppendPreferences functions
Dimanche 7 Octibre 2012 Dominique Michel
Added a few needed icons
components/functions/Preferences-Menu:
* icons fix
components/styles/FVWM, components/functions/Icon-Amiga,
vomponents/functions/Icon-Mwm:
* Style fix for new syntax
components/bindings/Misc-Keybindings_NumLock:
* Bindings fix
components/functions/mixer:
* Silent amixer during the master/pcm check
Vendredi 10 aout 2012 Dominique Michel
Makefile:
* Added forgoten bin file
Mercredi 12 Juillet 2012 Dominique Michel
fvwm-crystal.generate-menu:
" added prefernce system for desktop and icon files
we can now specify the directories this toll will
search for icon and desktop files.
* inclusion into the preferences menu
Makefile:
* fixed bug in SYSPREFS path (fvwm-crystal.generate-menu)
Lundi 10 juillet 2012 Dominique Michel
fvwm-crystal.generate-menu:
" added convert from ico and svg icon type
* improved icon finding
* improved destop files search path
Lundi 13 juin 2011 Dominique Michel
* Restored LastChoosenWallpaper
Dimanche 12 juin 2011 Dominique Michel
* Tooltip: KillModule ToolTip* before changing it
* Added support for MPlayer2
* Added missing speed variable initialisation
* Updated DesktopDir in fvwm-crystal.generate-menu
* Added font icons
* Added initial support for transparency using transset-df and xcompmgr
Vendredi 10 juin 2011 Dominique Michel
* Reversed wallpaper changes. Use the same wallpaper on all the desk pages.
Different wallpapers will be fopr some future release.
* Removed outdated stuff about session management and sys doc browser.
Dimanche 5 juin 2011 Dominique Michel
* Updated Bristol application menu
* Icons for Bristol
Samedi 7 mai 2011 Dominique Michel
* Nested sessions with Xephyr
* Make conditional a bar into the Diamond menu
Dimanche 20 février 2011 Dominique Michel
* Introducing $(DESTDIR) into the Makefile
* Fix the python shebangs to python2
Mercredi 9 février 2011 Dominique Michel
* Fixed setting of Recipe preference under heavy system load
Mardi 8 février 2011 Dominique Michel
* Fixed typo into most recipes that was causing erratic placement of the
Notification Aera and probably random crashes of modules
* Clean and Clean Vertical recipes: fixed FvwmPager + EdegeResistance syntax
* Fix for non working recipe preference with space in the recipe name
Lundi 7 février 2011 Dominique Michel
* Typo
Jeudi 3 février 2011 Dominique Michel
* Updated the AUTHORS, INSTALL, NEWS and README files
Samedi 28 janvier 2011 Dominique Michel
* Removed non needed UTF-8 test
* Updated DesktopDir in fvwm-crystal.generate-menu
* Added mplayer wrapper
* Updated About dialog
* Developper menu: replaced man system doc browser by support for info browser
via emacs, pinfo or tkinfo
* Added support for specific elements of the Amiga Recipe into EWMH-BaseStruts
* Fullscreen: Added comment, cleanup
* FvwmForm use the same font than the menus now
* Icon-Amiga: changed the colorsets
* Icon-Launcher: Added some comment; commented out all the code than can hang the function
when some partition is not avaible.
* Icon-Mwm: support for font preference
* Added functions to make panels and buttons
* Mixer: cleanup
* components/Music: common code to all the players
* updated the media players for use with components/Music
* StaloneTray: cleanup
* Trayer: support for $trayer_height into the recipes
* Preferences-Menu: cleanup
* Initial support for tooltips (used for the media button)
* Support for multiple wallpapers
* Fix the style for FvwmForm and FvwmIdent: changed the prefs loading order
* Binding for the multimedia keys: cleanup
* Updated menu style to fvwm current syntax
* Added Aqua and DarkAqua colorsets
* Removed glitch in window-bot.png
* Added some icons (Icon-Launcher)
* Updated French locale
* Updated the preferences to current state
* Updated the recipes to current state
* Added Wing-Commander recipe by Peter McConnell
* Filtering out characters than can confuse fvwm-menu-directory from thee playlist names
* Updated scripts/current_speed to current menu state
Samedi 1 janvier 2011 Dominique Michel
* Wimdow-Raise-Move-Lover witll focus on a non overlapped window
of the current page, if any.
Vendredi 31 décembre 2011 Dominique Michel
* Added font support from font preference in FvwmIdent
* Some cleanup in the Focus policies
* Icon-Launcher initial commit. Very experimental. Don't know if it will be
released here or in the contrib directory.
Work for me but certainly not portable at that time.
* Icon-Thumbnails : cleanup and added comment
* Debug-Functions : cleanup and support for font preferences
* EWMH-BaseStruts : support for double top panel like in the rewrited amiga recipe
* Added terminator support into AT Exec accelerator
* FvwmFormDefault : cleanup and support for font preferences
* Window-Decorations : cleanup
* New bindings : Window-Basic-Amiga
* Added script Infoline for the Amiga recipe
* script makefontlist : cleanup
* Added scripts to generate the media playlists from the menu
* Introducing unified Mixer control
* Changed Default Music Player to mplayer
Mercredi 23 décembre 2010 Dominique Michel
* New Amiga focus policy : click to focus without raise,
icons are move to focus :), its not AmigaOS behaviour but I like it that
way for now, may change in the future
* Added Amiga style icon functions
* Fixed Window-Remember-*, State 2 initialisation was using old syntax
* Added some application styles
* Fixed the style order loading causing non wanted effect after restart.
Hope it work well now. This one was hard to figure out.
* Moved "include Fullscreen" into the recipes.
* Added multiline preference function
* Removed Music preferences form the main preference.
Will be incorporated into the Music button.
* Added font preference menu.
* Added terminator support into the devman menu
* Updated EdgeScroll-Toggle function with current fvwn syntax
* Fixed Desktop-MMB-EdgeScroll with numpad.
Thanks to Jorge Daniel Sampayo Vargas for reporting and fixing it.
Mardi 22 décembre 2010 Dominique Michel
The commit list bounced here too !
* New Maximize functions and associated bindings
* Improved Fullscreen function
Dimanche 19 décembre 2010 Dominique Michel
This was a huge commit, the commit list bouced !
* Fixed bug in FvwmMiniConsole bindings with Numpad
* Some new or modified bindings
" New theme AmigaOS, new Decoration, new colorset
* New mouse binding Amiga, new multimedia keys bindings
Mercredi 17 juin 2009 Dominique Michel
* button-amigaos: fullscrenn with button 1, maxismize with button 2.
* Improved the Amiga recipe. Changed the pager button to work with fullscreen windows.
Try it with several fullscreen windows ont the same page.
* mixer-amixer: added test for volume control and fixed the db syntax.
* Improved the font preferences. Hope it work well now where it is implemented. TODO: implement it overall.
* Applications database: moved jamin to audio/Mixers
* Removed unwanted characters from AlsaPlayer menu
* Keyboard bindings: removed commented custom bindings and added a few words about bindings customization into the doc.
* Added a few applocations styles.
* Last but not least: Added pt_BR and pt_BR_UTF-8 locales. Thanks to Nycholas de Oliveira e Oliveira!
Tue April 28 Dominique Michel
* Fixed typo in Music-Alsaplayer
* Minor change in Misc-keybinding (reversed to original behaviour?)
* A few more apps
* Fixed python 2.6 warning in fvwm-crystal.apps
Sun June 29 Dominique Michel
* Amiga recipe: some cleanup, removal of env variables
Tue June 24 Dominique Michel
* New firefox icons, thanks to zv3zda from deviantart to let me distribute this
original artwork under the GPL : http://zv3zda.deviantart.com
Mon June 23 Dominique Michel
* Added utility to fix the POSIX issue into the user config, 2 files: addons/varfix.sh and addons/searchvartofix.
* Oups, fixed one missed non POSIX variable into the Amiga recipe.
Sun June 22 Dominique Michel
* Applied the gentoo fix to a very severe bug that break POSIX.
The fix will break your user configuration but I recommand to anyone to apply it.
See http://bugs.gentoo.org/show_bug.cgi?id=210580
In order to update your user config, change all the "-" to "_" into the environment
variable names.
* Amiga recipe: ported the gentoo POSIX fix, removed uneeded utf-8 test
" decorations/Amiga: ported the gentoo POSIX fix
* Font preferences: Added setting for panels and menus. panels apply to windows decoration for now.
" bin/fvwm-crystal: changed fvwm executable name to the new and now old fvwm2 name: fvwm.
Fri June 19 Dominique Michel
* Oups, changed FVWM_USERDIR to FVWM_SYSTEMDIR in preference_menu (font setting)
Thu June 18 Dominique Michel
* Changed switch2 + gtk-chtheme menu entries
* Added 48x48 rox icon
* Font preferences: The title bar setting work, but only the Amiga window decoration will work at start time
* Font preferences: Added pref setting in the Amiga window decoration for non UTF-8 systems
* Font preferences: Added pref setting and font setting for UTF-8 systems in the Amiga window decoration for the non amiga themes
Mon June 16 Dominique Michel
* Amiga recipe: fixed the Application panel's look
* Amiga recipe cleanup: fixed the number or rows into the Bottom button
* Added font preference: the menu and the creation of the preference file is working
Sun June 15 Dominique Michel
* Amiga recipe: shifted the audio button to the bottom left
* Amiga recipe: fixed trayer style and emplacement
Sat June 14 Dominique Michel
* Amiga recipe: work in progress
" Amiga recipe: bottom button, some code cleanup
* Amiga recipe: Changed the way the bottombuton and the music button are iconified
Wed May 14 Dominique Michel
* Fixed utf-8 Timeout font for FvwmFormDefault
* Updated NotificationAeraManager-stalonetray for recent stalonetray version
Sat May 3 Dominique Michel
* Updated the requirements in the README
* Added a few icons for the recipes
* Updated the requirements in the INSTALL file
* Updated news with the 3.0.5 release
* Added amigaos windows decoration
* Added style for claws-mail and amule
Fri May 1 Dominique Michel
* Created svn repositoty
* Updated ChangeLog from the darcs repository
* Updated the Makefile to work with the new svn repository.
Tue Jun 5 00:19:18 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Changed recursive copy commands to use POSIX syntax.
Tue Jun 5 00:12:55 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* 2 things: correctpermissions for addons/fvwm-crystal.lesspipe.sh and style for FvwmIdent in the Debug menu. This window will be on top and the font will be readable.
Sun Jun 3 17:53:20 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Commented out Style * CenterPlacement (give me error), and added stalonetray
Sun Jun 3 17:51:07 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Code cleanup in Music-alsaplayer
Sun Jun 3 15:19:23 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Added xzoom in devel menu, an alternative to xmag, but better
Sat Jun 2 23:43:44 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Icons cleanup
Sat Jun 2 16:39:30 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Visual change of the bottom bar. From left to right: menu, notification area, audio button, taskbar, clock. Removed duplicated style option.
Sat May 19 00:17:58 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Added command line option is Start MPlayer that does at MPlayer will not close and reopen its window between 2 titles or movies.
Fri May 18 23:38:09 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Added OSD menu im Music-mplayer. Work with the MMB on second audio button.
Fri May 18 22:36:02 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Removed duplicated function and fixed Load-DVD function in Music-mplayer. It will queue all the titles on a dvd and doesn t depend on mplayer support for the broken libdvdnav.
Thu May 17 17:13:13 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Updated comment in Music-mplayer
Thu May 17 16:59:25 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Music-mplayer use FvwmMenuDirectory to browse the media files. Change in the syntax of fvwm-crystal.mplayer-wrapper. Added DVD browsing menu in Music-mplayer.
Thu May 17 00:14:41 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Added dB + multimedia keys + alsamoxergui(s) support in amixer. Fixed Mixer-GUI function in Mixer-amixer and Mixer-aumix. Adjusted dB values in mixer-aumix according to the output of the ALSA driver (aumix doesnt support dB control natively and the correspondance in dB doesnt fit well the math and can vary a little from card to card when the mixer and-or the driver doesnt support dB natively). Added multimedia key support in Mixer-aumix. Code cleanup in Music-mplayer. Added Mixer-GUI in Thin recipe.
Wed May 16 00:09:34 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Support for Mixer menu in Thin recipe. Needed in order to get the Mixer menu in the Audio button.
Wed May 16 00:05:40 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Support for alsamixergui in Mixer-amixer. Added AT function in Exec-Accelerator: same as A but give a title to the window. I made AT because it was useful in Mixer-amixer.
Sun May 13 22:28:44 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Fixed System documentation browser to use $PAGER. Added documentation and a less preprocessor.
Sun May 13 15:53:29 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Fixed confusion in locale test in speed_calc script and associated Music-controls. In case of trouble, be sure at you have the same locale setting in ~/.bashrc and ~/.profile (seam to be important when gdm launch Crystal).
Sun May 13 00:55:07 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Adjusted version in About file.
Sun May 13 00:52:50 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Added mplayer support in all the recipes.
Sun May 13 00:48:29 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Added Load-DVD menu im Music-mplayer. MPlayer start in fullscreen.
Sat May 12 21:28:35 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Added System documentation browser in the doc menu (devel menu).
Sun May 6 23:57:57 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Added missing quotes in fvwm-crystal.mplayer-wrapper
Sun May 6 23:17:06 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Initial release of MPlayer media control with preferences support. Some basic controls pn the audio button are included as playlists and files loading (This was the worst! I hate quoting! A wrapper made it to work.), file change, volume and speed control, pause and framestep. Modified Thin recipe with support for MPlayer (use the 3 buttons audio button). In fullscreen mode, the audio button will appear and desappear by moving the mouse on the left of the screen. Commented out the multimedia menu in Thin.
Sun May 6 15:54:33 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Initial FVWM-Crystal documentation menu
Sun May 6 15:34:48 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Renamed man page.
Sun May 6 15:31:55 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Man pages for FVWM-Crystal: initial commit. Missing preference file.
Sat May 5 21:49:03 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Added conditional test in the documentation menu in Developer-Menu. The different terminal will get the right syntax with the man command.
Sat May 5 21:44:22 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Added missing NotificationArea-Width preferences in FVWM-Crystal_Preferences
Sat May 5 19:10:18 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Updated Music-alsaplayer with security fix in SetEnv Alsaplayer-Playlists, reorganized speed menu and added missing song value in Music-SongChange
Tue May 1 23:06:50 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Modified autohiding of the bottom panel in Thinrecipe. It is no thin line at the bottom in fullscreen mplayer anymore.
Tue May 1 22:19:51 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Modified autohiding of the bottom panel. It is no thin line at the bottom in fullscreen mplayer anymore.
Mon Apr 30 19:20:24 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Added a few words about fvwm-crystal.generate-menu installation and gnome-session setup.
Mon Apr 30 00:05:26 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Added correctpath function into the Makefile, fvwm-crystal-generate-menu need to know the install location.
Sun Apr 29 23:26:18 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Added wrongly removed change in DefaultMusicPlayer
Sun Apr 29 21:11:17 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Fixed StayOnTop style for the bottom panel. Will work after a restart and with or without gnome-session.
Sun Apr 29 20:47:11 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Fixed StayOnTop style for the bottom panel. Will work after a restart and with or without gnome-session.
Sun Apr 29 17:18:00 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Added "Debug window list", available from the developer menu
Sun Apr 29 15:33:18 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Added "Window-Ring-[Next|Previous]" functions, which let you select next or prev window in a FVWM ring of windows
Sun Apr 29 18:47:00 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Fixed the new locale test in speed_value. Must work as expected now.
Sun Apr 29 17:43:15 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Removed obsoleted doc menu from Thin recipe.
Sun Apr 29 16:55:29 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Fixed the locale test in Music-alsaplayer. Alsaplayer's volume must work now with any locale that use comma or point as decimal point.
Sun Apr 29 16:16:29 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Fixed the locale test in speed_value. Must work now with any locale that use comma or point as decimal point.
Sun Apr 29 15:27:44 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Changed ManPageView into a portable function
Sun Apr 29 14:40:55 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* TopLine recipe with updated Alsaplayer button and Notification area support. Removed obsoleted TopLine Audio recipe
Sun Apr 29 14:22:47 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* TopDown recipe with updated Alsaplayer button and Notification area support.
Sun Apr 29 14:13:50 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Thin recipe with updated Alsaplayer button support.
Sun Apr 29 13:03:51 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* SilentHacker recipe with Alsaplayer button support.
Sun Apr 29 12:42:53 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* SideLine recipe with Alsaplayer button and Notification area preferences support.
Sun Apr 29 00:02:19 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Old School recipe with Alsaplayer button.
Sat Apr 28 23:31:08 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Nebulae recipe with Alsaplayer button.
Sat Apr 28 23:04:25 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Dock recipe with Alsaplayer button.
Sat Apr 28 22:52:43 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Dock recipe with gnome-session suport and Alsaplayer button.
Sat Apr 28 22:33:04 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Added missing icon for the Alsaplayer button.
Sat Apr 28 22:13:23 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Some recipes with gnome-session and alsaplayer support. Removed obsolete recipes.
Sat Apr 28 15:44:55 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Clean Vertical and Corner recipes are working with gnome-session and the 2 audio buttons.
Sat Apr 28 14:48:40 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Added missing bin/fvwm-crystal.generate-menu file.
Sat Apr 28 14:35:45 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Added fvwm/scripts/speed_value in Makefile. It will install with correct permissions.
Sat Apr 28 14:28:45 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Renamed bin/fvwm-crystal-generate-menu into fvwm-crystal.generate-menu. Added bin/fvwm-crystal.generate-menu and bin/fvwm-crystal.infoline into the Makefile for easy installation.
Sat Apr 28 12:43:57 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Modified Music-alsaplayer to work with the recipes without audio button. Modified Thin recipe to work with this new version, modified Clean recipe to work with Music-alsaplayer and gnome-session.
Sat Apr 28 00:52:24 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Moved speed_value, it was at the wrong emplacement.
Sat Apr 28 00:50:48 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Thin recipe with support for all the audio player and session management
Sat Apr 28 00:49:06 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Preference file for the width of the Notification area
Sat Apr 28 00:47:53 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Preference file for Music-*
Sat Apr 28 00:43:46 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Updated french locales
Sat Apr 28 00:39:01 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Speed support file for Music-alsaplayer
Sat Apr 28 00:37:31 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Removed non needed file. This setting is now in preferences/NotificationArea-Width
Sat Apr 28 00:36:31 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Removed non needed file.
Sat Apr 28 00:35:00 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Added preference support for the Notification area width. It is used by stalonetray in all the recipes and by trayer in the recipes where this area have a fixed size.
Sat Apr 28 00:31:58 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Fixed width function in NotificationAreaManager-*
Sat Apr 28 00:29:43 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Removed non needed file. This setting is now in preferences/NotificationArea-Width
Sat Apr 28 00:26:45 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Music-alsamixer: It try to exercise Alsaplayer a lot, volume in db, mixed fixed-dynamic speed control, playlist, song changes, etc.
Sat Apr 28 00:23:52 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Mixer-aumix with multimedia keys support and volume control in db
Sat Apr 28 00:22:34 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Session management support in the Exit menu
Sat Apr 28 00:19:20 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* New developper menu with session management menu and documentation menu. The syntax of the doc menu is still to be fixed
Sat Apr 28 00:16:27 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Fixed wrong keybindings in Application-Ardour
Fri Apr 27 21:47:16 CEST 2007 Dominique Michel <dominique_libre@sourceforge.net>
* Fixed filename in session-management.README, changed typo and added some infos related to gnome-session.
Thu Apr 26 01:18:36 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Rearrangements in Application database
- IceWeasel, IceDove, IceApe and Konqueror have now higher priority due to the
removal of non-free application icons
- xtraceroute and wavemon are moved to the System/Monitors section
Thu Apr 26 01:15:13 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Added support for Deluge Torrent on Ubuntu
Thu Apr 26 01:06:39 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Removing all non-free icons or icons with unknown status
These icons were pretty and useful, but it looks like because they either
they are not on GPLv2 license, or they have an unknown license, I cannot
include them in official FVWM-Crystal package - if I do, I'm violating the GNU
GPL license. So I'm moving them out of the main tree, and I will release them
as a separate, non-free icon package for FVWM-Crystal.
Thu Apr 26 00:45:39 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Documentation menus are moved from the main menu to the "Developer Menu" submenu
Thu Apr 26 00:44:59 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Removing old unused icon
Sat Apr 21 15:58:27 CEST 2007 dominique.michel@citycable.ch
* Default recipe with experimental support for session management and notification area preferences
Tue Apr 17 00:58:06 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Updated doc/TODO file
Sun Apr 15 22:20:57 CEST 2007 dominique.michel@citycable.ch
* Initial import of preference setting for the trayer with a modified version of the Default recipe.
Sun Apr 15 00:30:50 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Added documentation menu in "Developer Menu"
Currently there are all FVWM man pages included, divided in various sections.
Sat Apr 14 23:09:45 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Removed redundant 'gdmflexiserver' entry from the Application database
Support for gdmflexiserver is included in 'components/functions/Exit-gdm', and
it's activated when GDM is detected.
Sat Apr 14 23:06:38 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Added the sample application-specific bindings for Ardour
You can use this file to remove unwanted bindings from Ardour's windows, by
including it in your configuration (~/.fvwm-crystal/userconfig).
Sat Apr 14 22:48:38 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Rearrangements in the Application database
- Ekiga has been removed from 'Network/Instant_Messaging' section, it's
available in 'Network/Telephony' section and has been included two times in
the menu.
- Balsa Address Book should be in the 'Office/Contact_Management' section,
because it's responsible for managing address book in the Balsa mail client.
- I've added 'deluge-torrent', the same as 'deluge' application.
Wed Apr 11 01:33:13 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Reverting back for old keybindings for QuakeConsole, new terminal window and FvwmMiniConsole
Thu Apr 5 00:15:18 CEST 2007 Dominique Michel <dominique.michel@sourceforge.net>
* New recipes with all the alsaplayer functions
Wed Apr 4 19:53:13 CEST 2007 Dominique Michel <dominique.michel@sourceforge.net>
* New french UTF-8 locale
Wed Apr 4 19:47:13 CEST 2007 Dominique Michel <dominique.michel@sourceforge.net>
* New decoration: CIOS-blue
Wed Apr 4 19:20:51 CEST 2007 Dominique Michel <dominique.michel@sourceforge.net>
* New Misc-Keybindings
Wed Apr 4 19:12:04 CEST 2007 Dominique Michel <dominique.michel@sourceforge.net>
* New utility apps for the application menu
Wed Apr 4 19:10:47 CEST 2007 Dominique Michel <dominique.michel@sourceforge.net>
* New system apps for the application menu
Wed Apr 4 19:08:52 CEST 2007 Dominique Michel <dominique.michel@sourceforge.net>
* New settings apps for the application menu
Wed Apr 4 19:07:10 CEST 2007 Dominique Michel <dominique.michel@sourceforge.net>
* New office apps for the application menu
Wed Apr 4 19:05:38 CEST 2007 Dominique Michel <dominique.michel@sourceforge.net>
* New network apps for the application menu
Wed Apr 4 19:03:33 CEST 2007 Dominique Michel <dominique.michel@sourceforge.net>
* New video apps for the application menu
Wed Apr 4 19:02:10 CEST 2007 Dominique Michel <dominique.michel@sourceforge.net>
* New audio-video apps for the application menu
Wed Apr 4 19:00:17 CEST 2007 Dominique Michel <dominique.michel@sourceforge.net>
* New audio apps for the application menu
Wed Apr 4 18:58:31 CEST 2007 Dominique Michel <dominique.michel@sourceforge.net>
* New knowledge apps for the application menu
Wed Apr 4 18:57:15 CEST 2007 Dominique Michel <dominique.michel@sourceforge.net>
* New graphics apps for the application menu
Wed Apr 4 18:55:54 CEST 2007 Dominique Michel <dominique.michel@sourceforge.net>
* New devel apps for the application menu
Wed Apr 4 18:53:14 CEST 2007 Dominique Michel <dominique.michel@sourceforge.net>
* New games for the application menu
Wed Apr 4 18:50:57 CEST 2007 Dominique Michel <dominique.michel@sourceforge.net>
* New games for the application menu
Wed Apr 4 18:47:38 CEST 2007 Dominique Michel <dominique.michel@sourceforge.net>
* New games for the application menu
Wed Apr 4 17:51:35 CEST 2007 Dominique Michel <dominique.michel@sourceforge.net>
* Added script to generate the menu entries from application type desktop files.
Wed Apr 4 17:36:59 CEST 2007 Dominique Michel <dominique.michel@sourceforge.net>
* Added category icons for the freedesktop friendly menu
Wed Apr 4 17:25:24 CEST 2007 Dominique Michel <dominique.michel@sourceforge.net>
* Fvwm-Crystal category icons reorganisation into a freedesktop friendly menu
Wed Apr 4 15:37:34 CEST 2007 Dominique Michel <dominique.michel@sourceforge.net>
* Fvwm-Crystal menu reorganisation into a freedesktop friendly menu
Wed Mar 28 19:58:25 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Resolving small conflicts the fourth time
Wed Mar 28 00:38:19 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Added es_ES.UTF-8 translation, thanks to SpOeK@DistroBit.Net
Wed Mar 28 00:36:20 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* All *.m3u and *.pls are now searched in ~/.fvwm-crystal/playlists directory
Wed Mar 28 00:34:43 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Add support for the Audacious music player, thanks to spoek@distrobit.net
Tue Mar 27 23:25:53 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Added support for MOC music player, created by tuxator@o2.pl
Tue Mar 27 23:12:04 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Adding new icons, applications and styles
Now Firefox, Thunderbird and Mozilla Suite don't use MiniIcons forced by FVWM-Crystal
Tue Mar 27 20:19:07 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Updated fvwm.vim hilight configuration
Tue Mar 27 20:17:58 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Some changes in support for 'xmms2' music player (experimental)
Tue Mar 27 20:13:29 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Added support for the 'amixer' audio mixer
Tue Mar 27 20:08:33 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Improved gmplayer window support - you can now raise/lower mplayer control window above/below video window
Tue Mar 27 20:07:05 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Added "Expose" clone, it's an experimental code, needs improvement
Sun Jan 21 23:39:07 CET 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Reverting changes to the 'components/functions/Window-Decorations', these functions are meant to count the directories, not just activate if they're present
Wed Mar 28 19:56:41 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Resolving some conflicts a third time
Sun Jan 21 23:33:17 CET 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Updated 'components/styles/Applications' (Thomas Adam's patch)
Wed Mar 28 19:50:33 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Again resolving some conflicts...
Sun Jan 21 23:29:48 CET 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Applied Thomas Adam's patch of the 'components/functions/Fullscreen' file, thanks Thomas!
Wed Mar 28 19:48:07 CEST 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Resolved conflicts with Thomas patches (something isn't right here...)
Fri May 26 01:15:13 CEST 2006 thomas@edulinux.homeunix.org
* Functions-Style-Updates
Sun Jan 21 22:42:05 CET 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Removed startup of 'gnome-settings-daemon' from 'preferences/Startup'
Sun Jan 21 22:41:19 CET 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Added 'components/apps/OpenOffice.org' to all of the recipes
Sun Jan 21 22:38:08 CET 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Added new configuration files for 'gnome-settings-daemon' and 'OpenOffice.org':
- in 'components/apps/GNOME-Settings-Daemon' you can find a code which will
launch g-s-d at startup; this code has been moved from 'preferences/Startup'
to it's own file to make it easier to run g-s-d. It's not used by default,
you can add it to your recipe or for example, '~/.fvwm-crystal/userconfig'.
- in 'components/apps/OpenOffice.org' you can find settings for OpenOffice.org
to allow it to use GNOME or KDE theme. By default OO.o uses GNOME themes,
it's launched from the recipe.
Sun Jan 21 22:09:49 CET 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Updated 'WindowSize' in the "FvwmScript-Clock-small"
Sun Jan 21 22:09:10 CET 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Updated application styles
Sun Jan 21 22:08:36 CET 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Added new applications
Sun Jan 21 22:07:50 CET 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Added new application icons
Sun Jan 21 22:06:28 CET 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Changed default FvwmIconMan resolution from "Global" to "Page" due to popular demand in 'Default' and 'Default with ACPI' recipes
Sun Jan 21 22:04:18 CET 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Updated 'SilentHacker' recipe:
- added main FVWM-Crystal menu and Applications menu under Alt+Win_R/Menu
- added top panel with output from 'fvwm-crystal.infoline' script and clock
Sun Jan 21 21:57:27 CET 2007 Maciej Delmanowski <harnir@linux.net.pl>
* Added new script, 'fvwm-crystal.infoline'
Thu Oct 5 22:49:11 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* New recipe "SilentHacker" - very minimalistic
Thu Oct 5 22:48:48 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* New, really small clock script
Tue May 30 22:31:59 CEST 2006 Maciej Delmanowski <harnir@post.pl>
tagged 3.0.4
Tue May 30 22:31:39 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Getting ready for the new release
Tue May 30 22:31:01 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Updated documentation
Tue May 30 17:43:16 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Added "C Music Player" to supported music players
Tue May 30 17:33:27 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Added new applications, icons and styles
Mon May 29 22:52:35 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Cosmetic changes in application styles
Mon May 29 22:45:56 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Cosmetic change in 'Window-Autohide'
Mon May 29 22:24:11 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Updated "Fullscreen" functions by Thomas Adam
Now fullscreened windows cannot be resized or moved.
Mon May 29 22:21:24 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Updated Makefile script, now 'dist-minimal' should work fine.
Mon May 29 22:10:54 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Changed the icon directory of FVWM-Crystal's logo used in recipes
Mon May 29 00:34:17 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Updated 'Makefile' script - adding new target, 'dist-minimal' (work in progress)
Sun May 28 22:02:10 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Updated 'FvwmScript-CpuTemp' to work with wider range of devices
Sun May 28 22:01:37 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Adding new recipe, "SideLine"
Sun May 28 22:01:04 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Adding new functions: Window-Autohide
Sat May 27 22:09:15 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Adding new recipe, "Light"
Sat May 27 22:03:16 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Common bindings are moved from 'components/desktop/Keyboard*' to 'components/bindings/Misc-Keybindings*'
Sat May 27 21:51:39 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Updated application panel and menu generation commands, by Michael Stilkerich
There are two new variables:
- $FVWM_DISTROMENUDIR - a directory with application database generated by
distribution-based script, for example using Debian Menu system
- $FVWM_DISTROMENUNAME - name of a menu generated by the script, used to
include/exclude it in the app panels or menus. By default it's set to
"debian".
All recipes are updated to use these variables. Using $FVWM_DISTROMENUNAME you
can change the name of the system application menu, and icon used to display
it. For example, you can change "debian" to "ubuntu", generate a menu with
that name and have it displayed with a Ubuntu logo.
Sat May 27 17:25:24 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Updated FvwmScript-CpuFreq - fall back to /proc/cpuinfo without cpufreq available
Sat May 27 16:40:43 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Updated clock scripts
Michael Stilkerich sent a new version of clock script, which automatically
guess the correct time format from current locale settings and displays it
accordingly. You can also toggle between 12h and 24h time formats using right
mouse button on the clock (left mouse button toggles between time/date
display). Thanks to that there's no need for separate 24h and 12h clock
scripts, so old files will be removed in the next release.
All recipes have been updated to use the new clock.
Tue May 23 22:46:13 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Small update in all colorsets, file with colorset definitions had to be renamed
Tue May 23 22:35:01 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Adding new window decoration, "MicroClear"
Mon May 22 22:00:08 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Updated wallpaper menu generator - it should work faster
Mon May 22 20:36:02 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Updated documentation
Mon May 22 20:32:17 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Changed default user directory
By default, fvwm-crystal sets $FVWM_USERDIR as '~/.fvwm-crystal/'.
Script now looks for user-wide installation in '~/fvwm-crystal/'.
Mon May 22 20:30:19 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Update in the fvwm2 command line (added $@)
Mon May 22 20:28:55 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Added a small commented command to 'components/functions/Icon-Thumbnails', which enables moveable thumbnails
Wed Apr 5 19:14:54 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Fonts used in recipes automatically select UTF-8 encoding
Wed Apr 5 18:31:58 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Added Dvorak keyboard bindings
Wed Apr 5 18:23:46 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* FvwmForm and FvwmIdent settings are moved from recipes to separate files in components/
Fri Mar 31 00:44:54 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Updated 'Multimedia' category icon
Fri Mar 31 00:43:44 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Automatically select correct font encoding in icon titles
Fri Mar 31 00:42:22 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Automatically select correct font encoding in the menus; also default font changed from "Tahoma" to "Verdana"
Fri Mar 31 00:39:55 CEST 2006 Maciej Delmanowski <harnir@post.pl>
* Crystal now recognizes UTF-8 environment and automatically uses correct font encoding
Mon Mar 13 20:41:42 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated pl_PL and pl_PL.UTF-8 translation
Thu Mar 9 12:43:41 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Adding Hungarian localization
Wed Mar 8 22:15:23 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Added 'Reload current recipe' command to the Developer Menu
This way if you want to test the changes in your recipe, you can avoid full
FVWM restart (and for example trayer kill, and problems with applications
which use it). And it's a bit quickier than "normal" restart.
Fri Mar 3 18:28:24 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated es_ES translation
Sun Feb 19 21:41:26 CET 2006 Maciej Delmanowski <harnir@post.pl>
tagged 3.0.3
Sun Feb 19 21:41:00 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Changed version to 3.0.3
Sun Feb 19 21:40:32 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated documentation
Sun Feb 19 20:14:14 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Changed names of the icons used in Window decorations menu - they were too long and menu didn't work when Crystal was installed in /usr/local
Fri Feb 17 23:51:16 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Adding Debian menu support
If 'Applications/debian' category is present, it will be shown on the app
panels with category icon (Debian logo) instead of the "topapp" icon.
Fri Feb 17 23:50:35 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Added missing 'applications.png' icon
Fri Feb 17 22:33:29 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated Makefile, now it sets world read permissions on all the files, and uninstalls previously installed Crystal before updating
Fri Feb 17 22:25:02 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Added "Mouse bindings.txt" to the documentation.
Fri Feb 17 01:13:14 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Changes in Makefile
Makefile is now more friendly for distribution packages.
Fri Feb 17 01:12:04 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated 'fvwm-crystal' script
Now it looks automatically in parent directory for FVWM config files, so
there's no need to edit the script.
Thu Feb 16 01:58:00 CET 2006 Maciej Delmanowski <harnir@post.pl>
tagged 3.0.2
Thu Feb 16 01:57:25 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Changed the version number to 3.0.2
Thu Feb 16 01:56:10 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated NEWS file
Thu Feb 16 01:42:10 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updates in the Makefile script
Thu Feb 16 01:39:19 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Adding ViM modeline to the FvwmConfig configuration files, so they are recognized by ViM
Thu Feb 16 00:55:18 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Added new FvwmConfig syntax hilighting for ViM editor
Tue Feb 14 11:25:49 CET 2006 Maciej Delmanowski <harnir@post.pl>
tagged 3.0.1
Tue Feb 14 11:22:16 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Forgot about some more Autotools script... removing.
Mon Feb 13 22:33:03 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated documentation
Mon Feb 13 22:22:05 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Adding new Makefile script
Mon Feb 13 22:20:12 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Removing old Autotools scripts (superseded by new Makefile script)
Mon Feb 13 18:44:13 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated "NEWS" file
Mon Feb 13 18:43:25 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated installation requirements and change of the version number to 3.0.1
Mon Feb 13 18:31:27 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Changed Wallpaper menu function, it will now only look for image files (.png, .jpg and .gif)
Mon Feb 13 18:30:23 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Added "Original" variant of the "Crystal" window decoration and corresponding panel colorset
Mon Feb 13 18:29:24 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated application database and app icons
Fri Feb 10 19:29:12 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Urgency hint functions are reset so FVWM don't freak out with gajim ;-)
Thu Feb 9 22:47:49 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Icons used in window decorations menu have changed names (they were too long)
Thu Feb 9 20:11:09 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updaed Polish translation
Thu Feb 9 19:57:45 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Added information about new keybindings to the documentation
Thu Feb 9 19:44:11 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Adding window movement keybindings using Alt+(Shift)+hjkl
Thu Feb 9 00:26:17 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated documentation
- added FAQ
- added donation info in the README
Thu Feb 9 00:25:40 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated application styles
Thu Feb 9 00:25:20 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Added new application icons
Thu Feb 9 00:23:03 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updates in application database
- Added new applications
- 'Internet/Communicators/' is renamed to 'Internet/IM'
Thu Feb 9 00:20:14 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Cosmetic changes in the recipes
Wed Jan 25 13:57:31 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated FVWM styles
Hidden panels' icons will not be shown (this was caused by the wrong sequence
of FVWM styles).
Wed Jan 25 13:52:44 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Adding GDM reboot/shutdown support
Crystal will now check if GDM is installed and running, and if so, it will use
'gdmflexiserver' to shutdown or reboot the computer. If GDM is not running, or
not installed, sudo commands will be used instead. There are also new icons
for GDM login actions - starting new login nested and standalone.
Tue Jan 24 23:25:54 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Removing $[cs-panel-inactive-MiniIcon] from the colorset files
Tue Jan 24 23:24:30 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Removing $[cs-panel-inactive-MiniIcon] colorset from the recipes
I'm removing it becuse there are no "transparent" icons - this colorset was
used to colorize them.
Tue Jan 24 23:21:09 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated icon names used in recipes
Tue Jan 24 23:20:03 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated icon names in various menus
Tue Jan 24 23:17:11 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated fvwm-crystal/ icons
Almost all of the icons in 'fvwm-crystal/' directories are renamed, so they
will have the same names as those in the 'Tango' library. That way if you will
find another iconset which uses the same name specification, icon replacement
will be easier.
Sun Jan 22 23:22:02 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Adding support for XMMS, created by Michal Gorny
Thu Jan 19 19:43:08 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated 'FvwmMiniConsole' and 'QuakeConsole' for better support of Xorg's XComposite extension
Thu Jan 19 19:40:56 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updates in recipes
- adding icons in "main" FVWM-Crystal menu
- updated 'fvwm-crystal.apps' commands - directory.png has been moved to
'categories/' directory (previously in 'apps/' directory)
Thu Jan 19 19:39:44 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Added commented out settings for UTF-8 fonts in menus
Thu Jan 19 19:37:43 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated FVWM settings
- window shading steps are set to 0 for better compatibility with Xorg's
XComposite extension
- a "busy" mouse cursor will be shown while creating large menus (wallpapers,
window decorations, etc.)
Thu Jan 19 19:36:50 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated application styles
Thu Jan 19 19:33:23 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Added new application icon styles
Thu Jan 19 19:32:38 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated icons in 'ROX-Filer' wallpaper menu
Thu Jan 19 19:32:10 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated icons in 'Nautilus' wallpaper menu
Thu Jan 19 19:31:34 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated icons in 'Wallpaper' menu
Thu Jan 19 19:30:34 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Added icons in 'Preferences" menu
Thu Jan 19 19:29:58 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Added icons in 'Exit' menu
Thu Jan 19 19:29:06 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Added icons in 'Window Decorations' menu
Thu Jan 19 19:27:00 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Added icons in 'Colorsets' menu
Thu Jan 19 19:25:26 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Adding "SX" function
This function can be used to execute selected graphical application using
'gksudo' command.
Thu Jan 19 19:22:39 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Updated 'fvwm-crystal.apps' script
Thu Jan 19 19:17:01 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Changes in application database
- some application categories are renamed:
Programming -> Development
Tools -> System
- There is new application category, "Other", with applications that don't fit
to any category (or new category would be too small for them)
- 'Games' category is reorganized, there are new games from "gnome-games' and
'kdegames' packages
- 'Communication' category is merged with 'Internet'
Thu Jan 19 19:13:03 CET 2006 Maciej Delmanowski <harnir@post.pl>
* Adding new icons
- many new application icons in various sizes
- new 'category/' group, for application categories, used in
'fvwm-crystal.apps'
- new 'fvwm-crystal/' icons in various sizes, used in main Crystal menu
Tue Dec 27 18:07:35 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Activating new NumLock support in all the recipes
Tue Dec 27 17:58:52 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Updates in keyboard and mouse bindings
This patch changes the NumLock support in various places of the configuration
files:
- most keyboard and mouse bindings have been "copied" - there are now usually
2 key/mouse combinations - 1 with NumLock turned on, and 1 with NumLock
turned off
- NumLock-enabled key/mouse bindings are in separate files (mostly), so it's
easy to bring back old behaviour
- currently after turning on NumLock all but numpad keybindings still work,
numpad is "deactivated" and you can write numbers and use it in ex. Blender
as usual.
Tue Dec 27 15:03:32 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Changed 'EdgeResistance 0 0' to '0 100' in all recipes - should prevent problems with desktop switching
Thu Dec 15 23:05:00 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Commented out line that makes troubles with installation procedure; need to fix that problems with file permissions...
Wed Dec 14 01:05:55 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Updated documentation
Wed Dec 14 01:04:49 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Changes in Makefile.am, now Crystal is supposed to install cleanly, but that needs to be tested.
Wed Dec 14 01:01:31 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Added "TopDown" recipe
Wed Dec 14 00:59:55 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Added "FVWM-Crystal" menu in the main menu of "Nebulae" recipe.
Wed Dec 14 00:59:12 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Added "Clean" recipe
Wed Dec 14 00:58:39 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Cosmetic changes in some files
Wed Dec 14 00:58:14 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Added 'xmag' to the Developer Menu
Wed Dec 14 00:57:00 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Added new keyboard binding: Alt+Home moves mouse pointer to the top-left corner of the screen.
Wed Dec 14 00:48:52 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Changes in window behaviour settings
- 'Include components/functions/Window-SetPlacementPolicy' has been moved from
recipes to 'components/functions/FVWM-Crystal_Functions'. If you want to
turn off centered window placement on empty desktops, you need to edit this
file now.
- 'components/functions/Window-Remember' has been splitted into two
"versions": 'Window-Remember-ClickToFocus' works like the old
'Window-Remember' and is used in 'components/styles/FocusPolicy-MSWindows'.
New 'Window-Remember-SloppyFocus' works differently - on desktop change it
checks if mouse pointer is inside a window, if it is, this window is
focused; if not, last active window is focused instead. This behaviour is
used in 'components/styles/Focus-Policy-FVWM-Crystal' and
'FVWM-Crystal-Raise'. Also 'Include components/functions/Window-Remember'
has been removed from the recipes, it's now loaded in the style files.
- all recipes are updated.
Wed Dec 14 00:44:30 CET 2005 Maciej Delmanowski <harnir@post.pl>
* File 'components/bindings/Desktop-Basic' is splitted into three files - now you can select desktop functions in the recipes independently.
Thu Dec 8 01:00:35 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Added icons in terminal-related Preferences menus, also added xfce4-terminal, konsole and multi-gnome-terminal as supported terminals
Thu Dec 8 00:59:48 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Updated pl_PL and pl_PL.UTF-8 translation
Thu Dec 8 00:33:59 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Updated music functions
- mixer support is now separate from music player support. You can select
favourite mixer from the Preferences menu. Currently you can choose from all
supported music players (cdcd, mpd, quodlibet, xmms) or aumix.
- by default mixer is selected automatically, depending on used music player,
ie. if you haven't selected mixer manually and you use mpd, mpd's internal
volume control will be used.
- because mixer-related functions have changed names to Mixer-*, all recipes
which use it are updated.
- there is a new keybinding, Alt+Shift+/, which toggles between random and
sequential playback (normal or shuffle play).
Thu Dec 8 00:20:25 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Updated application database, icons and styles
Mon Nov 28 13:09:23 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Removed one Include from the recipe
Mon Nov 28 13:07:33 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Bugfixes in some keybindings
Mon Nov 28 13:06:44 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Added '$[FVWM_USERDIR]/locale' to LocalePath
Mon Nov 28 13:01:07 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Updated application database, added new icons and styles
- transient windows have titlebars, except of "OpenOffice.org" windows
(because of the detachable toolbars)
- "Untitled" windows have titlebar and border
Mon Nov 28 12:59:52 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Updated 'fvwm-crystal.apps' script
Tue Nov 1 00:23:59 CET 2005 Maciej Delmanowski <harnir@post.pl>
tagged 3.0
Tue Nov 1 00:21:48 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Updated de_DE translation
Tue Nov 1 00:21:02 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Adding new translation, de_DE.UTF-8
Mon Oct 31 23:04:22 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Updated 'NEWS', preparing for new release
Mon Oct 31 23:01:22 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Adding new apps, icons and window styles
Mon Oct 31 21:43:15 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Updates in the documentation
Sun Oct 30 23:01:35 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Added new icons, applications and window styles
Sun Oct 30 22:59:20 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Updates in terminal emulator preferences
Sun Oct 30 22:57:51 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Crystal now loads file ~/.fvwm/userconfig after all files and recipes (if it's present)
Sun Oct 30 21:35:13 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Updated es_ES translation
Sun Oct 30 21:34:37 CET 2005 Maciej Delmanowski <harnir@post.pl>
* Updated de_DE translation
Fri Oct 28 22:52:33 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added '~/.fvwm/wallpapers/' to the list of known wallpaper directories
Thu Oct 27 16:04:34 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Crystal now remembers wallpaper which was set using Nautilus background dialog
Thu Oct 27 15:16:13 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Changes in application database, icons and window styles
Thu Oct 27 15:15:28 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated "Nautilus" support
Thu Oct 27 15:14:34 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* 'gnome-settings-daemon' is launched using $PATH, not absolute path
Thu Oct 27 15:12:33 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated 'fvwm-crystal.apps' script
Tue Oct 25 23:24:58 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Adding new applications, icons and styles
Tue Oct 25 23:22:20 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Image-related programs are moved from /Applications/Office to /Applications/Multimedia
Tue Oct 25 23:20:59 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Removing /Applications/Internet/Usenet group, it will be moved to /Applications/Communication/Usenet
Tue Oct 25 23:17:59 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Transient windows have no titlebar (fixes problems with OO.org toolbars)
Tue Oct 25 23:17:02 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Adding "KillScript" function
Tue Oct 25 23:16:15 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Bugfix in "DarkSky" window decoration
Tue Oct 25 23:15:24 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated 'fvwm-crystal.apps' script
Wed Oct 19 22:29:33 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Adding new applications, icons and styles
Wed Oct 19 22:23:13 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added ru_RU.UTF-8 translation
Wed Oct 19 22:21:54 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated ru_RU.KOI8-R translation
Wed Oct 19 22:13:03 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated sk_SK and sk_SK.UTF-8 translations
Wed Oct 19 22:08:30 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated "Clear" window decoration
Wed Oct 19 22:03:15 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Screenshots are now .pngs with 100% quality
Wed Oct 19 21:59:08 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Bugfix in the app generator commands
- icon theme name was a fixed "Default", now it's $[Icon-Theme]
- icons from user and system directory were set in the wrong order
Wed Oct 19 21:55:33 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Adding "DarkSky" window decoration
Sun Oct 16 18:19:59 CEST 2005 Maciej Delmanowski <harnir@post.pl>
tagged 3.0.RC3
Sun Oct 16 17:40:02 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Adding Polish UTF-8 localization
Sun Oct 16 16:56:46 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Preparing for new release...
Sun Oct 16 16:13:46 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Wallpaper is again set in background, not by using InitFunction
Thu Oct 13 11:25:41 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Adding applications and icons
Thu Oct 13 11:21:11 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* $FVWM_USERDIR is set by fvwm, removing
Wed Oct 12 23:01:26 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated documentation
Wed Oct 12 22:45:40 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated Polish translation
Wed Oct 12 22:45:02 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added preferences menu for choosing desktop manager
Wed Oct 12 22:44:21 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added support for Nautilus as "desktop manager"
Wed Oct 12 22:43:01 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Bugfixes: ROX is not started again after restart, missing directory icons in wallpaper menus
Tue Oct 11 17:57:30 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Program icons on the window thumbnails are back
Mon Oct 10 21:04:12 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated fvwm-crystal.apps script
Fri Oct 7 22:04:25 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added "90% volume" in the Music menu
Fri Oct 7 20:16:59 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated installation procedure from darcs repository
Fri Oct 7 20:01:30 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Adding new recipe, "Nebulae"
Fri Oct 7 20:00:18 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated all swallowed FVWM modules, they should now have transparent background (sometimes they were black)
Fri Oct 7 19:58:29 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Separate 'components/apps/Trayer' is removed, it's contents are moved to the recipes themselves instead of being accessed by the "Include" command.
Fri Oct 7 19:54:56 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* New app panel generator (4/4): updated 'fvwm-crystal.apps' commands in all recipes
Fri Oct 7 19:50:14 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* New app panel generator (3/4): adding new Applications database
New database format is based on directories and files instead of one text
file. Basically, files are executable scripts which are launched by FVWM, so
they need to have executable bit set (or app menu will not work). Be sure to
execute command:
chmod -R +x fvwm/Applications
after installation.
Fri Oct 7 19:49:03 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* New app panel generator (2/4): updated bin/fvwm-crystal.apps script
Fri Oct 7 19:47:30 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* New app panel generator (1/4): removing old ApplicationDatabase
Fri Oct 7 19:44:37 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* New and updated window styles
Fri Oct 7 19:44:06 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* New application icons
Fri Oct 7 19:40:34 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Changes in the Exit menu
Old "Exit" menu is back due to the popular demand ;) Old, "safer" version is
still available as 'components/functions/Exit-Safe', so if you want, you can
use this one instead.
Fri Oct 7 19:39:26 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* FvwmScript-CpuTemp should now work properly with some configurations
Fri Oct 7 19:37:29 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Remove shadow effects in FvwmMPD widgets
Wed Oct 5 00:25:56 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Adding new icons in the fvwm/icons/ directory
Fri Sep 23 13:46:43 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Adding new "icon engine"
You can use it by replacing "components/desktop/Icon-Thumbnails" in your
recipe to "components/desktop/Icon-Mwm". This will create small transparent
rectangles with icons taken from Icon style and with titlebars. You can move
them around the screen, doubleclick with LMB will deiconify them, and Alt+MMB
will close them.
Fri Sep 23 13:37:51 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Changes in the icon functions
- ImagePath now points only to "theme" directory, not inside it. For example:
'$[FVWM_SYSTEMDIR]/icons/$[Icon-Theme]/'. Because of that all icon
definitions (panels, application styles) have to include additional path
with size and "type", for example: 'Style * 22x22/apps/defaulticon.png'.
- there is new default application icon, taken from Gnome default theme.
- recipes support now user-side icon directories. If you want to change for
example terminal icon, you can put it like this:
'~/.fvwm/icons/$[Icon-Theme]/22x22/apps/xterm.png'. It will be used instead
of the original one in the window styles. Currently this functionality is
not supported in the application panel/menu generator.
Fri Sep 23 11:06:42 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Moved wallpaper setup to "InitFunction", now panels should look good after startup
Thu Sep 22 21:04:58 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added 'Ish' window decoration
Mon Sep 19 21:58:05 CEST 2005 Maciej Delmanowski <harnir@post.pl>
tagged 3.0.RC2
Mon Sep 19 21:56:59 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Getting ready for 3.0.RC2 release
Mon Sep 19 21:08:09 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updates in the music functions
- New supported player, cdcd for CD Audio playing.
- New "Music-Find" function for accessing find functionality of the music
players (currently only XMMS by using XMMSFind plugin). Function is bound to
Alt+/ by default.
- When XMMS support is activated, player windows are hidden at startup and
have some other additional styles
Mon Sep 19 21:06:23 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added hsetroot support as a wallpaper setting utility
Mon Sep 19 21:03:21 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Removed "RootMenu-Insert" from the app menu generator commandline, so there won't be any errors in logs
Mon Sep 19 21:01:10 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated Russian and Slovakian translation
Mon Sep 19 20:48:28 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added new applications and icons
Fri Sep 9 11:05:13 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added 'htop' to Developer Menu
Fri Sep 9 11:04:38 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Fixed SavePreferences function
Fri Sep 9 11:02:54 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added sk_SK.UTF-8 localization
Fri Sep 9 11:02:25 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added DawnSky window decoration
Fri Sep 9 11:01:58 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added Gentoo window decoration
Fri Sep 9 11:01:33 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added Aqua window decoration
Fri Sep 9 11:01:15 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated Winter window decoration
Fri Sep 9 11:00:38 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated SystemG window decoration
Fri Sep 9 11:00:10 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated Motif window decoration
Fri Sep 9 10:59:45 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated Mist window decoration
Fri Sep 9 10:58:58 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated Fear window decoration
Fri Sep 9 10:58:22 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated Elberg window decoration
Fri Sep 9 10:57:42 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated Clearlooks window decoration
Fri Sep 9 10:56:54 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated Dawn of a Terminal window decoration
Fri Sep 9 10:55:38 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated Crystal window decoration
Fri Sep 9 10:54:11 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated Clear window decoration
Fri Sep 9 10:52:23 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Titlebar button definitions are moved to one directory, that should decrease the size of the decoration files and simplify them
Wed Aug 31 14:31:44 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated German translation
Wed Aug 31 01:17:32 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated Spanish translation
Tue Aug 30 22:14:18 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated Polish translation
Tue Aug 30 22:11:41 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Adding new preferences, "Privileged terminals"
This option let's you select if terminal windows should give away focus, when
new window is opened, or keep it (so you won't loose something that you type
into it).
Tue Aug 30 22:07:55 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Adding "SystemG" window decoration
Sun Aug 28 23:23:00 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated pl_PL translation
Sun Aug 28 23:22:30 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updates in the application database and icons
Sun Aug 28 23:21:05 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added new focus policy - "FVWM-Crystal" style with click-to-raise
Sun Aug 28 23:17:14 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added Eterm to supported terminal emulators
Fri Aug 26 00:23:56 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updates in the Polish translation
Fri Aug 26 00:18:08 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Big updates in the preferences system
- There is a new "Preferences" menu with most settings from
~/.fvwm/preferences/ directory.
- "Recipes" selection menu is moved from "Developer menu" to the new
preferences menu.
- There is new global file, components/desktop/FVWM-Crystal_Preferences, which
loads some preferences like colorsets and window decorations. Because of the
loading of these kind of preferences is removed from the recipe files.
- You can now change focus policy (FVWM-Crystal or MS Windows) "on the fly"
using the preferences menu; it's also laded in the "global" preferences
file, so inclusion of the focus policy file is removed from the recipe
files.
I hope it doesn't sound too cryptic or something :o)
Fri Aug 26 00:16:12 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added new icons and application styles
Fri Aug 26 00:13:48 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added Quod Libet support
Fri Aug 26 00:12:51 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated FvwmMiniConsole, now it looks for xterm, aterm, urxvt and mrxvt
Tue Aug 16 21:50:46 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added sample /etc/sudoers configuration
Tue Aug 16 21:29:51 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added new file-related function, Append
This function let's you read specified file from all three Crystal
directories, ordered: package-wide, system-wide, user-wide. Specified file
from all these directories is loaded (not just the first one found, like the
"Include" function does).
This is used currently in the "preferences/Startup" file (so now system
administrator can add specified commands to be executed at startup, and at the
same time users can add their own commands, which also will be executed) and
in the application styles and icons.
Tue Aug 16 20:52:28 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added new applications and icons
Tue Aug 16 20:18:50 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added/removed gnome-terminal from respective FvwmIconMans in "Default" recipe
Tue Aug 16 20:16:56 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated the clock script
Now you can click on the clock to show the current date (dd/mm). Click again
and time will be shown again
Tue Aug 16 20:13:39 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added new FvwmScript scripts with ACPI-related functions
They were provided by LiNiO. Included are:
- battery monitor (FvwmScript-AcpiBatt)
- CPU frequency monitor (FvwmScript-CpuFreq)
- CPU temperature monitor (FvwmScript-CpuTemp)
There is also included modified "Default" recipe with embedded panels using
the new scripts.
Tue Aug 16 20:13:04 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added "Maximize" function to the "metacity-like" window menu
Tue Aug 16 20:12:11 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added missing "button model" preferences file
Tue Aug 16 20:11:01 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updates in the documentation and comments
Tue Aug 16 20:09:02 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added Slovakian translation
Tue Aug 16 00:43:14 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated Polish translation
Tue Aug 16 00:42:22 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added "Dawn of a Terminal" window decoration
Tue Aug 16 00:40:44 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added "Winter" window decoration
Tue Aug 16 00:40:00 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added "Motif" window decoration
Tue Aug 16 00:39:21 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added "Mist" window decoration
Tue Aug 16 00:38:38 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added "Fear" window decoration
Tue Aug 16 00:37:45 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added "Elberg" window decoration
Tue Aug 16 00:36:26 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added "Clearlooks" window decoration
Tue Aug 16 00:34:49 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added "Clear" window decoration
Tue Aug 16 00:31:21 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added "Crystal" window decoration
Tue Aug 16 00:19:42 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added new window decorations "engine"
Now you can select the button model of a windows titlebars. Currently there
are five button models supported:
- FVWM-Crystal (two close buttons, buttons with multiple functions)
- MS Windows (iconify/maximize/close on the right side, menu on the left)
- MacOS X (all buttons on the left side)
- OS/2 (close on the left size, iconify/maximize on the right)
- NeXTStep (iconify on the left, close on the right)
Button model is selected from the "Window decorations" menu.
Tue Aug 16 00:10:16 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Removing old window decorations, they will be re-added in the new format in the future
Sat Aug 6 22:40:32 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* New version of components/desktop/Numpad, which automatically raises windows upon focusing
Sat Aug 6 22:39:47 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added system-wide directories for selecting random wallpaper from the diamond icon (using RMB)
Sat Aug 6 22:37:48 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* OverrideGrabFocus styles fro terminal emulators is moved to a separate file, so it can be easily turned off (in components/desktop/FVWM-Crystal_Styles)
Sat Aug 6 22:14:48 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated Polish translation
Sat Aug 6 22:12:18 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated music volume change functions on the panels, for compatibility with XMMS
Sat Aug 6 22:11:23 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added a "debug" line at the end of the 'config' file, for config editors
Sat Aug 6 22:10:38 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Xinerama: updated menu position variables
Sat Aug 6 22:08:57 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated "Exit" menu
Now you need to select a submenu entry instead of "main" Exit menu entry to
perform dangerous actions, such as logout or reboot the computer.
Sat Aug 6 22:00:06 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* New applications and their icons
Sat Aug 6 21:55:25 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* New keybindings for keyboards without numeric part
These bindings can be useful on notebook/laptop keyboards:
Alt + minus raise window
Alt + Shift + minus lower window
Alt + equal maximize
Alt + Shift + equal fullscreen
Alt + backspace iconify
Alt + Shift + backspace close
Thu Jul 28 19:20:03 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added files for desktop switch using the mouse wheel on the desktop
Thu Jul 28 14:33:27 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated pl_PL locale
- new strings for vertical desktop support (lower, upper, etc.)
- added strings for "Applications" and "Music" (menu entries)
Thu Jul 28 14:32:51 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* New recipe, "Clean vertical"
Thu Jul 28 14:31:53 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added some functions for vertical desktop support
Thu Jul 28 14:20:21 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Moved the dock a little down
Thu Jul 28 14:17:03 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updates in the decorations
Window decorations have now the same name, "WindowDecoration"; this should
eliminate problems with decorations when they are changed many times.
Also window decorations support now vertically-aligned desktop pages, so you
can move them up or down, instead of left or right
Thu Jul 28 14:15:50 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added support for horizontal/vertical desktop pages in window decorations
Wed Jul 27 16:27:58 CEST 2005 Maciej Delmanowski <harnir@post.pl>
tagged 3.0.RC1
Wed Jul 27 16:27:16 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added one more icon.
Wed Jul 27 11:49:36 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* New application icons and apps in the database
Tue Jul 26 22:55:50 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated Makefile.am, forgot about the scripts inside fvwm/ directory
Tue Jul 26 19:37:07 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* New applications in the database, updated icons
Tue Jul 26 17:09:33 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Change of the version, from 3.0 to 3.0.RC1
Tue Jul 26 16:58:15 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* 'ADOM' in the ApplicationDatabase is shown even if it's not installed. I've commented it out until that's repaired.
Tue Jul 26 16:46:40 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Update in the NEWS file
Mon Jul 25 17:51:27 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Slight change in the 'Dock' recipe, panel should now always swallow pager and clock windows
Mon Jul 25 11:44:46 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added TODO file, updates in the application database, new applications, FindCommand file renamed to FindFunctions
Mon Jul 25 11:41:55 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* NEWS file, setting the version to "3.0" for compatibility with Gentoo ebuilds
Sat Jul 23 11:33:43 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* New applications in the database
Sat Jul 23 10:43:40 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updates in the 'fvwm-crystal.wallpaper' script, dependencies change
Sat Jul 23 06:44:33 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Changes in the music functions
- new "component" called 'Music-xmms', which contains functions for
controlling XMMS player
- 'Music-MPD' changed to 'Music-mpd', there were also some changes in the
functions for better compatibility with XMMS
- new preferences file, 'DefaultMusicPlayer', it's loaded from the recipe,
selects mpd or xmms by default (can be overriden by administrator or user)
Sat Jul 23 04:37:57 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added the MPD playlist editor created by TheBlackDragon
There is no locale support right now.
Sat Jul 23 03:41:03 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added "random wallpaper" support for ROX-Filer
Sat Jul 23 03:37:39 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* New 'fvwm-crystal.wallpaper' script written in Python
Thu Jul 21 22:18:57 CEST 2005 Nicolas Vilz 'niv' <niv@iaglans.de>
* little change in german localization according to harnir
Thu Jul 21 21:20:40 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added the menu option which shows currently played track (by: Nicolas Vilz <niv@iaglans.de>
Thu Jul 21 20:49:25 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added OpenOffice.org 2 to the database
Thu Jul 21 20:28:52 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added the autotools files, changes in the installation instructions
Thu Jul 21 20:26:55 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added new applications, some changes in application priorities
Thu Jul 21 15:47:12 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* "Random wallpaper" function restored, using separate Perl script
Wed Jul 20 16:45:23 CEST 2005 Nicolas Vilz 'niv' <niv@iaglans.de>
* german localization for fvwm-crystal
Wed Jul 20 17:22:31 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* New applications in the database, icons and styles
Tue Jul 19 22:33:30 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Changed $FVWM_CONFIGDIR to $FVWM_SYSTEMDIR
Now there are 3 directories in which configuration is searched (from top to
bottom):
- user directory: $FVWM_USERDIR = ~/.fvwm/
- "administrator' directory: $FVWM_CONFIGDIR = /etc/X11/fvwm/fvwm-crystal
- system directory: $FVWM_SYSTEMDIR = $. (current directory at the startup of
FVWM)
In "admin" directory you can keep the configuration for all users on your
system, for example select default wallpaper, and so on.
Variable is updated everywhere, you may need to update your recipe(s) or files
that you have changed in '~/.fvwm/'.
Tue Jul 19 21:56:23 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updates in the ApplicationDatabase and application styles, new and updated icons
Tue Jul 19 21:51:51 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added new recipe, "Dock"
Recipe makes a desktop panel similar to XFCE or CDE panel. There are also new
16x16 icons and new clock script, used in this recipe.
Tue Jul 19 21:49:56 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Russian locale were put in wrong directory, fixed.
Tue Jul 19 21:48:29 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Icon thumbnails are now automatically restored after a restart
Tue Jul 19 21:39:49 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added 'IconOverride' style for all windows
Tue Jul 19 21:13:19 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Removed separate Icon styles, they are now in the recipes
Tue Jul 19 21:04:43 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Rewritten folding in the recipes
All fold marks in the recipe files were redefined, now they look cleaner. Also
I've added vim modeline, which automatically activates the folding in those
files.
Icon styles are moved from separate file to recipes themselves.
Tue Jul 19 21:03:21 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Cleanup of 'fvwm/config' file
Tue Jul 19 21:01:23 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated 'fvwm-crystal.apps' script
Tue Jul 19 20:32:34 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated 'fvwm-crystal' initialization script, getting ready for a Makefile
Sat Jul 16 18:03:06 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Adding Russian translation (ru_RU.KOI8-R)
Wed Jul 13 21:30:21 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added directory.png as the directory icon in wallpaper menu
Wed Jul 13 21:25:30 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updated application database, new application icons and styles
Many new applications added to the database, everyone has a corresponding
icon, there are also styles for them included.
ApplicationDatabase was completely rearranged, you can use folding in vim for
navigation. Also app groups are rearranged.
Wed Jul 13 21:13:03 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Cleanup (missing "+ I")
Sun Jul 10 19:37:08 CEST 2005 liori@interia.pl
* User-defined configuration storage path.
Mon Jul 11 12:37:29 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added new configuration options in FvwmIconMans introduced in FVWm 2.5.13
Sun Jul 10 20:05:51 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Updates in ApplicationDatabase, application icons and styles
I've added many missing icons, also some Styles (but not all). Some
applications were removed from the database. There is also new icon size,
48x48, for big panels (however it's not full, just a few icons right now).
Fri Jul 8 23:54:45 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added support for gkrellm2 style
Fri Jul 8 20:23:19 CEST 2005 Nicolas Vilz 'niv' <niv@iaglans.de>
* thunderbird-icons-in-pager
Altered style names in Application-Icons and Applications so that Thunderbird
is not that X-Icon in Pager.
Fri Jul 8 17:31:10 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* FvwmConsole and QuakeConsole bindings are moved to components/desktop/Keyboard
Fri Jul 8 10:29:58 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Added 'cat_default.png' icon for fvwm-crystal.apps script
Fri Jul 8 00:18:46 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Main configuration file name reverted back to old 'config' instead of 'fvwm-crystal.config'
Fri Jul 8 00:08:58 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* XScreenSaver is now started from StartFunction
Thu Jul 7 23:32:06 CEST 2005 Maciej Delmanowski <harnir@post.pl>
* Initialization of the darcs repository
|