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
|
commit 166a3c2387040dadf9ced8d644317875f7b88c02
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Wed Oct 26 21:49:32 2022 +0300
Release 0.5.1
commit 2ada77c78f7a39bc27ccba7548684ec838c67735
Author: Anonymous <noreply@xfce.org>
Date: Wed Oct 26 00:49:16 2022 +0200
I18n: Update translation ru_RU (100%).
41 translated messages.
Transifex (https://explore.transifex.com/xfce/).
commit 962895d736a08a631a5a152176d1bd00d63fcc1a
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Mon Oct 24 20:32:17 2022 +0300
configure.ac.in: Make Python optional
commit f28cee55e0d731975dcae07503aad288404a0f3e
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Mon Oct 24 17:24:19 2022 +0000
themes: Include generated images to dist tarball
commit 6fbb8dd3f94b4370b9005a6cb88d336226d3019e
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sat Oct 22 14:51:21 2022 +0300
buttons: Include generated wckbuttons-dialogs_ui.h to dist tarball
commit 6d9907c53ce1e0b55157172f769d57e5652d3146
Author: Anonymous <noreply@xfce.org>
Date: Thu Oct 20 12:51:23 2022 +0200
I18n: Update translation tr (100%).
41 translated messages.
Transifex (https://explore.transifex.com/xfce/).
commit 1f58854d27376752f18c739839fdbc5320e62784
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Wed Oct 19 20:35:18 2022 +0000
Remove redundant widgets from settings dialogs
commit ba76f4008088d2b43b95b6e3a748f35786d3b3ca
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Tue Oct 18 22:16:33 2022 +0300
buttons: Actually use load_theme parameter
commit a2c3c0e323b0cac4c054627917c44b297e7fa46a
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Mon Oct 17 17:57:52 2022 +0000
Update configure.ac.in
* Use git version tag
* Update project url
commit 1ea26aea6fd041689fd3fa4bf2844deb461629e3
Author: Akbarkhon Variskhanov <akbarkhon.variskhanov@gmail.com>
Date: Sun Oct 16 17:15:24 2022 +0500
Update README consistent with common template
commit 84e768b4b8dc949230a7d405dbfe614f94c43ee7
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sat Oct 15 19:32:52 2022 +0300
Reduce scope of variables
Also fix some indentation.
commit 7900e21187aba55a57dc20ae4ccd25d0fa5f2d8e
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Fri Oct 14 23:36:31 2022 +0300
Use WNCK_DEFAULT_ICON_SIZE
instead of custom XFCE_PANEL_SMALL_ICON_SIZE
commit 2a7d489d205425cc2c46415bc8ba0c6e1101c614
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Wed Oct 12 17:26:14 2022 +0300
Move common default settings to wck-plugin
commit 8d61d9f7557cc908bb5a8e151c8f0c6839d2d8e0
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Wed Oct 12 17:16:48 2022 +0300
buttons: Deduplicate layout filter condition
commit 99e91b9c204ba999207523195be164965fa3e02e
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Wed Oct 12 15:55:48 2022 +0300
Simplify *_settings_load
If rc is NULL xfce_rc_read_* returns fallback value.
commit f62327a6bdf5701dda349d2d9c68e090d45fb1c8
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Wed Oct 12 15:15:40 2022 +0300
title: Deduplicate width widgets disabling
commit f7d4412e20ade0d7d54e8a655e1f7974b0983bce
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Mon Oct 10 10:56:11 2022 +0000
utils: Ignore libwnck deprecation
commit 19a4d696f4dea30fe25609977e4ff3eaa221a517
Author: Anonymous <noreply@xfce.org>
Date: Mon Oct 10 09:49:36 2022 +0200
I18n: Update translation sl (100%).
41 translated messages.
Transifex (https://explore.transifex.com/xfce/).
commit f7a9238abc5792d3347eecef3b9edab92404916c
Author: Anonymous <noreply@xfce.org>
Date: Tue Oct 4 14:32:02 2022 +0200
I18n: Update translation ru_RU (100%).
41 translated messages.
Transifex (https://explore.transifex.com/xfce/).
commit e21069e4644dbe56f11d0a709b8c158026f556d2
Author: Anonymous <noreply@xfce.org>
Date: Tue Oct 4 14:32:01 2022 +0200
I18n: Update translation ru (100%).
41 translated messages.
Transifex (https://explore.transifex.com/xfce/).
commit 77708c083ad29d28150349b58e1c4c2af32ecf50
Author: Akbarkhon Variskhanov <akbarkhon.variskhanov@gmail.com>
Date: Mon Sep 26 20:02:57 2022 +0000
Add icon for wckmenu-plugin
commit e30cc450d3929cca85a7c8c7997f5f84d226786c
Author: Akbarkhon Variskhanov <akbarkhon.variskhanov@gmail.com>
Date: Mon Sep 26 18:05:23 2022 +0000
Delete TODO
commit cb66fbda1ceb92aac17141fe882e7103d8ba8ea1
Author: Ivica Kolić <ikoli@yahoo.com>
Date: Mon Sep 26 12:57:42 2022 +0200
I18n: Add new translation hr (51%).
21 translated messages, 20 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 56136cbf4f5c696ee1cf02dfa3133b8cfa178bd0
Author: Akbarkhon Variskhanov <akbarkhon.variskhanov@gmail.com>
Date: Sun Sep 25 22:07:41 2022 +0500
Minor fixes
commit 5e7671a4c6610c4966b268d40e2a8470ab6fc804
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sat Sep 24 14:54:53 2022 +0300
Turn Window Applets to link
commit b7ee168e14a16e9547c5bfd61ee72d75933ad71c
Author: Anonymous <noreply@xfce.org>
Date: Tue Sep 20 00:54:50 2022 +0200
I18n: Update translation ru_RU (87%).
36 translated messages, 5 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 6c1a185c1574e0f1ce83fa65c5c7f159d2887090
Author: Anonymous <noreply@xfce.org>
Date: Tue Sep 20 00:54:50 2022 +0200
I18n: Update translation ru (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 7da183db78299ac070cadb5a2d2efa19d74c9239
Author: heskjestad <cato@heskjestad.xyz>
Date: Sun Sep 18 00:54:49 2022 +0200
I18n: Update translation nb (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit dd8cb7dd76c3e19344fd16f650385eb456a65b13
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sat Sep 17 15:40:18 2022 +0300
menu: Fix window icon
commit 88eb179adbbe6aa9042227dd28c9c0ef97fdf0f0
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sat Sep 17 14:25:54 2022 +0300
Simplify get_ui_color
commit 57461e28235bac75e3df97398742877a252d6200
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sat Sep 17 14:11:57 2022 +0300
Update .gitignore
Add Python compiled files, JetBrains IDE dir, QtCreator dirs,
po/.intltool-merge-cache.lock.
Remove Arch Linux and Debian build dirs.
commit f4ee80e5bb4b59b9c642643d75ac1b3e61aba725
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sat Sep 17 13:57:33 2022 +0300
Add support for reload menu plugin
commit f05c9804cc9a91da4d38f0ca88cdf1e69382ba9d
Author: Саша Петровић <salepetronije@gmail.com>
Date: Sat Sep 17 12:58:10 2022 +0200
I18n: Update translation sr (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit cb576fba3c344985d20c77257dfb9848e34e9c2e
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sat Sep 17 13:52:46 2022 +0300
menu: Fix prefs icon
commit 5ad887135adeeb0d679ebb338d963b087d5366ba
Author: Luna Jernberg <bittin@cafe8bitar.se>
Date: Mon Sep 12 00:55:14 2022 +0200
I18n: Update translation sv (97%).
40 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit fcce1c685db6f0654bffc44c84de1c8c66f3de75
Author: Elishai Eliyahu <elishai@mailfence.com>
Date: Sun Sep 11 00:54:55 2022 +0200
I18n: Update translation he (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit b1c076b2c98173f7eb77bd971963fe23d64ae7c6
Author: Anonymous <noreply@xfce.org>
Date: Sun Sep 11 00:54:55 2022 +0200
I18n: Update translation fr (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 2d7d335c58a8afa08be242385dffbba3ce77c8ad
Author: Akbarkhon Variskhanov <akbarkhon.variskhanov@gmail.com>
Date: Sat Sep 10 12:34:45 2022 +0000
Unify critical messages in dialogs
Fix minor typos.
commit 75e8add87ee5c622f650cc7250644412381db0cf
Author: Michał Górny <mgorny@gentoo.org>
Date: Sat Sep 10 11:15:47 2022 +0200
Add Python check to configure script
- Detect the presence of Python 3.7 and error out correctly if it is not
available
- Enforce using the correct Python executable for generator.py
commit 496e105c43f03f8f82dd7c178954b8b00bd55ef6
Author: Anonymous <noreply@xfce.org>
Date: Sat Sep 10 00:54:46 2022 +0200
I18n: Update translation ru (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 4d5436805e302bf60c108fd6c82dc7ac67992fd1
Author: Besnik Bleta <besnik@programeshqip.org>
Date: Thu Sep 8 00:54:28 2022 +0200
I18n: Update translation sq (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit a8eeb42240dc119fb5f905554a66b38e75374e7d
Author: Anonymous <noreply@xfce.org>
Date: Wed Sep 7 00:54:33 2022 +0200
I18n: Update translation lt (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 1b20845cdac67ca07d65572413234f21e2161be9
Author: Andreas Eitel <github-aneitel@online.de>
Date: Wed Sep 7 00:54:33 2022 +0200
I18n: Update translation de (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f8c25fe5837880b1f7fce52ca6e48e96fabdcb84
Author: 玉堂白鹤 <yjwork@qq.com>
Date: Tue Sep 6 12:57:57 2022 +0200
I18n: Update translation zh_CN (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 0cfe5853ae0620da4a041c999a3b68cbf25419bb
Author: Pjotr <pjotrvertaalt@gmail.com>
Date: Tue Sep 6 12:57:57 2022 +0200
I18n: Update translation nl (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 16707090be0f2dffc307436dbd0471212ff77d1e
Author: UTUMI Hirosi <utuhiro78@yahoo.co.jp>
Date: Tue Sep 6 12:57:57 2022 +0200
I18n: Update translation ja (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit ba556f283c39cc5cc0b522c87f54a2ed0c5ac20e
Author: Joel Barrios <darkshram@gmail.com>
Date: Tue Sep 6 12:57:57 2022 +0200
I18n: Update translation es (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 710ee6aec02991f53c1486ee840c04f56c055e9c
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date: Tue Sep 6 00:54:20 2022 +0200
I18n: Update translation pt (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit b3eb41587af88361ea34db08cf9ff7bdd8ae28c1
Author: Emanuele Petriglia <transifex@emanuelepetriglia.com>
Date: Tue Sep 6 00:54:20 2022 +0200
I18n: Update translation it (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit c33341314e7c2ad8e04acb6723103c21c8830249
Author: 黃柏諺 <s8321414@gmail.com>
Date: Mon Sep 5 12:57:00 2022 +0200
I18n: Update translation zh_TW (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit b1760816213193de804c7434d8e3d3bc1e2458c7
Author: Nick Schermer <nick@xfce.org>
Date: Mon Sep 5 12:56:59 2022 +0200
I18n: Update translation zh_CN (95%).
39 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 58ddae9f1eedfe8e7c2ef5cf21e3061cf65f58e2
Author: Nick Schermer <nick@xfce.org>
Date: Mon Sep 5 12:56:59 2022 +0200
I18n: Update translation uk (95%).
39 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit bf70b82ed37ad6ed168dd0135627f82272a8af5f
Author: Necdet Yücel <necdetyucel@gmail.com>
Date: Mon Sep 5 12:56:59 2022 +0200
I18n: Update translation tr (95%).
39 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f4fb389aa3196749a0ef40eed786b302a7dfb68f
Author: Påvel Nicklasson <pavel2@frimix.se>
Date: Mon Sep 5 12:56:59 2022 +0200
I18n: Update translation sv (90%).
37 translated messages, 4 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit eed33b8e6ee5697bd56d215f37aa9a1df0116451
Author: Саша Петровић <salepetronije@gmail.com>
Date: Mon Sep 5 12:56:59 2022 +0200
I18n: Update translation sr (95%).
39 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 9c7f28069872637c6d6aaf58cfa4f4a5ecffa440
Author: Besnik Bleta <besnik@programeshqip.org>
Date: Mon Sep 5 12:56:59 2022 +0200
I18n: Update translation sq (95%).
39 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 5802c425e074520f4ad500d49e5a433d11237b3b
Author: Arnold Marko <arnold.marko@gmail.com>
Date: Mon Sep 5 12:56:59 2022 +0200
I18n: Update translation sl (95%).
39 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 3ef32030036cab67449e6252beea927867601673
Author: Jan Ziak <0xe2.0x9a.0x9b@gmail.com>
Date: Mon Sep 5 12:56:59 2022 +0200
I18n: Update translation sk (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 4f79fccbb4c3329bf6766ab1a8e081e08a76d506
Author: Xfce Bot <transifex@xfce.org>
Date: Mon Sep 5 12:56:59 2022 +0200
I18n: Update translation ru_RU (87%).
36 translated messages, 5 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit c013e042ffce26c65cb37b2fd5398ce8c96a70f2
Author: Nick Schermer <nick@xfce.org>
Date: Mon Sep 5 12:56:58 2022 +0200
I18n: Update translation ru (95%).
39 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 64b4a9410a68ec8ec52dee0fe13f61724e085129
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date: Mon Sep 5 12:56:58 2022 +0200
I18n: Update translation pt (95%).
39 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 77276f820e97630411d267b3ca4ba002a889169d
Author: Nick Schermer <nick@xfce.org>
Date: Mon Sep 5 12:56:58 2022 +0200
I18n: Update translation pt_BR (95%).
39 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 86e1542357d585537691dfe7c02b8dddb1e91b32
Author: Anonymous <noreply@xfce.org>
Date: Mon Sep 5 12:56:58 2022 +0200
I18n: Update translation pl (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 75f776a64e454b460a2afd927970afbd934a41be
Author: Pjotr <pjotrvertaalt@gmail.com>
Date: Mon Sep 5 12:56:58 2022 +0200
I18n: Update translation nl (95%).
39 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit d7ffe6dbd95579ba92538366f05801e24b19f0e2
Author: Harald H <haarektrans@gmail.com>
Date: Mon Sep 5 12:56:58 2022 +0200
I18n: Update translation nb (95%).
39 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 650163f3bf217bfcecedefecc6aaa549c32f08ba
Author: abuyop <abuyop@gmail.com>
Date: Mon Sep 5 12:56:58 2022 +0200
I18n: Update translation ms (95%).
39 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 19c98c8878e73bc65dd55976ac36d68dde1a433a
Author: Anonymous <noreply@xfce.org>
Date: Mon Sep 5 12:56:58 2022 +0200
I18n: Update translation lt (95%).
39 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit ff68bcaa970f7c2367bf94bcfcf2d4aeb00c103d
Author: Nick Schermer <nick@xfce.org>
Date: Mon Sep 5 12:56:58 2022 +0200
I18n: Update translation ko (95%).
39 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit b699cf34135bee4394c3a1ab31aad4176b2e6d89
Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date: Mon Sep 5 12:56:58 2022 +0200
I18n: Update translation ja (95%).
39 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 550ba0354f7989d16ae0f4ecb2a8c125f2a08f77
Author: Nick Schermer <nick@xfce.org>
Date: Mon Sep 5 12:56:57 2022 +0200
I18n: Update translation it (95%).
39 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 3269de6132950e1895ecebf47256720fb8e7aad8
Author: Anonymous <noreply@xfce.org>
Date: Mon Sep 5 12:56:57 2022 +0200
I18n: Update translation ie (65%).
27 translated messages, 14 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 9038e20aea6c41c6d3a032c98cc6690a1929494d
Author: Omer I.S <omeritzicschwartz@gmail.com>
Date: Mon Sep 5 12:56:57 2022 +0200
I18n: Update translation he (95%).
39 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 73b62f395404262a14e8c91a65e2eacf6d10ccd2
Author: Anonymous <noreply@xfce.org>
Date: Mon Sep 5 12:56:57 2022 +0200
I18n: Update translation fr (95%).
39 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 635c4392b2402f712f245fd501916f1481d90cb5
Author: Priit Jõerüüt <transifex@joeruut.com>
Date: Mon Sep 5 12:56:57 2022 +0200
I18n: Update translation et (85%).
35 translated messages, 6 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 879b315c5dd0372e227eb814f71be3c889b6426b
Author: Nick Schermer <nick@xfce.org>
Date: Mon Sep 5 12:56:57 2022 +0200
I18n: Update translation es (95%).
39 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 7a4185d2c16c44440062d2f69287eb8503247ddd
Author: Tobias Bannert <tobannert@gmail.com>
Date: Mon Sep 5 12:56:57 2022 +0200
I18n: Update translation de (95%).
39 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 27b41b8bb720e9951945f6412bc915ec8f20a3d9
Author: Anonymous <noreply@xfce.org>
Date: Mon Sep 5 12:56:57 2022 +0200
I18n: Update translation cs (95%).
39 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit b1a6489d09921b920a7b78789e2bb6521faa4937
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date: Mon Sep 5 12:56:57 2022 +0200
I18n: Update translation bg (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit aa14a80d810056127c1c294cdbe29fe2614e613b
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sun Sep 4 19:42:50 2022 +0300
Release 0.5.0
commit d8631965480811c3b00d1ada7433ce7262a41740
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sun Sep 4 18:44:38 2022 +0300
readme: Fix typo
commit 36828830a89eeca00cd09b1cda781d82981ea983
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sun Sep 4 15:31:03 2022 +0000
Move Window Menu to its own plugin
commit 8d66649e9e683703d699b57a499a3dc94d6805a3
Author: Akbarkhon Variskhanov <akbarkhon.variskhanov@gmail.com>
Date: Sat Sep 3 12:23:35 2022 +0500
Remove the debian directory
Debian packaging is done downstream. Most files are wrong or old anyway.
commit 448ce38454094c295f16a1ff90394a334dbfc8e1
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Mon Aug 29 19:35:10 2022 +0000
Fix deprecation warnings
* Replace gtk_font_button_[gs]et_font_name with gtk_font_chooser_[gs]et_font
* Replace gtk_widget_modify_font with gtk_label_set_attributes
* Replace gtk_misc_set_alignment with gtk_label_set_[xy]align
* Remove GtkAlignment
* Replace GtkArrow with pan-down-symbolic image
* Replace gtk_menu_popup with gtk_menu_popup_at_widget
* Replace gtk_widget_override_color with CSS
commit e8ab1199680450718a753b0ed59c20ed35ee2c70
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sun May 15 18:10:16 2022 +0300
Replace ImageMagick convert with pure Python xpm2png
png.py module is from PyPNG library
https://github.com/drj11/pypng
commit 75d9344f7069f14b09edd72647911e029bdba757
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sun Jun 19 16:40:43 2022 +0300
Cleanup build_properties_area a little
* add wck_dialog_get_widget to deduplicate
* add NULL checks for some widgets
* reduce scope of widget variables
commit ca517831dcaf8dd3be3044c289f43b5b9a29276f
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sat Jun 18 20:45:49 2022 +0300
title: Cleanup on_icon_changed() a little
commit 5fcaafb120ddb128225ad7a5c4f4872d4265b8a5
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sat Jun 18 20:24:17 2022 +0300
Cleanup on_name_changed() a little
commit c3c7b4c080c7822f9e4136745077d9805247f2bd
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sat Jun 18 19:20:40 2022 +0300
Deduplicate button handlers
commit 4b82d3da259f34074966ef09945e5a60c4b605c2
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sat Jun 18 17:49:15 2022 +0300
Use WBImageState instead of gboolean
commit 2caae234229471455fec3140045e756a61d5725e
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sat Jun 18 17:34:19 2022 +0300
buttons: Simplify on_control_window_changed
commit 50e1315ebe894fd47a58c7fc8518566a8ab4e341
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Fri Jun 17 23:03:16 2022 +0300
Make buttons array of constant known size
commit 5ca692276a48d7d6f5c9ba53e616340b0612b3e7
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Fri Jun 17 22:28:19 2022 +0300
Use WBImageState instead of gushort
commit e866fccac810d2c1fc571232507f7fdf746fb503
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Fri Jun 17 21:47:27 2022 +0300
Simplify gdk_rgba_parse() call
commit 2db43c9103b3214964b345f3614b7f3c0890d271
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sat Jun 11 14:24:32 2022 +0300
Unify include guards style
commit 699833443c8cbf1ec7107a9872600b06953b0157
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sat Jun 11 14:12:49 2022 +0300
Add function to check if WnckWindow is Desktop
commit 0ab3b3a367da8b44dbbe750584ad855eec7d4b14
Author: Nick Schermer <nick@xfce.org>
Date: Sat Jun 11 00:54:26 2022 +0200
I18n: Update translation pt_BR (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit b1a5944713cba67b8c309a6bfc058a54911290f2
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Fri Jun 10 21:51:15 2022 +0000
Remove not common modules from common
* Move theme to panel-plugin/buttons
* Move ui_style to panel-plugin/title
commit b2fb93d4058844ea8a6e49f05a6dbe6d95d4b712
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Fri Jun 10 21:12:28 2022 +0000
Remove unused symbols
commit 1b4134465ac00f7e3eedece907559fab5f484d3d
Author: Akbarkhon Variskhanov <akbarkhon.variskhanov@gmail.com>
Date: Fri Jun 10 18:32:40 2022 +0000
Fix typos
* Change "controled" to "controlled"
* title: change size mode FIXE to FIXED
commit c5a4bd74072229dbf1433b53f3cd9b0e1da120e1
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Fri Jun 10 01:00:12 2022 +0300
Drop common/mypixmap.[ch]
It had only one function which was used only in wckbuttons-theme.c
commit a957d3aedd08d7f5b790a838fa606614353cf091
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Thu Jun 9 21:35:07 2022 +0000
Set title padding
Also move local defines from header.
commit ba3bb1b27ca8ac6d6ced0cebb3de0cc54eaf9731
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Fri Jun 10 00:12:47 2022 +0300
Use plugin icon in preferences dialog
commit 42a35c46f3f0933c2f14dfdb0479ed311e914c73
Author: Akbarkhon Variskhanov <akbarkhon.variskhanov@gmail.com>
Date: Thu Jun 9 06:08:00 2022 +0000
Fix title showing on desktop
* Fix win->controlwindow never being handed to win->activewindow for desktop
* Add protection against cases when active window is 0x0 (which causes SEGV)
commit d1ad2d1e9795977a464fb9edd1d475338ae5f5b3
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Tue Jun 7 23:11:40 2022 +0300
Update gnome-look.org url
commit 24890e256265ccc2057525bd4e7b8e205ade6852
Author: foobarbyte <61650320+foobarbyte@users.noreply.github.com>
Date: Fri Jun 26 07:07:55 2020 +0000
Fix crash on closing last active window.
When on_name_changed is called, controlwindow may refer to a window that has been closed. If so, this leads to is_window_on_active_workspace_and_no_other_maximized_windows_above causing a segmentation fault when top_window turns out to be NULL. Since we would like to clear the displayed window title in this case, we should first check whether controlwindow refers to a closed window. It makes sense to do this where we already check if it is NULL or if it refers to the Desktop. We can check this by determining whether the window has a valid PID using wnck_window_get_pid.
commit 11fb5e96a384fc131410444d89d3a0ab78e46f97
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Tue Jun 7 21:15:58 2022 +0300
Simplify reloadPlugins.sh
commit 793d5d5f9e5e65dbd482127974033e292f69eace
Author: Саша Петровић <salepetronije@gmail.com>
Date: Sun Jun 5 00:54:35 2022 +0200
I18n: Add new translation sr (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 7ff70be2ffd36bc8c8cafed2583d4fadf4910c10
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Fri Jun 3 01:05:00 2022 +0300
Fix buttons sensitivity on configure dialog creation
commit 83ebde7f2f5dad26fde6c6ee3cf367d80e45614f
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Thu Jun 2 21:18:37 2022 +0000
Move some common functions to wck-plugin
* Add common configure response callback
* Add common save settings function and use it in configure response
* Add common load settings function
commit 6d45041ff3e8c63e24cce0efebf2562957d28fc1
Author: Arnold Marko <arnold.marko@gmail.com>
Date: Wed Jun 1 12:57:41 2022 +0200
I18n: Add new translation sl (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 32e7b9029f668111688bd7a859b9d573be2119d9
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Tue May 31 21:36:50 2022 +0000
Cleanup windowck_new
* Make create_icon() return WindowIcon and rename to window_icon_new
* Avoid reordering, pack icon depending on prefs
* Remove redundant label variable
* Rename create_symbol to reset_symbol
commit d1e8e490c0411feb4232b477e7a8ff4c401d86de
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Tue May 31 22:59:40 2022 +0300
Remove redundant argument
First argument of create_symbol() is always wckp->prefs->show_app_icon.
commit 41168560390b1f5bb9c08fc42a0ca7ed7329e1cf
Author: Priit Jõerüüt <transifex@joeruut.com>
Date: Thu May 26 00:55:17 2022 +0200
I18n: Add new translation et (90%).
37 translated messages, 4 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 73fa505bc74e10dd8c93e56ee0b80d1948750e1d
Author: Nick Schermer <nick@xfce.org>
Date: Tue May 24 00:55:39 2022 +0200
I18n: Update translation it (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 916247b0a5faff3395403843617c77468fd0713e
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sun May 22 18:22:55 2022 +0300
Remove unused preferences
commit 301cdbbe8459752f3b46f520b782a2a81d9afe71
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Thu May 19 20:23:19 2022 +0000
Update properties widgets
* Bump required GTK version to 3.22
* Remove GtkAlignment
* Replace GtkTable with GtkGrid
commit 6ee3de73c29a0e276870c7cf820f58214115288f
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sun May 15 15:00:11 2022 +0000
Modernize generator.py scripts
* use f-strings
* use `subprocess` and `shutil` instead of `os.system`
* use `enumerate` instead of `range(len)`
* remove unused functions
* deduplicate code
commit 78d0dc70e890a1d4eb1fd1f1ece2fd471ab34983
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sun May 15 12:36:29 2022 +0300
Fix make distcheck
commit 7c0602274c93a49d16296e8c91fc96e72f5ff775
Author: Anonymous <noreply@xfce.org>
Date: Sat May 14 00:55:37 2022 +0200
I18n: Add new translation ie (68%).
28 translated messages, 13 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit d4ef213125ff852b4ba75a887f653482b9969421
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Thu May 12 22:32:54 2022 +0300
Fix markdownlint warnings and typos
commit 1a6c74d63066dc5447229773938711e72179f6c4
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Thu May 12 19:05:59 2022 +0000
Update configure.ac.in
* Bump required version to 2.69
* Replace some obsolete macros
commit f18241a4effd5b2c91ac4b9f515d7398faa8605e
Author: Jan Ziak <0xe2.0x9a.0x9b@xfce.org>
Date: Mon May 9 20:20:44 2022 +0200
Code cleanup: Replace tabs with spaces
commit 05e87eb5a88616e2b59447a79f9a88af45c3b332
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Wed May 11 20:59:19 2022 +0300
Fix urls in deb package files
commit 364f860893a6f83df27939c47a1ca0a91fc8bf48
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date: Wed May 11 00:55:14 2022 +0200
I18n: Update translation pt (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 29954b149b2f1b57ee407705b47c39827e2ef8f3
Author: Jan Ziak <0xe2.0x9a.0x9b@xfce.org>
Date: Tue May 10 07:44:57 2022 +0200
Fix title-configuration dialog memory leaks
commit 26b918201038fac5830952616b983084393f1aa9
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Tue May 10 16:10:10 2022 +0300
Simplify rgba_to_hex_string
commit 32d84195e68a5a75436b754a82f13c0ef64b4a18
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Tue May 10 15:50:46 2022 +0300
Fix debug build
commit 47c3e8d7283d9571553a98c4caa990d8299e424c
Author: Besnik Bleta <besnik@programeshqip.org>
Date: Tue May 10 12:57:25 2022 +0200
I18n: Add new translation sq (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 9ab2d116d521e4c5ff017a80c3adfc76b25b17b9
Author: Nick Schermer <nick@xfce.org>
Date: Tue May 10 12:57:24 2022 +0200
I18n: Update translation zh_TW (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 76ca4ac7e1b81519b1694c012441393ec855168a
Author: Nick Schermer <nick@xfce.org>
Date: Tue May 10 12:57:24 2022 +0200
I18n: Update translation zh_CN (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 39e54c8cd3cff6d746e5037fd8418b7bf28bdfce
Author: Nick Schermer <nick@xfce.org>
Date: Tue May 10 12:57:24 2022 +0200
I18n: Update translation uk (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 9e71c68336fec15a2ff606693518786d5ef3627d
Author: Necdet Yücel <necdetyucel@gmail.com>
Date: Tue May 10 12:57:24 2022 +0200
I18n: Update translation tr (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f682b7d779348214aba18150002c78e53c8c795e
Author: Påvel Nicklasson <pavel2@frimix.se>
Date: Tue May 10 12:57:24 2022 +0200
I18n: Update translation sv (95%).
39 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit d876eb968548ad735688c38da94ad91d973376f4
Author: Slavko <linux@slavino.sk>
Date: Tue May 10 12:57:24 2022 +0200
I18n: Update translation sk (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 74ec54573ab4a88b7604a534aaca2b50fe9a0cfc
Author: Nick Schermer <nick@xfce.org>
Date: Tue May 10 12:57:23 2022 +0200
I18n: Update translation ru (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 6504b374c533e35ceab639c82b59ca6f958179cd
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date: Tue May 10 12:57:23 2022 +0200
I18n: Update translation pt (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit e06ae7b5f68b533985c4db7c4fbc73101f3c8a48
Author: Nick Schermer <nick@xfce.org>
Date: Tue May 10 12:57:23 2022 +0200
I18n: Update translation pt_BR (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 46d164bbea842c97d5987d7171b6526cd3ab5d1c
Author: Nick Schermer <nick@xfce.org>
Date: Tue May 10 12:57:23 2022 +0200
I18n: Update translation pl (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 05b2eb72e6f75ef4007449061976f8b3cfd83d7f
Author: Pjotr <pjotrvertaalt@gmail.com>
Date: Tue May 10 12:57:23 2022 +0200
I18n: Update translation nl (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit d39049713d065e9bbd80da535dc5726a7e0b0c40
Author: Harald H <haarektrans@gmail.com>
Date: Tue May 10 12:57:23 2022 +0200
I18n: Update translation nb (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 77a53fb69281744ebe00995a523dce45350b28ea
Author: abuyop <abuyop@gmail.com>
Date: Tue May 10 12:57:23 2022 +0200
I18n: Update translation ms (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 799ec1e690248728449d786bf8f7943021b3a71d
Author: Anonymous <noreply@xfce.org>
Date: Tue May 10 12:57:23 2022 +0200
I18n: Update translation lt (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 613e2786b6c32132e1fd18debf97a744f04a0e9a
Author: Nick Schermer <nick@xfce.org>
Date: Tue May 10 12:57:23 2022 +0200
I18n: Update translation ko (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f6548f732e10523b2146781927d4729b41acb74e
Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date: Tue May 10 12:57:22 2022 +0200
I18n: Update translation ja (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit d17d2d3ceb6a4a33b3f8f07911f463e1ffd88b03
Author: Nick Schermer <nick@xfce.org>
Date: Tue May 10 12:57:22 2022 +0200
I18n: Update translation it (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 28ee0f8663af78188eebb2f5d20d12c9e037e1f1
Author: Omer I.S <omeritzicschwartz@gmail.com>
Date: Tue May 10 12:57:22 2022 +0200
I18n: Update translation he (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 6829934125b1d5ff17ff4372b1a315c038a0e38e
Author: Anonymous <noreply@xfce.org>
Date: Tue May 10 12:57:22 2022 +0200
I18n: Update translation fr (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 834e6c60f32b91eec660fdb704515dbc25ec2f00
Author: Nick Schermer <nick@xfce.org>
Date: Tue May 10 12:57:22 2022 +0200
I18n: Update translation es (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 57cb380bed16ae6207a8dbf77054f8409f7fea60
Author: Tobias Bannert <tobannert@gmail.com>
Date: Tue May 10 12:57:22 2022 +0200
I18n: Update translation de (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 9590c2856d650075b47f04188d2ea4169d34c1a0
Author: Anonymous <noreply@xfce.org>
Date: Tue May 10 12:57:22 2022 +0200
I18n: Update translation cs (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 0f27bcf74eaec1e27ded06e39f8d07f1c7069967
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date: Tue May 10 12:57:22 2022 +0200
I18n: Update translation bg (100%).
41 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit c14c1cb3fe7cd3a3c48e4aa43c699bdebdff325f
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Mon May 9 20:19:04 2022 +0300
Disconnect signal handlers before plugin exit
Fix #14.
commit 4561f99541b45252613aa6a24d671b121218033b
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Mon May 9 18:02:50 2022 +0300
Deduplicate configure dialog creation
commit e0df89c9511590afb971dacf80ce317ab33b3f7a
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Mon May 9 17:10:16 2022 +0300
Replace deprecated GTK_STOCK_* items
commit fbea79fe79415b7a92705473385869282b3b5f77
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Mon May 9 13:45:38 2022 +0000
Deduplicate Help button handling
commit 3eaf418a2a1f68ec5f6410e1a2b07326bb82e6ea
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Mon May 9 12:27:53 2022 +0000
Use PACKAGE_URL instead of PLUGIN_WEBSITE
commit 2415bc925dfce34200f56a1489cdcf7be8ad7c41
Author: Luna Jernberg <bittin@cafe8bitar.se>
Date: Mon May 9 12:57:35 2022 +0200
I18n: Update translation sv (94%).
36 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 5f200dcb5606c4409298eadb37c0554307608bba
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Mon May 9 10:47:39 2022 +0000
Adjust configure urls
commit 12a65eb78a4f570b66c22077cc89903cc3eb12c3
Author: Mateusz Gozdek <mgozdekof@gmail.com>
Date: Wed Aug 12 12:46:07 2020 +0200
panel-plugin/title/windowck-title.c: fix memory leak on title change
It seems the memory is allocated on every title change and never gets
freed. Glib says to use g_malloc() with g_free() (used below) and it
seems switching to g_malloc() fixes the memory leak.
Refs https://github.com/cedl38/xfce4-windowck-plugin/issues/30
Signed-off-by: Mateusz Gozdek <mgozdekof@gmail.com>
commit 28417eb12361a18a06fbe14c70838527c7221ea7
Author: Jan Ziak <0xe2.0x9a.0x9b@xfce.org>
Date: Sun May 8 09:55:18 2022 +0200
Do not delete themerc during cleanup
Explanation:
- There is no Makefile rule to re-generate the deleted 'themerc' files
- The themerc files are committed to the git repository
commit a63971c9d7e0d95eb9746cc8124f03e8cd56b4b3
Author: Jan Ziak <0xe2.0x9a.0x9b@xfce.org>
Date: Sat May 7 16:44:58 2022 +0200
Fix memory leaks occurring when reading button layout config
commit a6f0723153d7a87211c9cae0b8aac48d02485337
Author: Jan Ziak <0xe2.0x9a.0x9b@xfce.org>
Date: Sat May 7 14:12:09 2022 +0200
Code cleanup: Suppress duplicate text in build logs
commit 91c671aa9b9b3dbf0eabec3914ce69b499b8ca6a
Author: Jan Ziak <0xe2.0x9a.0x9b@xfce.org>
Date: Fri May 6 19:24:25 2022 +0200
Fix buffer overflows
commit 9e0703f3fc40832c2ff772e26672bdadc0757723
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sat May 7 14:56:56 2022 +0300
Fix issue link
commit d7e7bdb8bde0c7581160e04465ebe821024eb10e
Author: Michael Martins <michaelfm21@gmail.com>
Date: Tue May 3 12:57:56 2022 +0200
I18n: Update translation pt_BR (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 7932e366e861b50426fb386674f5de65f4e42e65
Author: Wellington Almeida <wsalmeida6@gmail.com>
Date: Fri Apr 29 00:56:02 2022 +0200
I18n: Add new translation pt_BR (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 3b3240ba3df90f81883ad48d02d746faa4fd88df
Author: Anonymous <noreply@xfce.org>
Date: Fri Apr 29 00:56:01 2022 +0200
I18n: Update translation lt (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 24b283e0d9beb79ea98906d78ad706adaea0f559
Author: Anonymous <noreply@xfce.org>
Date: Wed Apr 27 00:55:49 2022 +0200
I18n: Add new translation lt (76%).
29 translated messages, 9 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 2d49426c27b7d31765b77f6e0413898635a8f6ae
Author: Andreas Eitel <github-aneitel@online.de>
Date: Wed Apr 27 00:55:48 2022 +0200
I18n: Update translation de (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 84f4f4ad101721bb6fb405f0d873badea3469c4b
Author: Elishai Eliyahu <elishai@mailfence.com>
Date: Tue Apr 26 00:56:14 2022 +0200
I18n: Add new translation he (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 7a315cb9868c80385acb3e0b8d5743afc5099ace
Author: Arve Eriksson <031299870@telia.com>
Date: Tue Apr 26 00:56:13 2022 +0200
I18n: Update translation sv (89%).
34 translated messages, 4 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 3b381c42f9f65063cabf81a8b6a276bd7f3f5492
Author: abuyop <abuyop@gmail.com>
Date: Sun Apr 24 13:01:25 2022 +0200
I18n: Add new translation ms (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 7b9bd96553dd8b565213ce1dca74396fe7dfad1d
Author: Emanuele Petriglia <transifex@emanuelepetriglia.com>
Date: Sun Apr 24 00:56:21 2022 +0200
I18n: Update translation it (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 536a7f588fdddcea4ba90d4d430617b052430b85
Author: Sabri Ünal <libreajans@gmail.com>
Date: Sat Apr 23 12:57:32 2022 +0200
I18n: Update translation tr (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 37fe83177f7d792de838d0f19d5cb0916917e131
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date: Sat Apr 23 00:55:11 2022 +0200
I18n: Add new translation pt (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 35b86fa3ee7bad9b4cda62c02363f67910066550
Author: Sabri Ünal <libreajans@gmail.com>
Date: Sat Apr 23 00:55:10 2022 +0200
I18n: Update translation tr (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f81e22609c269fcb27b6337ad438155843320a57
Author: Anonymous <noreply@xfce.org>
Date: Sat Apr 23 00:55:10 2022 +0200
I18n: Update translation it (81%).
31 translated messages, 7 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 92d51df6d3ceede77a4a5bde68639fda4c974781
Author: Toni Estévez <toni.estevez@gmail.com>
Date: Sat Apr 23 00:55:10 2022 +0200
I18n: Update translation es (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 9141e87d8d0d03f6d37694da126353780e796ad1
Author: Andrij Mizyk <andmizyk@gmail.com>
Date: Fri Apr 22 00:55:39 2022 +0200
I18n: Add new translation uk (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit e4773f78b328389d4f1e1596808eb5cff3cc6268
Author: Cally Mal <zhouxiaobo.500@gmail.com>
Date: Fri Apr 22 00:55:38 2022 +0200
I18n: Update translation zh_CN (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f46d840bc77a1b9c28472d9e46a550e3d118ff01
Author: 黃柏諺 <s8321414@gmail.com>
Date: Thu Apr 21 12:58:32 2022 +0200
I18n: Add new translation zh_TW (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 1fd36e63eee6553d8bb056de2cc0848f2fa56076
Author: Luna Jernberg <bittin@cafe8bitar.se>
Date: Thu Apr 21 12:58:31 2022 +0200
I18n: Add new translation sv (52%).
20 translated messages, 18 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 2a3fe8d8877ccc1013d291bbef38dbf032c638fb
Author: emiliano casal chiarotti <emiliano.casal.chiarotti@gmail.com>
Date: Thu Apr 21 12:58:30 2022 +0200
I18n: Add new translation es (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 4eb9d6a30587be76b622d2ae4d8ba7dbd9dedf7d
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date: Thu Apr 21 12:58:29 2022 +0200
I18n: Add new translation bg (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f46ad4a74139c991f85b625887da94ac5be1475d
Author: YuHeng Chou <wojiushixxx@126.com>
Date: Thu Apr 21 12:58:28 2022 +0200
I18n: Update translation zh_CN (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 10b66ec48d3193bc1118755bac07db5fe1a28db9
Author: Jose Riha <jose1711@gmail.com>
Date: Thu Apr 21 12:58:28 2022 +0200
I18n: Update translation sk (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit a0073fbc9347e457c32afd01849ac01d7cb9d0fd
Author: Jose Riha <jose1711@gmail.com>
Date: Thu Apr 21 00:57:58 2022 +0200
I18n: Add new translation sk (97%).
37 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 9caf98365f2ac6d61f2ed80334880f301573822d
Author: Anonymous <noreply@xfce.org>
Date: Thu Apr 21 00:57:57 2022 +0200
I18n: Add new translation ru (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 73d00f3cfefd15e3b062faf403c54e26462aaba5
Author: Anonymous <noreply@xfce.org>
Date: Thu Apr 21 00:57:56 2022 +0200
I18n: Add new translation pl (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f666f0a73b29041ef34fd0d64f0168900ff921fe
Author: Pjotr <pjotrvertaalt@gmail.com>
Date: Thu Apr 21 00:57:56 2022 +0200
I18n: Add new translation nl (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f83a94800fca492c0cbc81c89165712ee3befdbe
Author: heskjestad <cato@heskjestad.xyz>
Date: Thu Apr 21 00:57:55 2022 +0200
I18n: Add new translation nb (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 4aadda4cadee2a7d47037b56740459098c06aef9
Author: Cybertramp <paran_son@outlook.com>
Date: Thu Apr 21 00:57:54 2022 +0200
I18n: Add new translation ko (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit e26728014e6cc1aa7fcc96f6d1efe108ba1a5dc1
Author: UTUMI Hirosi <utuhiro78@yahoo.co.jp>
Date: Thu Apr 21 00:57:53 2022 +0200
I18n: Add new translation ja (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 6b0f94468561f2f52946f271100393efceb44bda
Author: Anonymous <noreply@xfce.org>
Date: Thu Apr 21 00:57:52 2022 +0200
I18n: Add new translation de (94%).
36 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 30b86ddf9d3d2f2818eefc8060702efdd27b9ed6
Author: Xfce Bot <transifex@xfce.org>
Date: Thu Apr 21 00:57:51 2022 +0200
I18n: Update translation zh_CN (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit b952e5207b5023e9d29b125d966d8125f68d989f
Author: Xfce Bot <transifex@xfce.org>
Date: Thu Apr 21 00:57:51 2022 +0200
I18n: Update translation tr (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 48abe8c34a0b2a409c01364225a503f32a482325
Author: Xfce Bot <transifex@xfce.org>
Date: Thu Apr 21 00:57:51 2022 +0200
I18n: Update translation ru_RU (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit dd5cd37c6df1079806f789bffbba2a267d7482f5
Author: Nick Schermer <nick@xfce.org>
Date: Thu Apr 21 00:57:51 2022 +0200
I18n: Update translation it (50%).
19 translated messages, 19 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 8df4ae4be9d76a1e3419641e2aa458900e53c7a8
Author: Xfce Bot <transifex@xfce.org>
Date: Thu Apr 21 00:57:51 2022 +0200
I18n: Update translation fr (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 1f200049968936ca98ae81061b405f56a10a1a15
Author: Xfce Bot <transifex@xfce.org>
Date: Thu Apr 21 00:57:50 2022 +0200
I18n: Update translation cs (100%).
38 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 16d4a27a9e740058ddd6e7dc72e49b1e81504aa4
Author: Mateusz Gozdek <mgozdekof@gmail.com>
Date: Fri Apr 9 16:25:46 2021 +0200
po: remove committed *.pot file
Those files are auto-generated and should never be committed.
Signed-off-by: Mateusz Gozdek <mgozdekof@gmail.com>
commit a83f213acb5121ec6768ed1c84658dabaac7f021
Author: Mateusz Gozdek <mgozdekof@gmail.com>
Date: Fri Apr 9 16:19:41 2021 +0200
Consistently only import libxfce4panel.h from libxfce4panel
This is enforced with XFCE 4.16.
Signed-off-by: Mateusz Gozdek <mgozdekof@gmail.com>
commit ec597a5e10340f88bad0a0fcb7cfcc4d892262fb
Author: Mateusz Gozdek <mgozdekof@gmail.com>
Date: Fri Apr 9 15:30:19 2021 +0200
panel-plugin/*/Makefile.am: use xdt-csource to generate files
As exo-csource has been dropped in XFCE 4.16.
Signed-off-by: Mateusz Gozdek <mgozdekof@gmail.com>
commit f427dcb54240d840ea1f46606fb5f0e4a3d6a699
Author: Mateusz Gozdek <mgozdekof@gmail.com>
Date: Thu Apr 8 12:12:08 2021 +0200
common/Makefile.am: clean up xpm leftovers
Which currently breaks distdir-am target.
xpm support has been dropped in
80d6abf3e04f884148bc1cbe652f3c9a77e0aea5.
Signed-off-by: Mateusz Gozdek <mgozdekof@gmail.com>
commit 6af1b860f561061b8bea234146813a8978cac68a
Author: Mateusz Gozdek <mgozdekof@gmail.com>
Date: Thu Apr 8 19:58:57 2021 +0200
themes/*/*/Makefile.am: remove missing files when cleaning up
This commit finally fixes distcheck target and ensures that all files
generated as part of build process are later cleaned up.
Signed-off-by: Mateusz Gozdek <mgozdekof@gmail.com>
commit 1a3dda95058a5592b63b94b90b78fb29eaf83ac3
Author: Mateusz Gozdek <mgozdekof@gmail.com>
Date: Thu Apr 8 19:57:43 2021 +0200
themes/*/xfwm4/Makefile.am: copy themerc file from source directory
In case of out-of-source builds, themerc is not part of working
directory but it's in the source directory, so it must be copied from
there. XPM files remains in working directory, as they are generated
using generator.py script.
Part of the effort of fixing distcheck target.
Signed-off-by: Mateusz Gozdek <mgozdekof@gmail.com>
commit 55b3fe2b78a9618e77bc4642b98e7f3ba55f5ae7
Author: Mateusz Gozdek <mgozdekof@gmail.com>
Date: Thu Apr 8 19:56:19 2021 +0200
themes/*/*/Makefile.am: run generator.py script from source dir
As when doing out-of-source builds, generator.py file won't be present
in the working directory, only Makefile.
Part of effort on fixing distcheck target.
Signed-off-by: Mateusz Gozdek <mgozdekof@gmail.com>
commit 4e34e67ee4b218b3c00e51b115ec769b52febd93
Author: Mateusz Gozdek <mgozdekof@gmail.com>
Date: Thu Apr 8 19:54:24 2021 +0200
themes/*/*/Makefile.am: copy static files into source directory
As they will be used during build process to generate XPM and PNG files
and later copied to the distro package.
Part of efforts for fixing distcheck target.
Signed-off-by: Mateusz Gozdek <mgozdekof@gmail.com>
commit fbf7aec7e3c1197b48930fc455120114a9a89659
Author: Mateusz Gozdek <mgozdekof@gmail.com>
Date: Thu Apr 8 19:52:58 2021 +0200
themes/*/*/Makefile.am: remove trailing whitespace
Signed-off-by: Mateusz Gozdek <mgozdekof@gmail.com>
commit 50ef240361de5a921050f6caf84b60a7526a0e65
Merge: 61f49d4 80958c0
Author: Mateusz Gozdek <mgozdekof@gmail.com>
Date: Thu Apr 8 09:37:06 2021 +0000
Merge branch 'add-ci' into 'master'
Add basic GitLab pipeline
See merge request panel-plugins/xfce4-windowck-plugin!1
commit 80958c0d1da89abd4def61cdc4ab311a62c998ff
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Thu Apr 8 11:25:42 2021 +0200
Add basic GitLab pipeline
commit 61f49d4707e411d3b821fea392469addb6c62bae
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sun Jul 19 20:44:04 2020 +0300
Add workaround to get background color
gtk_style_context_get() for GTK_STYLE_PROPERTY_BACKGROUND_COLOR returns
rgba(0, 0, 0, 0).
gtk_style_context_get_color() for GTK_STATE_FLAG_INSENSITIVE returns
same color as for GTK_STATE_FLAG_INSENSITIVE.
commit 8a7aded31444b9002df96ae7598f2850032571ed
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sun Jul 19 17:05:48 2020 +0300
Convert GdkRGBA to hexadecimal string
commit 9e0e67908a8306c18b50aff39872a746980c6ea3
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sun Jul 19 16:21:17 2020 +0300
Fix trace
commit 5cee42e73a7aa57a2c8c9ed0c8a5325a24df17b8
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sun Jul 19 16:19:09 2020 +0300
Drop unused symbols
commit fe106a99b487a0c82f1c322a163787427da52eb2
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sun Jul 19 16:15:29 2020 +0300
Replace GdkColor with GdkRGBA
commit 1a590f20c277360f74bd628838d0ebbedfef4aeb
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sun Jul 19 15:13:26 2020 +0300
Convert print_rc_style -> get_rc_color
commit 8e974d187ee1931b1ace1696828bcbd721f058c1
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sun Jul 19 15:05:26 2020 +0300
Drop print_colors
commit 99ff8400a80e52d8d48a9b2a2308790e6d3ae546
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sun Jul 19 14:52:00 2020 +0300
Use GTK_STYLE_PROPERTY_*
commit fe179254c8c6e37acbb26f1d6e7376c6f4427350
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sun Jul 19 14:37:07 2020 +0300
Move duplicated code to function
commit 3802b1798270dc358da822a41ed8fe9745244aae
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Fri Jul 17 11:43:39 2020 +0300
Replace print_color with gdk_color_to_string
commit 9bf055b6f2f4179991d55233ddfbbad1b5047014
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Tue Jul 14 00:07:28 2020 +0300
Remove unused functions
commit 9e7e448689012a6cced0c4e8c38b33c93cb236c5
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sun Jul 12 20:43:10 2020 +0300
Bump required GTK and Xfce versions
commit 26517cf75218f4859cc0cc2971cd6863716e4565
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sun Jul 12 20:40:53 2020 +0300
Fix usage of removed symbols
commit 019af2ec2846808c37d66016cdf0709c2ecc7ea1
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sun Jul 12 20:37:03 2020 +0300
Hide removed in GTK3 Gdk-related stuff for now
commit c2c683ffb9439a29ba04e6f1e3f3be5e966a84aa
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Sun Jul 12 20:26:06 2020 +0300
Replace XfceHVBox with GtkBox
commit 7695de023f007b2873c0700df5f1f261ff71158e
Author: Arkadiy Illarionov <qarkai@gmail.com>
Date: Fri May 8 20:09:05 2020 +0300
Prepare to port to GTK3
* Replace deprecated macro.
* Use accessor function.
commit 8775cf1a5de9aa67f8ca0ac1f20a6716fdfb8250
Merge: 6889cf3 c0ef292
Author: Cedric <cedl38@gmail.com>
Date: Sat Oct 19 07:33:02 2019 +0200
Merge pull request #67 from escape0707/patch-1
Update AUR link in README.md
commit c0ef292a9e846e6442846dcefe5c2870da88d0eb
Author: Escape0707 <tothesong@gmail.com>
Date: Sat Oct 19 03:01:59 2019 +0000
Update AUR link in README.md
commit 6889cf3919219b5305f3b0c2a8ca491d8d70dbe6
Merge: 3897561 e381a6c
Author: Cedric <cedl38@gmail.com>
Date: Sun Oct 13 18:47:38 2019 +0200
Merge pull request #64 from zluca/master
Add russian localization
commit e381a6c9426a64cd11470981f03913efb7967f3e
Author: zluka <osam@tut.by>
Date: Mon Sep 30 21:10:45 2019 +0300
fix
commit 12e4916ac43d41f4a59f4db9199c35181696cf4f
Author: zluka <osam@tut.by>
Date: Sun Sep 29 10:13:46 2019 +0300
add last translator
commit dd8a62086c5e1bfd84b796c3fb85747f76b07ff9
Author: zluka <osam@tut.by>
Date: Sun Sep 29 10:11:09 2019 +0300
add russian localization
commit 38975618acce74e9452500bcd2b77d6f85c69602
Author: Cedric LEPORCQ <cedl38@gmail.com>
Date: Sun Apr 14 14:43:12 2019 +0200
Update for version 0.4.6
commit b4e017fec05460db011f736debbc894437886634
Author: Peter Feichtinger <shippo@gmx.at>
Date: Sun Aug 26 11:11:30 2018 +0200
Fix build warnings
This removes a number of unused static functions and local variables,
changes a callback function signature to avoid a bad cast, and fixes a
wrong comparison. These were warnings that made the build fail because
of -Werror.
commit 7754319877cad86646fee937aec5e1178a3ada92
Author: Nikita Bobko <nikitabobko@gmail.com>
Date: Sat Mar 30 17:40:01 2019 +0300
wip
commit 67e361a7392087d78491147c2967d87ee398673d
Author: Nikita Bobko <nikitabobko@gmail.com>
Date: Sat Mar 30 17:11:45 2019 +0300
Update REAME
commit 74a42bf84eceb6ed2c11a7a9525c96652bd62de2
Author: Nikita Bobko <nikitabobko@gmail.com>
Date: Thu Jan 17 03:58:37 2019 +0300
Fix #56: add some checks while processing changes of unfocused window title
commit 58ecc5826ff929e3a6b3c96636894bea18a9d51c
Merge: e0f96f5 d72f9d6
Author: Cedric <cedl38@gmail.com>
Date: Mon Aug 13 20:03:59 2018 +0200
Merge pull request #40 from zlamalp/release
Reverted libxfce4panel-2.0 dependency for 0.4.5 release
commit e0f96f58aa6098ac370b5b016e8bffb493c531b4
Merge: 032e3c0 b2a4132
Author: Cedric <cedl38@gmail.com>
Date: Sat Jun 2 22:49:39 2018 +0200
Merge pull request #36 from srgl/support_deskbar
Deskbar mode support
commit 032e3c05b697025fe42875ec299b4e3e9babfcb2
Merge: 59a9015 feb2e4c
Author: Cedric <cedl38@gmail.com>
Date: Sat Jun 2 22:34:46 2018 +0200
Merge pull request #50 from dylanchu/master
add zh_CN translation
commit feb2e4c888c0869f192679f2c5bc12af4c469d8b
Author: dylanchu <chdy.uuid@gmail.com>
Date: Sat Jun 2 16:37:31 2018 +0800
add zh_CN translation
commit 59a901535e8a7d4acc76ffbbfc1bf0c118fd510a
Merge: 1ea8b50 6557c08
Author: Cedric <cedl38@gmail.com>
Date: Thu Feb 8 21:04:27 2018 +0100
Merge pull request #47 from ajeetdsouza/patch-1
Fix typo in installation instructions.
commit 6557c088b88f42cc68cf10a54ba7981c1b608887
Author: Ajeet D'Souza <98ajeet@gmail.com>
Date: Thu Feb 8 08:05:15 2018 +0530
Fix typo in installation instructions.
commit 1ea8b5032fa417dbc54a678aa69aefc17b801e22
Merge: a7c91a9 0d8d964
Author: Cedric <cedl38@gmail.com>
Date: Tue Sep 12 19:34:21 2017 +0200
Merge pull request #42 from yasarciv/master
Added Turkish lang.
commit 0d8d964dad26bfa1a6e4e7d159a375a9da43adb1
Author: Yaşar Çiv <yasarciv67@gmail.com>
Date: Tue Sep 12 09:50:59 2017 +0300
Update tr.po
commit 88bfa73179ee19c9dbdda659d98d51001a001b64
Author: Yaşar Çiv <yasarciv67@gmail.com>
Date: Mon Sep 11 22:34:50 2017 +0300
Update tr.po
commit def6fe50536ffc4d276917e798d20b50703320ff
Author: yasarciv <yasarciv67@gmail.com>
Date: Mon Sep 11 22:02:40 2017 +0300
Turkish-translations
commit d72f9d6432a44e45df6d227f560612d57e9ee97f
Author: Pavel Zlámal <zlamal@cesnet.cz>
Date: Tue Jun 20 07:52:52 2017 +0200
Reverted libxfce4panel-2.0 dependency for 0.4.5 release
commit a7c91a9ac13ebf6acf7e9c8b6d2b5d6080b47037
Merge: b7ff0d1 fee688b
Author: Cedric <cedl38@gmail.com>
Date: Tue May 30 20:54:28 2017 +0200
Merge pull request #38 from zlamalp/deb9
Update dependency on xfce4panel to 4.12
commit b7ff0d1c96271fe2c4e8be000b276fcc2ecb1779
Merge: 3220845 928c2f5
Author: Cedric <cedl38@gmail.com>
Date: Tue May 30 20:53:25 2017 +0200
Merge pull request #37 from zlamalp/changelog
Update news and changelog to 0.4.5
commit 928c2f525947ace8841800d001314ce63747fec3
Author: Pavel Zlámal <zlamal@cesnet.cz>
Date: Tue May 30 08:31:05 2017 +0200
Fixed debian changelog format
commit fee688b6b76b75dea1db4b0af4cead1046d5c97d
Author: Pavel Zlámal <zlamal@cesnet.cz>
Date: Tue May 30 08:07:40 2017 +0200
Update dependency on xfce4panel to 4.12
- Switch debian build compatibility to 9
- Update dependency on xfce4panel to 4.12
- Use libxfce4panel-2.0 instead of 1.0 for build.
commit 495a3c22a7e9cb19948dab2caa796c0b4ddff771
Author: Pavel Zlámal <zlamal@cesnet.cz>
Date: Tue May 30 07:59:02 2017 +0200
Update news and changelog to 0.4.5
- Updated debian version/changelog to 0.4.5.
- Reflect update from last year in NEWS.
commit b2a41326dadd30d43ac55473695eb51ea18cdc7f
Author: Sergei L <srglbnv@gmail.com>
Date: Mon May 1 03:14:51 2017 +0400
Basic support of deskbar mode for buttons
commit 32208450fc0d2f0bfae6cfff76839cfa73581754
Merge: b258285 2028fab
Author: Cedric <cedl38@gmail.com>
Date: Sun May 1 14:40:33 2016 +0200
Merge pull request #28 from zlamalp/dependency
Updated deb dependency
commit 2028faba22243423bf1be30185024fccedd54a92
Author: Pavel Zlámal <zlamal@cesnet.cz>
Date: Mon Apr 25 07:04:43 2016 +0200
Ignore IntellijIDEAs project files in .gitignore
commit 470b292bdc48eae83a513dda7816f043bfa98c53
Author: Pavel Zlámal <zlamal@cesnet.cz>
Date: Mon Apr 25 07:04:10 2016 +0200
Updated deb packages dependency for ubuntu 15.10+
commit b2582858626d62c035797d37afe593acde94fdab
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Mon Jun 15 21:40:48 2015 +0200
Updates for version 0.4.4
commit f4e98eeb6d0f10f8518f19641230c1de91ff43a4
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Mon Jun 15 21:33:28 2015 +0200
Fix #22 support of *.svg based unity themes
commit a5fc369e65b91e8ec920acb0848652d70660ca34
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Sun Jun 14 19:51:38 2015 +0200
Updates for version 0.4.3
commit 325efe57aec0c75d0415a0b51eb2d817ee9be6d0
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Sun Jun 14 09:48:44 2015 +0200
Fix #21 disable activate mouse action on desktop
commit 120377f372bb82fabfb8de2f4dac42c7809eab1f
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Sat Jun 13 15:31:24 2015 +0200
properly hide title on desktop #21
commit ba81b0bd6baa92a602ad50c6e568ca4cbeb870ef
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Sun Jun 7 12:44:52 2015 +0200
Updates for version 0.4.2
commit e1e272f22b1e8bf527df9ba2023eeba241416967
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Sun Jun 7 12:41:21 2015 +0200
ReAdd missing themerc from windowck themes
commit 67e1cc82a3ba83faf69a401e547026173068b749
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Sun Jun 7 12:04:02 2015 +0200
Updates for version 0.4.1
commit 27a7fb4c0103594f5c45b7a8ddda1fd689289eca
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Sun Jun 7 11:48:46 2015 +0200
Add missing dependency in PKGBUILD
commit 45eb4426572d20da6e5c2a7a8bb84c3afbb767eb
Author: Cedric Leporcq <cedl38@gmail.com>
Date: Sun May 17 16:35:13 2015 +0200
Update debian packaging
commit 03ce538f65e9d1791f691843cc338b658eca5a34
Author: Cedric Leporcq <cedl38@gmail.com>
Date: Sun May 17 15:27:21 2015 +0200
Remove *.xpm files from source code
commit d0ab4c4f552ae7f8c3b15108669f3f4f463f25a4
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Sat May 16 18:28:10 2015 +0200
Updates for version 0.4.0
commit 860146a4675d9c3540ff8f03f01c756e24793888
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Sat May 16 18:03:54 2015 +0200
Convert generate.py to python3
commit 43b95d2103245a58fe51c4cbb36f14daefe5eddf
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Sat May 16 15:06:48 2015 +0200
Update translations
commit a3a87847f17d20f1ccbe59532b5a4522b63d5f63
Merge: b637e04 15d89c9
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Sat May 16 15:01:33 2015 +0200
Merge branch 'master' of https://github.com/cedl38/xfce4-windowck-plugin
commit 15d89c928efa1fb33049836200decbb05ccf01c6
Merge: 2729339 4e72b8e
Author: Cedric <cedl38@gmail.com>
Date: Sat May 16 14:59:35 2015 +0200
Merge pull request #19 from zlamalp/czech
Added Czech translation.
commit b637e049c89346cfca7309a73c10ad27a4e3875a
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Sat May 16 10:20:36 2015 +0200
code cleanup
commit dfaed5d64b2fd8a212fd34a00dadacf5662c4274
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Sat May 16 00:00:26 2015 +0200
Fix Icon on right behaviour reg. #da3b6c6
commit 80d6abf3e04f884148bc1cbe652f3c9a77e0aea5
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Fri May 15 12:43:01 2015 +0200
Drop xpm support
commit 73bb501157580d346b2b5f4145db005a3c1a1d9b
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Fri May 15 08:59:58 2015 +0200
Improve windowck themes
commit 4e72b8e4b3215dac6a09296e9ff7c135151e7448
Author: Pavel Zlámal <zlamal@cesnet.cz>
Date: Mon May 11 10:58:17 2015 +0200
Added Czech translation.
commit d99aedda558b9bbad366046d73cf1b4faec7dcd9
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Sat Apr 18 18:44:19 2015 +0200
Remove background on buttons #16
commit 2729339a59ba26b70180729784f363e1776abffe
Author: Cedric <cedl38@gmail.com>
Date: Mon Apr 6 13:24:38 2015 +0200
Update README
commit d4b62c853a897032f266695466d93f9583bb420e
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Sun Apr 5 22:59:47 2015 +0200
fix #14 correctly update title when switching workspace
commit 29cd3b57703c649b0666f521602fdc9a42363ae6
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Sun Apr 5 21:32:39 2015 +0200
fix #5 Let windowck plugin skip whiskermenu
commit db176a4fb36b0948bf297902882dad4272f87d64
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Tue Mar 24 21:37:11 2015 +0100
Updates PKGBUILD
commit f6863663e956776be39a1e50915b0d22204c673a
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Mon Mar 23 22:04:48 2015 +0100
Updates for version 0.3.1
commit 66cdd6805e24584964972695461540ba348d787b
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Sun Mar 22 18:44:18 2015 +0100
Update French translations (100%)
commit e80f54acf855f3aeb426e439bf8b8bb2734da7c8
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Sun Mar 22 18:40:05 2015 +0100
allow 'Log Out on close desktop' #12
commit fab3fcef094652cdc39f15f9df480e963172ffcd
Merge: d007bd3 a43c7af
Author: Cedric <cedl38@gmail.com>
Date: Sun Aug 24 16:06:28 2014 +0200
Merge pull request #10 from fkrull/debian-multiarch
Add multi-arch support to Debian packaging.
commit a43c7afe8d42731e67bbdaf6f10984dee4502a57
Author: Felix Krull <f_krull@gmx.de>
Date: Fri Aug 8 21:34:03 2014 +0200
Add multi-arch support to Debian packaging.
commit d007bd3fd9f46f3ea72dddb09320f5044d80a754
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Wed Apr 2 12:57:34 2014 +0200
Prepare release 0.3.0
commit 0b3e125c48d3f86021aea42e11800e47883b151c
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Wed Apr 2 12:56:18 2014 +0200
Updates french translations (100%) and italian (45%)
commit da3b6c6be7f49ba4b39522384d57792a0f025f5b
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Wed Apr 2 12:32:40 2014 +0200
Allow title text to be displayed on two lines
commit a252c754c6448926cd043b647ba243fca1cf318f
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Mon Mar 31 22:02:35 2014 +0200
Allow resizing the window icon
commit b714208df4e14f17a734ef6811997e2df86bb4c6
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Tue Apr 1 17:39:41 2014 +0200
Fix DEFAULT_SYNC_WM_FONT case formating
commit a19536e96aaf95a80917629ad069be50812fc704
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Sat Mar 29 16:22:20 2014 +0100
Fix #7 Window title widget vertical align
commit c1ed12ee6ef1e1054c67dde9aa3da235da289c14
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Fri Feb 14 23:01:04 2014 +0100
Updates for version 0.2.5
commit 26a6f480b53d3a499cfc3f413671a1f405bff81e
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Fri Feb 14 22:43:03 2014 +0100
Add option to sync font with window manager for title plugin
commit 7e78c6afab160b74394275b3b4eaf247113f8742
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Fri Feb 14 20:03:42 2014 +0100
Change show_window_menu option behaviour
commit 9e5d556ee4134242bb3ce2531c72b9e2ad3c1691
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Thu Feb 13 17:30:12 2014 +0100
Add common/theme.* and rename buttons/theme.* to buttons/wckbuttons-theme.*
commit e47ad6a23dd57858d5705c21ca9fde009b4a0ce1
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Thu Feb 13 10:09:51 2014 +0100
Fix gcc warnings
commit ae800b322c950357ab37337d07b0c4749dc5c76e
Author: Cédric Leporcq <cedl38@gmail.com>
Date: Thu Feb 13 09:53:24 2014 +0100
Fix inactive title color for dark themes
commit 88e22224fc01a5b4aa383ccfe37630f041180dfa
Author: cedric <cedl38@gmail.com>
Date: Sun Nov 10 20:43:43 2013 +0100
Updates for v0.2.4
commit 1b5019b8c3ed50a58d10287e87cc86fa33014d50
Author: cedric <cedl38@gmail.com>
Date: Sat Nov 9 15:18:17 2013 +0100
Fix autogen warnings
commit 9c0cf8abf7c30d66ece9fa8bc31098a2e57f23ff
Author: cedric <cedl38@gmail.com>
Date: Sat Nov 9 08:40:14 2013 +0100
Update appearance when the gtk theme changed
commit e0f700fa48594011e5dd1b65ce22aaca95b0a5cd
Author: cedric <cedl38@gmail.com>
Date: Mon Nov 4 20:04:07 2013 +0100
Fix fg color issue with some themes
commit 1f3483e304cca5566eb2ddc64186119f6188689d
Author: cedric <cedl38@gmail.com>
Date: Sun Nov 3 12:08:48 2013 +0100
Updates for v0.2.3
commit 69e8fe067b7e6d3d2a20eab4ca4ebefc7bdd0422
Author: cedric <cedl38@gmail.com>
Date: Sun Nov 3 12:09:24 2013 +0100
Fix a wrong title display when desktop is shown.
commit 72fa32627db6c1815366fc333097f6de5e34a4f6
Author: cedric <cedl38@gmail.com>
Date: Fri Nov 1 22:22:53 2013 +0100
Update for v0.2.2
commit 59afbc5859dbeb80a8dcc3a2e3758787f550742d
Author: cedric <cedl38@gmail.com>
Date: Fri Nov 1 22:10:30 2013 +0100
Fix #2 plugin initialization issue
commit cf3e9a3863e63c5a66b832fb05ab96cd0710ffe9
Author: cedric <cedl38@gmail.com>
Date: Wed Oct 30 10:30:54 2013 +0100
Updates for version 0.2.1
commit b4e3e2345f4be5bc727d2a25beabcc1a44b10bb0
Author: cedric <cedl38@gmail.com>
Date: Wed Oct 30 17:30:29 2013 +0100
Fix gcc warnings
commit c659e5f6647ea1a896adec6d7f25785b6b01ce18
Author: cedric <cedl38@gmail.com>
Date: Wed Oct 30 18:06:22 2013 +0100
Fix missing sentinel in function call
commit 95739691c014c497298ac8d4c0e74a9f7147ef29
Author: cedric <cedl38@gmail.com>
Date: Wed Oct 30 16:33:40 2013 +0100
Fix uninitialized variable in loadTheme
commit d9e9e29608cb510c0b0915caffb07e97665827c7
Author: cedric <cedl38@gmail.com>
Date: Wed Oct 30 14:10:53 2013 +0100
Fix common/ui_style.c print_colors fn
commit 1229d782fb900597da4abeba95dd585ebea93ce9
Author: cedric <cedl38@gmail.com>
Date: Tue Oct 29 23:37:50 2013 +0100
Disable actions on desktop window.
commit 6c247b4c2e39996638a32ef4b2a136dc710bccfb
Author: cedric <cedl38@gmail.com>
Date: Tue Oct 29 23:14:35 2013 +0100
Add wck_utils reload_wnck fn to properly disconnect signals
commit 4b1a1d3fc22502d865040eaf1b1a1147644c61cd
Author: cedric <cedl38@gmail.com>
Date: Wed Oct 30 08:05:18 2013 +0100
Fix missing PKGBUILD.in
commit c1f383586348cf1f65fea4a040f127e46eaaf888
Author: cedric <cedl38@gmail.com>
Date: Mon Oct 28 00:03:05 2013 +0100
Updates for version 0.2.0
commit f214f053ce20251909a8cb63bc61a4b8a1efe5df
Author: Alessio Piccoli <alepic@geckoblu.net>
Date: Tue Oct 15 09:04:46 2013 +0200
Update French (100%) and Italian (55%) translations
commit 9f6821f99ac44ebd756da4737426ec9743352e12
Author: cedric <cedl38@gmail.com>
Date: Tue Oct 29 11:18:48 2013 +0100
Change dialogs windows appearance and update pot
commit 71cf68b06250d7016a313ca6d9a8e8f22b0ccab2
Author: cedric <cedl38@gmail.com>
Date: Tue Oct 29 10:49:22 2013 +0100
Modify "show_icon" option and add "show_window_menu" option.
commit 9687f00a7a111b374b85d2492354cf74f0e86816
Author: Alessio Piccoli <alepic@geckoblu.net>
Date: Tue Oct 15 08:59:16 2013 +0200
Edit text strings and update .pot
commit 076214b38f776d49e2fba75b4e57a9f5cd5e0178
Author: Alessio Piccoli <alepic@geckoblu.net>
Date: Tue Oct 15 08:59:16 2013 +0200
Fixed .pot generation
commit 989b0e3bccc33573face24bf5a871a6090afce13
Author: cedric <cedl38@gmail.com>
Date: Mon Oct 28 19:08:39 2013 +0100
Use gtk_builder_get_object instead of g_object_get_data
commit e7db2215d950a8860100f9b2cd4d9210cfdd06ed
Author: cedric <cedl38@gmail.com>
Date: Fri Oct 25 14:38:31 2013 +0200
Code formating
commit 9079ad37e31c6ed8e277e97ac2fe0c10b9a06173
Author: cedric <cedl38@gmail.com>
Date: Sun Oct 20 23:02:11 2013 +0200
Add theme selection and button layout dialog options
commit 04ef06713a771a36bdc62713a4fa7c4ffce1c943
Author: cedric <cedl38@gmail.com>
Date: Mon Oct 28 18:24:29 2013 +0100
Fix custom font toggled
commit ac749c0eb38ea9e11bc60cffa05c483b63265ddb
Author: cedric <cedl38@gmail.com>
Date: Sun Oct 20 15:41:21 2013 +0200
Fix reloadplugins.sh
commit 0b47749f063f8c9bb5ad8dde28a80406a4be1beb
Author: cedric <cedl38@gmail.com>
Date: Sat Oct 19 16:04:54 2013 +0200
Add a menu item to refresh the plugin
commit 866a8440684cf8b7c3519e34ad8b212f959eb94b
Author: cedric <cedl38@gmail.com>
Date: Sat Oct 19 15:56:46 2013 +0200
Add option to sync the theme with the window manager
commit 0d3a4244424ea7f3984f9153fb10a25a2aa7ad53
Author: cedric <cedl38@gmail.com>
Date: Sun Oct 20 10:58:31 2013 +0200
Provide compatibility with unity button themes
commit 6a13ae3a3fda2b7fec852e641a5040537d7ff712
Author: cedric <cedl38@gmail.com>
Date: Sat Oct 12 16:42:14 2013 +0200
Add option to show the full title name / short name
commit 7d3729e0ee1a0b934ee3613603aed1cdb0710e6c
Author: cedric <cedl38@gmail.com>
Date: Sun Oct 27 10:46:00 2013 +0100
Fix Makefiles
commit 8407ab6db241ce347d6ac88a2525b9a4a1a25bf6
Author: cedric <cedl38@gmail.com>
Date: Sat Oct 19 10:12:56 2013 +0200
Fix button visible state and loadTheme fn
commit bd9995d8fa1f440cf16cf4126096e990bc911894
Author: cedric <cedl38@gmail.com>
Date: Wed Oct 16 14:57:56 2013 +0200
Fix wck-utils to consider special cases
commit 70d4c7c180aa609c2542aa6a226d3c9ce577aeef
Author: cedric <cedl38@gmail.com>
Date: Sun Oct 27 10:26:44 2013 +0100
minor fix on windowck-dialogs
commit e1f45ca74e6dbb5eb266acab0d289575616ea276
Author: cedric <cedl38@gmail.com>
Date: Fri Oct 11 21:52:05 2013 +0200
Fix active_window_changed function if there is no activewindow
commit 408068fc5d15f1493fdec10e2b1d0ab2ce57a91f
Author: cedric <cedl38@gmail.com>
Date: Wed Oct 9 20:13:08 2013 +0200
add tooltip on size_mode combobox and correct a misspelling
commit 561ad4c3a25437544d94259054274995e68c6986
Author: cedric <cedl38@gmail.com>
Date: Wed Oct 9 19:07:28 2013 +0200
fix toggleMaximize and trackControledWindow functions
commit 370bea8fd140ce9aa5ce3a63d0e27a3489b7c694
Author: cedric <cedl38@gmail.com>
Date: Thu Oct 3 20:06:12 2013 +0200
updates for version 0.1.0
commit 6c8bb7c9d241fb3b1d7eedd712d024718d947ba2
Author: cedric <cedl38@gmail.com>
Date: Sat Oct 5 20:13:06 2013 +0200
add wnck events on title clicks (activate, (un)maximize, close) and a wnck action menu on button clicks
commit d73bc4dd2bad26b3ae4b9c358b5a3997d5031365
Author: cedric <cedl38@gmail.com>
Date: Thu Oct 3 20:06:41 2013 +0200
update license headers to source files
commit 5c215bbd51d9559f7aca8e30454efdf0ee2fb8a6
Author: cedric <cedl38@gmail.com>
Date: Thu Oct 3 17:48:00 2013 +0200
update about dialogs
commit d0736b394e066f5b0155ac8ae018ca7f489aa799
Author: cedric <cedl38@gmail.com>
Date: Wed Oct 2 18:45:52 2013 +0200
correct code indent for wckbuttons plugin
commit 291cccca824eb459b9b04c1febdfd399ce66b94e
Author: cedric <cedl38@gmail.com>
Date: Thu Oct 3 18:54:09 2013 +0200
add behaviour option to wckbuttons dialog widget.
Conflicts:
panel-plugin/buttons/wckbuttons-dialogs.c
commit 40b66a90fefffd5ddec1c5bf7f74d52e4c60b899
Author: cedric <cedl38@gmail.com>
Date: Tue Oct 1 19:20:57 2013 +0200
update about widget.
commit 304552f4f45b2e5d3af6af2e0aeb49cbbbbbbee2
Author: cedric <cedl38@gmail.com>
Date: Tue Oct 1 18:37:18 2013 +0200
add icon options and plugin behaviour to dialog widget.
commit e9ea939e275215a5b2921119527348485bb8f8cc
Author: cedric <cedl38@gmail.com>
Date: Sun Sep 29 17:25:23 2013 +0200
add window icon to windowck plugin
commit 1c9c73ecf50e51a5f763c3e9f9383bbd25740d7a
Author: cedric <cedl38@gmail.com>
Date: Sun Sep 29 16:03:01 2013 +0200
add plugins icons and themes
commit 4e2571440326806bbe23ac2aad6e26ab0be81979
Author: cedric <cedl38@gmail.com>
Date: Sun Sep 29 15:43:33 2013 +0200
add setTitleColors function
commit adfeecd4040e768e8e24a47ddeb5e51283a5ffb7
Author: cedric <cedl38@gmail.com>
Date: Sun Sep 29 14:41:33 2013 +0200
add signal events for buttons
commit 8a441bcb2b49e190c9e6593d75022d0bbf9c0aff
Author: cedric <cedl38@gmail.com>
Date: Sun Sep 29 12:25:51 2013 +0200
add xfwm4 theme support for buttons
commit bcf2df5554e898d61d3b4df686a67b1f397b8286
Author: cedric <cedl38@gmail.com>
Date: Sun Sep 29 09:36:31 2013 +0200
add pixmap tools from xfwm4 src
commit a368beb8ecc69dc3c7f8729caba5c012cd6c1459
Author: cedric <cedl38@gmail.com>
Date: Sun Sep 29 05:59:49 2013 +0200
add controled window tracking feature to wckbuttons plugin
commit d79fc65a0e9f2ecdcf4c44afcc3fd5b33067696f
Author: cedric <cedl38@gmail.com>
Date: Sun Sep 29 05:19:01 2013 +0200
add refresh scripts
commit 6a563fae495424bc3c6fdf3f0e043129cc97baa0
Author: cedric <cedl38@gmail.com>
Date: Sun Sep 29 05:14:53 2013 +0200
create window buttons
commit 4c314b2b11e4faca2eb85ff2a01ec2c726f9ce6a
Author: cedric <cedl38@gmail.com>
Date: Tue Sep 24 18:36:40 2013 +0200
use g_slice_new0 instead of panel_slice_new0 (depreciated)
commit 46e5fd8c4f4f88c4fa2886e4bc7816fb0e69f7b8
Author: cedric <cedl38@gmail.com>
Date: Wed Sep 25 20:14:00 2013 +0200
rename sample plugin to wckbuttons plugin
commit a9f4d62a0e93630262eaf0975788df45a525b337
Author: cedric <cedl38@gmail.com>
Date: Sun Sep 8 10:19:24 2013 +0200
initialise new button plugin with sample plugin code
commit 389aa206d0308481688f5f9b94cd995aadcd114a
Author: cedric <cedl38@gmail.com>
Date: Wed Sep 25 19:29:46 2013 +0200
use xfce_panel_plugin_set_shrink instead of xfce_panel_plugin_set_expand
commit 5353c0af960d3f0c66136548b6e4f8366bd2e954
Author: cedric <cedl38@gmail.com>
Date: Tue Sep 24 18:53:30 2013 +0200
add GTKAlignment Widget above hvbox
commit c423ca4e0c19efb04f4d6d9eae1e9cbe981ea5f6
Author: cedric <cedl38@gmail.com>
Date: Tue Sep 24 18:33:01 2013 +0200
add initTitle function and move some functions
commit ee2c5a69540b311fe71f7697b569e9bf52c69e7b
Author: cedric <cedl38@gmail.com>
Date: Tue Sep 24 17:29:57 2013 +0200
rename xfce4-windowck-plugin.desktop.in to windowck-plugin.desktop.in
commit 3ceb2b04a1bdcc9376f4ba30eb1a64215a7db4b0
Author: cedric <cedl38@gmail.com>
Date: Mon Sep 23 22:38:51 2013 +0200
Deep rewrite of windowck-utils.c, move it to common/wck-utils.
commit 1bef3186498c3f4838329cc25189a24b6ca264b0
Author: cedric <cedl38@gmail.com>
Date: Sun Sep 8 09:53:52 2013 +0200
mv panel-plugin/* to panel-plugin/title
commit 1a661e7c824521b51d5d8aa3af2793b08faad881
Author: cedric <cedl38@gmail.com>
Date: Fri Sep 6 19:23:08 2013 +0200
add custom font option
commit fc47a4f7848c21045912edeb143088d154dfb1fa
Author: cedric <cedl38@gmail.com>
Date: Thu Sep 5 16:36:35 2013 +0200
set inactive title color to fit better to themes
commit 84f8bf34c296f123743d8d70e3d1ba326c4d8b2b
Author: cedric <cedl38@gmail.com>
Date: Tue Sep 3 18:46:07 2013 +0200
set min title size
commit 976fe58d6f0e23349e5aac423aa4ace8f2d82060
Author: cedric <cedl38@gmail.com>
Date: Tue Sep 3 18:44:46 2013 +0200
minor correction on title alignement for expand option
commit 83bce0ba38c576a40192ae272e9497337463be26
Author: cedric <cedl38@gmail.com>
Date: Tue Sep 3 18:39:14 2013 +0200
Fix title overflow for expand option
commit ffc3a7d59491aefa10141b2a36a6ceac36ccf8be
Author: cedric <cedl38@gmail.com>
Date: Mon Jul 22 23:22:45 2013 +0200
Initialize plugin on screen position changed
commit a78b29d62024bdab7482f85f7afd0f653c2a13b7
Author: cedric <cedl38@gmail.com>
Date: Mon Jul 22 22:28:37 2013 +0200
Fix minimum width for the expand option
commit 6f1fdbd2d78abeac909c2d9dcfcdc55b74a1b624
Author: cedric <cedl38@gmail.com>
Date: Sat Jul 20 14:10:23 2013 +0200
update to version 0.0.2
commit 06ade86ace1c5a167bf37409048ab3e800979c4d
Author: cedric <cedl38@gmail.com>
Date: Sat Jul 20 15:30:02 2013 +0200
Prevent panel overflow for expand option
commit 5d7150e1b12710172a28e101afff27417c57c247
Author: cedric <cedl38@gmail.com>
Date: Fri Jul 12 17:16:55 2013 +0200
add shrink, fixed and expand title options
commit a032fbfe07a6dc4fa2d05aecade87a1badae5a40
Author: cedric <cedl38@gmail.com>
Date: Sat Jul 20 14:49:44 2013 +0200
add title padding and alignment options
commit 10029502507f69b7782678a2def94176b6134554
Author: cedric <cedl38@gmail.com>
Date: Sat Jul 20 14:47:05 2013 +0200
add options in proprieties interface
commit 5b092d0cbe7c6e32c608a3878bbd1b769c8664d0
Author: cedric <cedl38@gmail.com>
Date: Sat Jul 20 14:32:50 2013 +0200
add title_alignment and padding setting
commit 122409c82faff24f2e81aa60c05e35b2997808cd
Author: cedric <cedl38@gmail.com>
Date: Fri Jul 12 09:33:50 2013 +0200
add arch/* to .gitignore
commit bceef7a6c792209b4118611ea52afdcdc2b70731
Author: Alessio Piccoli <alepic@geckoblu.net>
Date: Fri Apr 12 14:14:13 2013 +0200
README upgrade
commit 0e0dfbc46bc51514638b3777cbef8e8206ad5905
Author: Alessio Piccoli <alepic@geckoblu.net>
Date: Fri Apr 12 09:40:20 2013 +0200
Added .gitignore
commit f5f4148d3ca8304c94e90608f445c9f369f59fb7
Author: Alessio Piccoli <alepic@geckoblu.net>
Date: Thu Apr 11 09:54:15 2013 +0200
Fix debiand dependencies
commit 8615e2fcf4683351e497f7a921248e83a24279d2
Author: Alessio Piccoli <alepic@geckoblu.net>
Date: Thu Apr 11 08:30:56 2013 +0200
Initial version
|