1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
|
2003-07-11 08:55 huysmans
* po/: zh_CN.gmo, zh_CN.po: Update Chinese translations
2003-07-10 11:56 huysmans
* ChangeLog: Update ChangeLog's for release
2003-07-10 11:24 huysmans
* configure, configure.ac, po/ca.gmo, po/ca.po, po/de.gmo,
po/de.po, po/es.gmo, po/es.po, po/es_MX.gmo, po/es_MX.po,
po/fi.gmo, po/fi.po, po/fr.gmo, po/fr.po, po/hi.gmo, po/hi.po,
po/ja.gmo, po/ja.po, po/ms.gmo, po/ms.po, po/nl.gmo, po/nl.po,
po/pl.gmo, po/pl.po, po/ru.gmo, po/ru.po, po/ta.gmo, po/ta.po,
po/tr.gmo, po/tr.po, po/xfce4-panel.pot, po/zh_CN.gmo, po/zh_CN.po:
Bump version numbers for release and update po files
2003-07-09 22:57 huysmans
* xfce4rc: Tweak default config
2003-07-09 22:05 huysmans
* plugins/switcher/switcher.c: Remove separators from desktop
switcher as well
2003-07-09 20:46 huysmans
* doc/C/xfce4-panel.xml: Forgot the xml file
2003-07-09 16:29 huysmans
* doc/C/xfce4-panel.html: Remove reference to ... buttons
2003-07-09 14:14 huysmans
* doc/C/images/: clock-properties.png, launcher-properties.png,
mailcheck-properties.png, menuitem-properties.png,
nooptions-properties.png, systembuttons-properties.png: Update
images to reflect new item dialogs
2003-07-09 12:26 huysmans
* ChangeLog, NEWS: Update ChangeLog and NEWS
2003-07-09 10:20 huysmans
* configure, configure.ac, panel/controls.c, panel/controls.h,
panel/controls_dialog.c, panel/controls_dialog.h,
panel/item_dialog.c, panel/item_dialog.h, panel/plugins.h,
plugins/clock/clock.c, plugins/mailcheck/mailcheck.c,
plugins/systembuttons/systembuttons.c, po/ca.gmo, po/ca.po,
po/de.gmo, po/de.po, po/es.gmo, po/es.po, po/es_MX.gmo,
po/es_MX.po, po/fi.gmo, po/fi.po, po/fr.gmo, po/fr.po, po/hi.gmo,
po/hi.po, po/ja.gmo, po/ja.po, po/ms.gmo, po/ms.po, po/nl.gmo,
po/nl.po, po/pl.gmo, po/pl.po, po/ru.gmo, po/ru.po, po/ta.gmo,
po/ta.po, po/tr.gmo, po/tr.po, po/xfce4-panel.pot, po/zh_CN.gmo,
po/zh_CN.po: Big internal changes. Remove revert button from item
dialogs; this also affects plugin API. API version increased
2003-07-08 18:47 huysmans
* panel/panel.c: Size tweak
2003-07-08 17:21 huysmans
* panel/item.c: Don't automatically create tooltip on menu item
when not present
2003-07-08 10:35 huysmans
* panel/item_dialog.c, plugins/mailcheck/mailcheck.c: Update
dialogs to use open stock icon on buttons instead of ...
2003-07-08 09:30 huysmans
* panel/item_dialog.c, plugins/pager/pager.c, po/es.gmo: Small
fixes
2003-07-08 00:26 xfce
* ltmain.sh: Update ltmain.sh with patched version
2003-07-07 23:18 huysmans
* po/: ca.gmo, ca.po: Update catalan translations
2003-07-07 18:14 huysmans
* doc/C/images/default_panel.png: Update default panel screenshot
2003-07-07 13:15 huysmans
* AUTHORS, HACKING, NEWS, README, TODO, po/xfce4-panel.pot: Update
some info
2003-07-06 21:45 huysmans
* ChangeLog: Updating ChangeLogs
2003-07-05 14:31 xfce
* Makefile.in, ltconfig: Remove ltconfig script as it is generated
2003-07-05 10:41 huysmans
* plugins/mailcheck/mailcheck.c: Renew timeout after reading the
config file. Patch by Bernhard Walle.
2003-07-05 01:37 xfce
* Makefile.in, aclocal.m4, config.h.in, configure, ltcf-c.sh,
ltmain.sh, doc/Makefile.in, doc/C/Makefile.in,
doc/C/images/Makefile.in, icons/Makefile.in, panel/Makefile.in,
plugins/Makefile.in, plugins/clock/Makefile.in,
plugins/mailcheck/Makefile.in, plugins/pager/Makefile.in,
plugins/separator/Makefile.in, plugins/switcher/Makefile.in,
plugins/systembuttons/Makefile.in, settings/Makefile.in,
themes/Makefile.in, themes/Crystal/Makefile.in,
themes/Curve/Makefile.in, themes/FreeIcons/Makefile.in,
themes/Gnome/Makefile.in, themes/Noia/Makefile.in,
themes/XFce/Makefile.in: libttol update and all
2003-07-04 18:55 bmeurer
* po/: de.gmo, de.po: Small fix.
2003-07-03 22:24 xfce
* plugins/separator/separator.c, po/es_MX.gmo, po/fr.gmo, po/fr.po:
Tweak new separator plugin and update frnech po
2003-07-03 20:16 edscott
* po/: es.po, es_MX.po: spanish tranlation updates for 4.0 release.
2003-07-03 14:36 huysmans
* po/: de.gmo, de.po: Update German translations
2003-07-03 14:28 huysmans
* po/: fi.gmo, fi.po: Update finish translation
2003-07-03 14:20 huysmans
* plugins/separator/separator.c: Make separator 80%
2003-07-03 12:12 huysmans
* Makefile.in, aclocal.m4, config.h.in, configure, configure.ac,
ltcf-c.sh, ltconfig, ltmain.sh, xfce4rc, doc/Makefile.in,
doc/C/Makefile.in, doc/C/xfce4-panel.html, doc/C/xfce4-panel.xml,
doc/C/images/Makefile.in, doc/C/images/default_panel.png,
icons/Makefile.in, panel/Makefile.in, plugins/Makefile.am,
plugins/Makefile.in, plugins/clock/Makefile.in,
plugins/mailcheck/Makefile.in, plugins/mailcheck/mailcheck.c,
plugins/pager/Makefile.in, plugins/pager/pager.c,
plugins/separator/Makefile.am, plugins/separator/Makefile.in,
plugins/separator/separator.c, plugins/switcher/Makefile.in,
plugins/systembuttons/Makefile.in,
plugins/systembuttons/systembuttons.c, po/POTFILES.in, po/ca.gmo,
po/ca.po, po/de.gmo, po/de.po, po/es.gmo, po/es.po, po/es_MX.gmo,
po/es_MX.po, po/fi.gmo, po/fi.po, po/fr.gmo, po/fr.po, po/hi.gmo,
po/hi.po, po/ja.gmo, po/ja.po, po/ms.gmo, po/ms.po, po/nl.gmo,
po/nl.po, po/pl.gmo, po/pl.po, po/ru.gmo, po/ru.po, po/ta.gmo,
po/ta.po, po/tr.gmo, po/tr.po, po/xfce4-panel.pot, po/zh_CN.gmo,
po/zh_CN.po, settings/Makefile.in, themes/Makefile.in,
themes/Crystal/Makefile.in, themes/Curve/Makefile.in,
themes/FreeIcons/Makefile.in, themes/Gnome/Makefile.in,
themes/Noia/Makefile.in, themes/XFce/Makefile.in: Add separator.
Remove separators from pager. Several smaller fixes to plugins.
Update docs.
2003-07-02 10:29 huysmans
* doc/C/images/panel-settings.png: Update image for panel settings
2003-06-29 22:05 huysmans
* plugins/systembuttons/systembuttons.c: Fix systembutton sizing.
Patch by Michael Mosier
2003-06-28 11:46 xfce
* Makefile.in, aclocal.m4, config.h.in, configure, ltmain.sh,
doc/Makefile.in, doc/C/Makefile.in, doc/C/images/Makefile.in,
icons/Makefile.in, panel/Makefile.in, plugins/Makefile.in,
plugins/clock/Makefile.in, plugins/mailcheck/Makefile.in,
plugins/pager/Makefile.in, plugins/switcher/Makefile.in,
plugins/systembuttons/Makefile.in, settings/Makefile.in,
themes/Makefile.in, themes/Crystal/Makefile.in,
themes/Curve/Makefile.in, themes/FreeIcons/Makefile.in,
themes/Gnome/Makefile.in, themes/Noia/Makefile.in,
themes/XFce/Makefile.in: Update to libtool-1.5 Use proper complete
CURRENT:REVISION:AGE scheme for lib versionning
2003-06-21 21:22 bmeurer
* po/xfce4-panel.pot: Updates.
2003-06-21 20:03 bmeurer
* configure, configure.ac: Fixes.
2003-06-21 19:58 bmeurer
* configure, configure.ac: Fixes.
2003-06-21 19:21 bmeurer
* po/: de.gmo, de.po: Fixed problem with June->Juni translation.
2003-06-21 19:14 bmeurer
* HACKING, aclocal.m4, configure, po/de.gmo, po/de.po: Updated
german translations.
2003-06-21 18:58 bmeurer
* aclocal.m4, configure, configure.ac, po/nl.gmo,
po/xfce4-panel.pot: version -> 3.91.0
2003-06-21 18:55 bmeurer
* configure.ac: Updated version numbers.
2003-06-18 22:36 xfce
* panel/controls_dialog.c, panel/item_dialog.c,
settings/xfce_settings_dialog.c: Call gtk_window_set_position () as
late at possible as it seems there is a race cond in gtk+
2003-06-15 14:21 bmeurer
* TODO: Added note about libxfce4util.
2003-06-15 14:20 bmeurer
* panel/xfce_support.c: Added a patch to improve the responsiveness
of the UI by executing commands when the main loop is idle instead
of executing them directly on button click.
2003-06-14 23:53 bmeurer
* panel/main.c, settings/xfce_settings_dialog.c,
settings/xfce_settings_plugin.c: Introduced xfce_textdomain()
2003-06-14 18:03 xfce
* panel/controls_dialog.c, panel/item_dialog.c,
settings/xfce_settings_dialog.c: Revert the GTK_POS_WINDOW_CENTER
2003-06-14 01:57 xfce
* panel/controls_dialog.c, panel/item_dialog.c,
settings/xfce_settings_dialog.c: Use GTK_WIN_POS_CENTER_ALWAYS
instead of GTK_WIN_POS_CENTER when centering dialogs
2003-06-14 00:32 bmeurer
* m4/i18n.m4, configure, aclocal.m4: Fixed
bind_textdomain_codeset() problem on linux.
2003-06-12 22:26 bmeurer
* settings/: xfce_settings_dialog.c, xfce_settings_plugin.c: Fixes
bind_textdomain_codeset()
2003-06-10 23:49 bmeurer
* Makefile.in, aclocal.m4, config.guess, config.h.in, config.sub,
configure, install-sh, ltcf-c.sh, ltconfig, ltmain.sh,
doc/Makefile.in, doc/C/Makefile.in, doc/C/images/Makefile.in,
icons/Makefile.in, panel/Makefile.in, plugins/Makefile.in,
plugins/clock/Makefile.in, plugins/mailcheck/Makefile.in,
plugins/pager/Makefile.in, plugins/switcher/Makefile.in,
plugins/systembuttons/Makefile.in, settings/Makefile.in,
themes/Makefile.in, themes/Crystal/Makefile.in,
themes/Curve/Makefile.in, themes/FreeIcons/Makefile.in,
themes/Gnome/Makefile.in, themes/Noia/Makefile.in,
themes/XFce/Makefile.in: automake 1.7.5
2003-06-10 23:34 xfce
* panel/xfce_support.c: Add test for bind_textdomain_codeset() Use
xftree4 as viewer on dirs unless "Open in terminal" is checked
2003-06-10 23:19 bmeurer
* panel/main.c: Fixed bind_textdomain_codeset() problem
2003-06-10 23:14 xfce
* panel/: item_dialog.c, xfce_support.c: Add support for
directories as launchers in panel and add extra check for icons
2003-06-10 22:19 bmeurer
* panel/: controls.c, controls_dialog.c, groups.c: Make
--enable-debug=full work.
2003-06-10 01:38 xfce
* Makefile.in, aclocal.m4, config.h.in, configure, configure.ac,
doc/Makefile.in, doc/C/Makefile.in, doc/C/images/Makefile.in,
icons/Makefile.in, panel/Makefile.in, plugins/Makefile.in,
plugins/clock/Makefile.in, plugins/mailcheck/Makefile.in,
plugins/pager/Makefile.in, plugins/switcher/Makefile.in,
plugins/systembuttons/Makefile.in, settings/Makefile.in,
settings/xfce_settings_dialog.c, themes/Makefile.in,
themes/Crystal/Makefile.in, themes/Curve/Makefile.in,
themes/FreeIcons/Makefile.in, themes/Gnome/Makefile.in,
themes/Noia/Makefile.in, themes/XFce/Makefile.in: Add new widget
xfce_framebox to unify look across UI Migrate all plugins to this
new widget
2003-06-08 21:06 huysmans
* panel/global.h: Make Curve the fallback icon theme instead of
XFce
2003-06-08 16:29 huysmans
* Makefile.in, aclocal.m4, config.h.in, configure, configure.ac,
doc/Makefile.in, doc/C/Makefile.in, doc/C/images/Makefile.in,
icons/Makefile.in, panel/Makefile.in, plugins/Makefile.in,
plugins/clock/Makefile.in, plugins/mailcheck/Makefile.in,
plugins/pager/Makefile.in, plugins/switcher/Makefile.in,
plugins/systembuttons/Makefile.in, po/ru.gmo, po/ru.po,
settings/Makefile.in, themes/Makefile.in,
themes/Crystal/Makefile.in, themes/Curve/Makefile.in,
themes/FreeIcons/Makefile.in, themes/Gnome/Makefile.in,
themes/Noia/Makefile.in, themes/XFce/Makefile.in: Add russian
translation and fix xfdesktop not reading a new local menu
2003-06-08 15:51 bmeurer
* panel/icons.c: Prefer SVG over PNG.
2003-06-07 14:58 bmeurer
* panel/icons.c: Added .svg support for themes. (librsvg provides a
gdk-pixbuf loader), pointed out by keke@plskthx.org
2003-06-06 23:36 xfce
* Makefile.in, aclocal.m4, config.h.in, configure, configure.ac,
doc/Makefile.in, doc/C/Makefile.in, doc/C/images/Makefile.in,
icons/Makefile.in, panel/Makefile.in, plugins/Makefile.in,
plugins/clock/Makefile.in, plugins/mailcheck/Makefile.in,
plugins/pager/Makefile.in, plugins/switcher/Makefile.in,
plugins/systembuttons/Makefile.in, settings/Makefile.in,
themes/Makefile.in, themes/Crystal/Makefile.in,
themes/Curve/Makefile.in, themes/FreeIcons/Makefile.in,
themes/Gnome/Makefile.in, themes/Noia/Makefile.in,
themes/XFce/Makefile.in: Versionning scheme
2003-06-06 17:46 huysmans
* po/: ca.gmo, ca.po, de.gmo, de.po, es.gmo, es.po, es_MX.gmo,
es_MX.po, fi.gmo, fi.po, fr.gmo, fr.po, hi.gmo, hi.po, ja.gmo,
ja.po, ms.gmo, ms.po, nl.gmo, nl.po, pl.gmo, pl.po, ta.gmo, ta.po,
tr.gmo, tr.po, xfce4-panel.pot, zh_CN.gmo, zh_CN.po: final
update-po before beta 1
2003-06-05 23:48 huysmans
* doc/C/: xfce4-panel.html, xfce4-panel.xml: Doc fixes assorti
2003-06-05 11:08 huysmans
* doc/C/images/: handle-popup.png, item-popup.png: Updated images
2003-06-05 09:28 huysmans
* po/: de.gmo, de.po: Updated translations and multiple file drop
on backdrop list manager
2003-06-03 16:54 huysmans
* doc/C/: xfce4-panel.html, xfce4-panel.xml: Remove revision
history
2003-06-02 20:18 huysmans
* xfce4rc: Fix empty menu item
2003-06-02 19:56 huysmans
* doc/C/images/default_panel.png: Update default panel image
2003-06-02 17:44 huysmans
* xfce4rc: change some defaults
2003-06-01 23:27 huysmans
* po/: fi.gmo, fi.po: Update fi translations and specfile fix
2003-05-30 22:36 huysmans
* configure, configure.ac, po/ms.gmo, po/ms.po: Add malayan
translations
2003-05-30 21:24 huysmans
* configure, configure.ac: Build only static libs
2003-05-30 10:50 huysmans
* doc/C/images/: Makefile.am, Makefile.in: Small tweaks to build
files
2003-05-29 14:53 huysmans
* doc/xfce-nochunk.xsl: improve stylesheet import
2003-05-29 14:35 huysmans
* po/: ca.gmo, ca.po: Update catalan translations
2003-05-29 13:54 huysmans
* plugins/mailcheck/mailcheck.c: Fix crash with empty command
2003-05-29 11:55 huysmans
* plugins/mailcheck/mailcheck.c, po/ja.gmo, po/nl.po: Translations
update
2003-05-27 23:29 xfce
* po/ja.po: Add Japanese translation by Zhao-Ji <zhao-ji at awz dot
ne dot jp>
2003-05-21 23:42 huysmans
* configure, configure.ac, po/hi.gmo, po/hi.po, po/tr.gmo,
po/tr.po: Add Turkish translations
2003-05-17 10:43 huysmans
* .indent.pro, HACKING, icons/xfce4-panel-icon.h, panel/controls.c,
panel/controls.h, panel/controls_dialog.c, panel/controls_dialog.h,
panel/global.h, panel/groups.c, panel/groups.h, panel/icons.c,
panel/icons.h, panel/item.c, panel/item_dialog.c,
panel/item_dialog.h, panel/main.c, panel/mcs_client.c,
panel/panel.c, panel/panel.h, panel/plugins.h, panel/popup.c,
panel/popup.h, panel/settings.c, panel/xfce_support.c,
panel/xfce_support.h, plugins/clock/clock.c,
plugins/mailcheck/mailcheck.c, plugins/pager/pager.c,
plugins/switcher/switcher.c, plugins/systembuttons/systembuttons.c,
settings/xfce_settings_dialog.c, settings/xfce_settings_plugin.c:
Reindent using Olivier's new .indent.pro file
2003-05-16 20:19 huysmans
* Makefile.in, aclocal.m4, config.guess, config.sub, configure,
configure.ac, doc/Makefile.in, doc/C/Makefile.in,
doc/C/images/Makefile.in, icons/Makefile.in, panel/Makefile.in,
plugins/Makefile.in, plugins/clock/Makefile.in,
plugins/mailcheck/Makefile.in, plugins/pager/Makefile.in,
plugins/switcher/Makefile.in, plugins/systembuttons/Makefile.in,
po/ta.gmo, po/ta.po, settings/Makefile.in, themes/Makefile.in,
themes/Crystal/Makefile.in, themes/Curve/Makefile.in,
themes/FreeIcons/Makefile.in, themes/Gnome/Makefile.in,
themes/Noia/Makefile.in, themes/XFce/Makefile.in: Add tamil
translations
2003-05-15 15:25 huysmans
* doc/C/: xfce4-panel.html, xfce4-panel.xml: documentation fixes
(2)
2003-05-15 15:22 huysmans
* doc/C/: xfce4-panel.html, xfce4-panel.xml: documentation fixes
2003-05-15 13:03 huysmans
* ChangeLog: Mass update of ChangeLogs
2003-05-14 07:50 huysmans
* po/: fi.gmo, fi.po: update finnish translations
2003-05-13 23:08 huysmans
* doc/C/: xfce4-panel.html, xfce4-panel.xml,
images/clock-properties.png, images/default_panel.png,
images/handle-popup.png, images/item-popup.png,
images/launcher-properties.png, images/mailcheck-properties.png,
images/menuitem-properties.png, images/nooptions-properties.png,
images/systembuttons-properties.png: update docs
2003-05-13 21:32 huysmans
* panel/xfce_support.c: Fix icons with spaces problem. User now
must manually escape commands.
2003-05-13 19:12 huysmans
* configure, configure.ac, po/ca.gmo, po/ca.po: Add catalan
translations
2003-05-13 13:49 huysmans
* Makefile.am, Makefile.in, configure, configure.ac,
doc/Makefile.am, doc/Makefile.in, doc/xfce-nochunk.xsl,
doc/C/Makefile.am, doc/C/Makefile.in, doc/C/xfce4-panel.html,
doc/C/xfce4-panel.xml, doc/C/images/Makefile.am,
doc/C/images/Makefile.in, doc/C/images/clock-properties.png,
doc/C/images/default_panel.png, doc/C/images/handle-popup.png,
doc/C/images/item-popup.png, doc/C/images/launcher-properties.png,
doc/C/images/mailcheck-properties.png,
doc/C/images/menuitem-properties.png,
doc/C/images/nooptions-properties.png,
doc/C/images/panel-settings.png,
doc/C/images/systembuttons-properties.png: Move docs to new
location
2003-05-13 11:44 huysmans
* panel/: item_dialog.c, item_dialog.h: Menu item dialog now has
the same layout as panel item dialogs
2003-05-13 11:01 huysmans
* ChangeLog, configure, configure.ac, xfce4.spec.in,
panel/Makefile.am, panel/Makefile.in, plugins/clock/Makefile.am,
plugins/clock/Makefile.in, plugins/mailcheck/Makefile.am,
plugins/mailcheck/Makefile.in, plugins/pager/Makefile.am,
plugins/pager/Makefile.in, plugins/switcher/Makefile.am,
plugins/switcher/Makefile.in, plugins/systembuttons/Makefile.am,
plugins/systembuttons/Makefile.in, po/Makefile.in.in, po/de.gmo,
po/de.po, po/es.gmo, po/es.po, po/es_MX.gmo, po/es_MX.po,
po/fi.gmo, po/fi.po, po/fr.gmo, po/fr.po, po/ja.gmo, po/ja.po,
po/nl.gmo, po/nl.po, po/pl.gmo, po/pl.po, po/xfce4-panel.pot,
po/zh_CN.gmo, po/zh_CN.po, settings/Makefile.am,
settings/Makefile.in, themes/Crystal/Makefile.am,
themes/Crystal/Makefile.in, themes/Curve/Makefile.am,
themes/Curve/Makefile.in, themes/FreeIcons/Makefile.am,
themes/FreeIcons/Makefile.in, themes/Gnome/Makefile.am,
themes/Gnome/Makefile.in, themes/Noia/Makefile.am,
themes/Noia/Makefile.in, themes/XFce/Makefile.am,
themes/XFce/Makefile.in: Fix distcheck target. Rename package to
xfce4-panel. Set version to 3.90 (betas will be 3.90, 3.91, 3.92,
etc.)
2003-05-13 09:06 huysmans
* xfce4.spec.in: spec file tweaks
2003-05-13 08:29 huysmans
* ChangeLog, panel/controls.c, panel/controls.h,
panel/controls_dialog.c, panel/controls_dialog.h, panel/panel.c:
Add items from popup menu
2003-05-12 20:02 huysmans
* panel/item_dialog.c, po/de.gmo, po/de.po, po/es.gmo, po/es.po,
po/es_MX.gmo, po/es_MX.po, po/fi.gmo, po/fi.po, po/fr.gmo,
po/fr.po, po/ja.gmo, po/ja.po, po/nl.gmo, po/nl.po, po/pl.gmo,
po/pl.po, po/xfce4-panel.pot, po/zh_CN.gmo, po/zh_CN.po: Renamed
subpanel to menu
2003-05-12 18:37 huysmans
* panel/controls.c, panel/controls_dialog.c,
panel/controls_dialog.h, panel/groups.c, panel/groups.h,
panel/panel.c, po/de.gmo, po/de.po, po/es.gmo, po/es.po,
po/es_MX.gmo, po/es_MX.po, po/fi.gmo, po/fi.po, po/fr.gmo,
po/fr.po, po/ja.gmo, po/ja.po, po/nl.gmo, po/nl.po, po/pl.gmo,
po/pl.po, po/xfce4-panel.pot, po/zh_CN.gmo, po/zh_CN.po: Get rid of
type option menu from item dialog
2003-05-12 12:41 huysmans
* po/: de.po, es.po, es_MX.po, fi.po, fr.po, ja.po, nl.po, pl.po,
xfce4-panel.pot, zh_CN.po: Update po files
2003-05-12 12:31 huysmans
* Makefile.am, Makefile.in, aclocal.m4, configure, panel/item.c,
panel/item.h, panel/item_dialog.c, plugins/mailcheck/mailcheck.c:
Allow hiding of subpanels; remove subpanel from mailcheck plugin
2003-05-05 00:18 huysmans
* Makefile.am, Makefile.in, configure, configure.ac, xfce4.spec.in,
xfce4rc, xfce4rc.in, icons/Makefile.am, icons/Makefile.in,
panel/Makefile.am, panel/Makefile.in, plugins/clock/Makefile.am,
plugins/clock/Makefile.in, plugins/mailcheck/Makefile.am,
plugins/mailcheck/Makefile.in, plugins/pager/Makefile.am,
plugins/pager/Makefile.in, plugins/switcher/Makefile.am,
plugins/switcher/Makefile.in, plugins/systembuttons/Makefile.am,
plugins/systembuttons/Makefile.in, po/de.gmo, po/de.po, po/es.gmo,
po/es.po, po/es_MX.gmo, po/es_MX.po, po/fi.gmo, po/fi.po,
po/fr.gmo, po/fr.po, po/ja.gmo, po/ja.po, po/nl.gmo, po/nl.po,
po/pl.gmo, po/pl.po, po/xfce4-panel.pot, po/zh_CN.gmo, po/zh_CN.po,
settings/Makefile.am, settings/Makefile.in: Fixes for rpm target
and distcheck stuff
2003-05-04 00:02 xfce
* po/: fr.gmo, fr.po: Various fixes, added french translation,
fixed desktop switching in xfwm4
2003-05-03 11:43 huysmans
* Makefile.in, aclocal.m4, config.h.in, configure, configure.ac,
ltcf-c.sh, ltconfig, ltmain.sh, doc/Makefile.in, icons/Makefile.in,
panel/Makefile.in, plugins/Makefile.in, plugins/clock/Makefile.in,
plugins/mailcheck/Makefile.in, plugins/pager/Makefile.in,
plugins/switcher/Makefile.in, plugins/systembuttons/Makefile.in,
po/zh_CN.gmo, po/zh_CN.po, settings/Makefile.in,
themes/Makefile.in, themes/Crystal/Makefile.in,
themes/Curve/Makefile.in, themes/FreeIcons/Makefile.in,
themes/Gnome/Makefile.in, themes/Noia/Makefile.in,
themes/XFce/Makefile.in: Add chinese translations
2003-05-03 11:12 huysmans
* panel/controls.c: Ensure item popup menu uses panel domain for
translations
2003-05-02 22:34 huysmans
* ChangeLog, Makefile.in, aclocal.m4, config.guess, config.h.in,
config.sub, configure, ltmain.sh, doc/Makefile.in,
icons/Makefile.in, panel/Makefile.in, panel/xfce_support.c,
plugins/Makefile.in, plugins/clock/Makefile.am,
plugins/clock/Makefile.in, plugins/mailcheck/Makefile.am,
plugins/mailcheck/Makefile.in, plugins/pager/Makefile.am,
plugins/pager/Makefile.in, plugins/switcher/Makefile.am,
plugins/switcher/Makefile.in, plugins/systembuttons/Makefile.am,
plugins/systembuttons/Makefile.in, settings/Makefile.in,
themes/Makefile.in, themes/Crystal/Makefile.in,
themes/Curve/Makefile.in, themes/FreeIcons/Makefile.in,
themes/Gnome/Makefile.in, themes/Noia/Makefile.in,
themes/XFce/Makefile.in: Update to use the new panel-plugins
location
2003-05-02 19:12 bmeurer
* Makefile.in, aclocal.m4, configure, configure.ac,
doc/Makefile.in, icons/Makefile.in, m4/depends.m4,
panel/Makefile.in, panel/xfce4-panel-1.0.pc.in,
plugins/Makefile.in, plugins/clock/Makefile.in,
plugins/mailcheck/Makefile.in, plugins/pager/Makefile.in,
plugins/switcher/Makefile.in, plugins/systembuttons/Makefile.in,
plugins/systembuttons/systembuttons.c, settings/Makefile.am,
settings/Makefile.in, themes/Makefile.in,
themes/Crystal/Makefile.in, themes/Curve/Makefile.in,
themes/FreeIcons/Makefile.in, themes/Gnome/Makefile.in,
themes/Noia/Makefile.in, themes/XFce/Makefile.in: Several changes.
See http://www.home.unix-ag.org/bmeurer/xfce/index.html#20030502
for details.
2003-05-02 11:19 huysmans
* panel/controls.c: only popup warning dialog about subpanels being
removed when not empty (2)
2003-05-02 11:00 huysmans
* panel/controls_dialog.c: properly check for return values when
creating controls
2003-05-02 10:05 huysmans
* panel/: controls_dialog.c, groups.c, groups.h: only popup warning
dialog about subpanels being removed when not empty
2003-05-01 07:55 huysmans
* po/pl.gmo: Add missing gmo files
2003-04-30 19:34 bmeurer
* configure, configure.ac, panel/xfce4-panel-1.0.pc.in: Added
themedir variable to pkg-config file and increased version to
0.10.2
2003-04-30 13:37 huysmans
* panel/: main.c, mcs_client.c, panel.c: Use move handler signal to
properly keep the position up-to-date
2003-04-27 22:08 bmeurer
* configure, configure.ac, po/pl.po: Added polish translations.
2003-04-26 23:23 bmeurer
* aclocal.m4, configure: Autotools update.
2003-04-26 23:16 bmeurer
* m4/depends.m4, configure.ac: Updated BM_DEPEND_CHECK.
2003-04-26 13:53 bmeurer
* m4/debug.m4: Fixed a stupid typo.
2003-04-25 21:00 huysmans
* plugins/mailcheck/mailcheck.c: Fix startup notification setting
2003-04-25 20:48 bmeurer
* configure, configure.ac: xfce-mcs-manager version was changed to
0.1.0.
2003-04-25 20:33 bmeurer
* aclocal.m4, configure, configure.ac, ltcf-c.sh, ltconfig,
ltmain.sh, panel/Makefile.am, panel/Makefile.in,
panel/item_dialog.c, panel/item_dialog.h: Export more functions
from item*.c
2003-04-25 19:47 huysmans
* po/: de.gmo, fi.gmo, fi.po: Update finnish translations
2003-04-25 11:53 bmeurer
* m4/depends.m4: Updated depends.m4 and added macro for use with
panel plugins. Updated libxfce4util to install the common m4 files
into $(datadir)/xfce4/m4.
2003-04-25 11:23 bmeurer
* po/de.po: German translation. Provided by Moritz Heiber.
2003-04-24 11:52 huysmans
* aclocal.m4, configure, ltcf-c.sh, ltconfig, ltmain.sh,
icons/Makefile.am, icons/Makefile.in, icons/diag_icon.xpm,
icons/menu_icon.xpm, icons/xfce4-panel-icon.h,
icons/xfce4-panel.png, icons/xfce_icon.xpm, panel/icons.c,
panel/icons.h, panel/panel.c, panel/popup.c,
settings/xfce_settings_dialog.c, settings/xfce_settings_plugin.c:
New panel icon
2003-04-23 14:25 huysmans
* panel/main.c: Fix signal handling - gtk mainloop interaction
2003-04-21 22:48 huysmans
* themes/FreeIcons/minipower.png: Use Curve exit icon instead of
confusing gear
2003-04-21 20:52 bmeurer
* AUTHORS, Makefile.am, Makefile.in, NOTES, aclocal.m4, configure,
configure.ac, ltcf-c.sh, ltconfig, ltmain.sh, panel/Makefile.am,
panel/Makefile.in, panel/controls.h, panel/controls_dialog.h,
panel/groups.h, panel/icons.h, panel/item.h, panel/item_dialog.h,
panel/panel.h, panel/plugins.h, panel/popup.h, panel/settings.h,
panel/xfce.h, panel/xfce4-panel-1.0.pc.in,
plugins/clock/Makefile.am, plugins/clock/Makefile.in,
plugins/clock/clock.c, plugins/mailcheck/Makefile.am,
plugins/mailcheck/Makefile.in, plugins/mailcheck/mailcheck.c,
plugins/pager/Makefile.am, plugins/pager/Makefile.in,
plugins/pager/pager.c, plugins/switcher/Makefile.am,
plugins/switcher/Makefile.in, plugins/switcher/switcher.c,
plugins/systembuttons/Makefile.am,
plugins/systembuttons/Makefile.in,
plugins/systembuttons/systembuttons.c, settings/Makefile.am,
settings/Makefile.in, settings/xfce_settings_plugin.c,
themes/FreeIcons/Makefile.am, themes/FreeIcons/Makefile.in: Its now
possible to write panel plugins outside the panel. See the NOTES
file for details and enjoy writing new panel plugins.
2003-04-21 17:46 huysmans
* themes/FreeIcons/: Makefile.am, Makefile.in: Really rename the
theme
2003-04-21 16:26 huysmans
* configure, configure.ac, themes/Makefile.am, themes/Makefile.in,
themes/FreeIcons/Makefile.am, themes/FreeIcons/Makefile.in,
themes/FreeIcons/README, themes/FreeIcons/edit.png,
themes/FreeIcons/file1.png, themes/FreeIcons/file2.png,
themes/FreeIcons/games.png, themes/FreeIcons/man.png,
themes/FreeIcons/miniinfo.png, themes/FreeIcons/minilock.png,
themes/FreeIcons/minipalet.png, themes/FreeIcons/minipower.png,
themes/FreeIcons/multimedia.png, themes/FreeIcons/network.png,
themes/FreeIcons/newmail.png, themes/FreeIcons/nomail.png,
themes/FreeIcons/oldmail.png, themes/FreeIcons/paint.png,
themes/FreeIcons/print.png, themes/FreeIcons/schedule.png,
themes/FreeIcons/sound.png, themes/FreeIcons/terminal.png,
themes/FreeIcons/unknown.png: Rename Carillon to FreeIcons
2003-04-21 09:42 huysmans
* aclocal.m4, configure, configure.ac, ltcf-c.sh, ltconfig,
ltmain.sh, po/de.gmo, po/de.po, po/es.gmo, po/es.po, po/es_MX.gmo,
po/es_MX.po, po/fi.gmo, po/fi.po, po/fr.gmo, po/fr.po, po/ja.gmo,
po/ja.po, po/nl.gmo, po/nl.po, po/xfce4-panel.pot,
themes/Makefile.am, themes/Makefile.in: Add Carillon icon theme
(FreeIcons by Tomasz Mielnik)
2003-04-20 22:51 bmeurer
* Makefile.in, configure, configure.ac, doc/Makefile.in,
icons/Makefile.in, panel/Makefile.in, plugins/Makefile.in,
plugins/clock/Makefile.am, plugins/clock/Makefile.in,
plugins/mailcheck/Makefile.am, plugins/mailcheck/Makefile.in,
plugins/pager/Makefile.am, plugins/pager/Makefile.in,
plugins/switcher/Makefile.am, plugins/switcher/Makefile.in,
plugins/systembuttons/Makefile.am,
plugins/systembuttons/Makefile.in, settings/Makefile.am,
settings/Makefile.in, themes/Makefile.in,
themes/Crystal/Makefile.in, themes/Curve/Makefile.in,
themes/Gnome/Makefile.in, themes/Noia/Makefile.in,
themes/XFce/Makefile.in: Some autotools cleanups.
2003-04-20 13:16 huysmans
* panel/: controls.c, panel.c: unhide panel when adding new items
2003-04-20 12:30 huysmans
* panel/panel.c: more autohide tweaks
2003-04-20 11:46 huysmans
* panel/panel.c: autohide related tweaks
2003-04-20 11:38 huysmans
* panel/panel.c: autohide related tweaks
2003-04-19 23:33 bmeurer
* plugins/mailcheck/mailcheck.c: The previous change was not ment
to be commited :-)
2003-04-19 23:31 bmeurer
* Makefile.in, aclocal.m4, config.h.in, configure, configure.ac,
doc/Makefile.in, icons/Makefile.in, m4/X11.m4, m4/rpath.m4,
panel/Makefile.am, panel/Makefile.in, plugins/Makefile.in,
plugins/clock/Makefile.in, plugins/mailcheck/Makefile.in,
plugins/mailcheck/mailcheck.c, plugins/pager/Makefile.in,
plugins/switcher/Makefile.in, plugins/systembuttons/Makefile.in,
settings/Makefile.am, settings/Makefile.in, themes/Makefile.in,
themes/Crystal/Makefile.in, themes/Curve/Makefile.in,
themes/Gnome/Makefile.in, themes/Noia/Makefile.in,
themes/XFce/Makefile.in: Added system tray support to libxfcegui4
and frontend to xftaskbar4. Lots of cleanups in the autotools
stuff.
2003-04-18 23:17 huysmans
* po/: POTFILES.in, de.gmo, de.po, es.gmo, es.po, es_MX.gmo,
es_MX.po, fi.gmo, fi.po, fr.gmo, fr.po, ja.gmo, ja.po, nl.gmo,
nl.po, xfce4-panel.pot: Update file list. i18n still broken
2003-04-18 16:40 huysmans
* panel/panel.c: unhide when dragging something over the collapsed
panel
2003-04-18 11:22 huysmans
* panel/: controls_dialog.c, panel.c: This is the real fix (tm) ...
I think
2003-04-18 11:00 huysmans
* panel/panel.c: autohide, position and reorientation ...
2003-04-18 10:56 huysmans
* ChangeLog, panel/controls_dialog.c, panel/icons.c, panel/icons.h,
panel/main.c, panel/panel.c, po/de.gmo, po/es.gmo, po/es_MX.gmo,
po/fi.gmo, po/fr.gmo, po/ja.gmo, po/nl.gmo: Will this (finally) fix
the autohide <-> positioning problems?
2003-04-16 23:06 huysmans
* panel/main.c: Bug fix 2
2003-04-16 22:54 huysmans
* panel/main.c: Bug fix
2003-04-16 20:26 huysmans
* panel/: main.c, panel.c: More autohide vs position fixes
2003-04-15 10:48 huysmans
* panel/panel.c: Try to fix size request issues
2003-04-14 21:29 huysmans
* panel/panel.c: Fix centering bug
2003-04-13 23:25 huysmans
* ChangeLog: Update ChangeLog
2003-04-13 23:21 huysmans
* po/: de.po, es.po, es_MX.po, fi.po, fr.po, ja.po, nl.po,
xfce4-panel.pot: Update pot-file and Dutch translations
2003-04-13 22:10 xfce
* panel/panel.c: Remove the call to gtk_window_present() that was
causing a focus change when panel was hiding/showing
2003-04-13 22:06 xfce
* panel/panel.c: Purge gtk events when changing panel orientation
to fix a bug that was placing the panel right in the middle of the
screen when changing orientation from vertical to horizontal
2003-04-13 21:12 huysmans
* panel/panel.c: Reduce autohide interval to 500msec
2003-04-13 17:50 huysmans
* panel/panel.c: Reduce hidden size to 5
2003-04-13 17:32 huysmans
* AUTHORS, panel/global.h, panel/main.c, panel/mcs_client.c,
panel/panel.c, panel/panel.h, panel/popup.c, panel/xfce_support.c,
settings/xfce_settings.h, settings/xfce_settings_dialog.c,
settings/xfce_settings_plugin.c: Add autohide feature to the panel.
THanks to Erik Touve.
2003-04-09 22:40 bmeurer
* Makefile.in, aclocal.m4, config.guess, config.sub, configure,
depcomp, ltconfig, doc/Makefile.in, icons/Makefile.in, m4/debug.m4,
panel/Makefile.in, plugins/Makefile.in, plugins/clock/Makefile.in,
plugins/mailcheck/Makefile.in, plugins/pager/Makefile.in,
plugins/switcher/Makefile.in, plugins/systembuttons/Makefile.in,
settings/Makefile.in, themes/Makefile.in,
themes/Crystal/Makefile.in, themes/Curve/Makefile.in,
themes/Gnome/Makefile.in, themes/Noia/Makefile.in,
themes/XFce/Makefile.in: Improved debug.m4:
1) --disable-debug no longer disables assert()'s
2) --enable-profiling now enables profiling code
3) --disable-asserts allows disabling of assert()'s
2003-04-05 14:42 xfce
* panel/popup.c: Force popup to be sticky each time the window is
shown
2003-04-04 00:08 bmeurer
* aclocal.m4, configure, configure.ac, m4/depends.m4: Updated
BM_DEPEND_CHECK to make it possible to disable the test
2003-04-03 23:35 bmeurer
* Makefile.in, aclocal.m4, config.guess, config.sub, configure,
depcomp, ltcf-c.sh, ltconfig, ltmain.sh, doc/Makefile.in,
icons/Makefile.in, m4/depends.m4, panel/Makefile.in,
plugins/Makefile.in, plugins/clock/Makefile.in,
plugins/mailcheck/Makefile.in, plugins/pager/Makefile.in,
plugins/switcher/Makefile.in, plugins/systembuttons/Makefile.in,
settings/Makefile.in, themes/Makefile.in,
themes/Crystal/Makefile.in, themes/Curve/Makefile.in,
themes/Gnome/Makefile.in, themes/Noia/Makefile.in,
themes/XFce/Makefile.in: Fixed BM_DEPEND_CHECK
2003-04-02 23:18 xfce
* ChangeLog: Update ChangeLog
2003-04-02 22:29 bmeurer
* panel/Makefile.am, panel/Makefile.in, panel/debug.h,
panel/global.h, panel/panel.c, panel/popup.c, panel/xfce.h,
plugins/clock/clock.c: Debugging stuff now provided by
libxfce4util. As a result of this change libxfcegui4 now depends on
libxfce4util. Some other updates. added a hint to the libxfcegui4
README for Xinerama problems with XFree86.
2003-04-02 22:26 bmeurer
* aclocal.m4, config.h.in, configure, m4/debug.m4: Debugging stuff
now provided by libxfce4util. As a result of this change
libxfcegui4 now depends on libxfce4util. Some other updates.
added a hint to the libxfcegui4 README for Xinerama problems with
XFree86.
2003-04-02 21:33 huysmans
* ChangeLog, TODO: Update TODO
2003-04-02 20:32 huysmans
* Makefile.am, Makefile.in: Include .indent.pro in dist target
2003-04-02 20:20 huysmans
* .indent.pro, HACKING, Makefile.am, Makefile.in, aclocal.m4,
config.guess, config.sub, configure, depcomp, ltcf-c.sh, ltconfig,
ltmain.sh, doc/Makefile.in, icons/Makefile.in, panel/Makefile.in,
panel/controls.c, panel/controls.h, panel/controls_dialog.c,
panel/controls_dialog.h, panel/global.h, panel/groups.c,
panel/groups.h, panel/icons.c, panel/icons.h, panel/item.c,
panel/item.h, panel/item_dialog.c, panel/item_dialog.h,
panel/main.c, panel/main.h, panel/mcs_client.c, panel/mcs_client.h,
panel/panel.c, panel/panel.h, panel/plugins.h, panel/popup.c,
panel/popup.h, panel/settings.c, panel/settings.h, panel/xfce.h,
panel/xfce_support.c, panel/xfce_support.h, plugins/Makefile.in,
plugins/clock/Makefile.in, plugins/clock/clock.c,
plugins/mailcheck/Makefile.in, plugins/mailcheck/mailcheck.c,
plugins/pager/Makefile.in, plugins/pager/pager.c,
plugins/switcher/Makefile.in, plugins/switcher/switcher.c,
plugins/systembuttons/Makefile.in,
plugins/systembuttons/systembuttons.c, settings/Makefile.in,
settings/xfce_settings.h, settings/xfce_settings_dialog.c,
settings/xfce_settings_dialog.h, settings/xfce_settings_plugin.c,
settings/xfce_settings_plugin.h, themes/Makefile.in,
themes/Crystal/Makefile.in, themes/Curve/Makefile.in,
themes/Gnome/Makefile.in, themes/Noia/Makefile.in,
themes/XFce/Makefile.in: Re-indent files. Add HACKING and
.indent.pro
2003-04-02 19:33 bmeurer
* aclocal.m4, configure, configure.ac, m4/debug.m4: left-over
autostuff for libxfce*, xfcs-mcs-* and xfce4
2003-04-02 18:02 bmeurer
* config.h.in, configure, configure.ac, m4/X11.m4,
panel/controls.c, panel/controls_dialog.c, panel/groups.c,
panel/icons.c, panel/item.c, panel/item_dialog.c, panel/main.c,
panel/mcs_client.c, panel/my_gettext.h, panel/panel.c,
panel/popup.c, panel/settings.c, panel/xfce_support.c,
plugins/clock/clock.c, plugins/mailcheck/mailcheck.c,
plugins/pager/pager.c, plugins/switcher/switcher.c,
plugins/systembuttons/systembuttons.c,
settings/xfce_settings_dialog.c, settings/xfce_settings_plugin.c:
Updated i18n stuff (libxfce4util now provides a i18n.h). updated
X11.m4 updated xfwm4 to compile well with -Werror -Wall updated
xfce-mcs-plugins and added a hint to the README for XFree86 users
2003-04-02 15:24 bmeurer
* Makefile.am, Makefile.in, NOTES, aclocal.m4, autogen.sh,
config.guess, config.h.in, config.sub, configure, configure.ac,
depcomp, example.xfce4rc.in, install-sh, ltcf-c.sh, ltconfig,
ltmain.sh, missing, mkinstalldirs, xfce4.spec.in, xfce4rc.in,
doc/Makefile.in, icons/Makefile.am, icons/Makefile.in, m4/X11.m4,
m4/debug.m4, m4/depends.m4, m4/i18n.m4, m4/rpath.m4,
panel/Makefile.am, panel/Makefile.in, panel/item_dialog.c,
panel/main.c, panel/xfce_support.c, panel/xfce_support.h,
plugins/Makefile.am, plugins/Makefile.in,
plugins/clock/Makefile.am, plugins/clock/Makefile.in,
plugins/clock/clock.c, plugins/mailcheck/Makefile.am,
plugins/mailcheck/Makefile.in, plugins/mailcheck/mailcheck.c,
plugins/pager/Makefile.am, plugins/pager/Makefile.in,
plugins/pager/pager.c, plugins/switcher/Makefile.am,
plugins/switcher/Makefile.in, plugins/switcher/switcher.c,
plugins/systembuttons/Makefile.am,
plugins/systembuttons/Makefile.in,
plugins/systembuttons/systembuttons.c, po/Makefile.in.in,
settings/Makefile.am, settings/Makefile.in,
settings/xfce_settings_dialog.c, settings/xfce_settings_plugin.c,
themes/Makefile.am, themes/Makefile.in, themes/Crystal/Makefile.in,
themes/Curve/Makefile.in, themes/Gnome/Makefile.in,
themes/Noia/Makefile.in, themes/XFce/Makefile.in: Large autotools
update. Should fix James problems with unsubstituted @PKG_LDFLAGS@
in .pc files. Should also make it easier to port XFce4 to a
non-POSIX (or even non-UNIX) plattform, using autoconf.
2003-04-01 23:33 xfce
* settings/xfce_settings_plugin.c: Initialize early i18n in mcs
plugins Add Etria theme
2003-04-01 08:14 huysmans
* panel/main.c: Remove SIGHUP handling
2003-03-29 16:19 huysmans
* po/: de.gmo, de.po: Update german translations
2003-03-27 22:37 xfce
* panel/panel.c, panel/popup.c, plugins/pager/pager.c: Prefer
gdk_screen[width|height] instead of XDisplay[Width|Height]
2003-03-27 21:32 xfce
* ChangeLog: Update ChangeLog
2003-03-25 22:28 huysmans
* panel/xfce_support.c: escape spaces in paths obtaine from gtk
file selector
2003-03-24 21:01 huysmans
* panel/item.c: Fix DND bug. Reported by Jens Guballa.
2003-03-23 23:18 huysmans
* panel/: controls_dialog.c, item_dialog.c, main.c: Make dialogs
appear on top even if panel is in below layer
2003-03-23 22:17 xfce
* ChangeLog: Update ChangeLog
2003-03-20 00:14 xfce
* panel/controls_dialog.c, panel/item_dialog.c,
settings/xfce_settings_dialog.c: Add GTK_WIDGET_SET_FLAGS (button,
GTK_CAN_DEFAULT) to the buttons that should have it
2003-03-19 08:12 huysmans
* autogen.sh: Only add extra autogen parameters when none are given
2003-03-18 23:34 xfce
* ChangeLog: Update ChangeLog Update build scripts (ie rerun
autogen.sh) Update xfwm4's microdeck theme Remove 1 pix border
arround xffm menu bar
2003-03-13 22:55 bmeurer
* panel/mcs_client.c, panel/main.c,
plugins/systembuttons/systembuttons.c: show_*() -> xfce_*()
2003-03-13 21:39 xfce
* ChangeLog: Update Changelogs
2003-03-10 22:16 bmeurer
* example.xfce4rc.in: Use xfprint-manager in the panel.
2003-03-09 19:37 huysmans
* panel/: controls_dialog.c, main.c, panel.c: Edge center and
corner snapping. Position saving fixes.
2003-03-05 14:12 huysmans
* panel/panel.c: check position before saving it
2003-03-05 13:58 huysmans
* ChangeLog, TODO: Small documentation update
2003-03-02 18:10 xfce
* po/: fr.gmo, fr.po: Rearrange button events handler in xfwm4
Update french translation for xfce4 panel
2003-03-01 00:38 xfce
* Makefile.in, aclocal.m4, config.guess, config.h.in, config.sub,
configure, ltcf-c.sh, ltconfig, ltmain.sh, doc/Makefile.in,
icons/Makefile.in, panel/Makefile.in, plugins/Makefile.in,
plugins/clock/Makefile.in, plugins/mailcheck/Makefile.in,
plugins/pager/Makefile.in, plugins/switcher/Makefile.in,
plugins/systembuttons/Makefile.in, settings/Makefile.in,
themes/Makefile.in, themes/Crystal/Makefile.in,
themes/Curve/Makefile.in, themes/Gnome/Makefile.in,
themes/Noia/Makefile.in, themes/XFce/Makefile.in: [no log message]
2003-02-28 20:09 bmeurer
* example.xfce4rc.in: Fixed type "xfhelp" -> "xfhelp4"
2003-02-28 19:42 xfce
* Makefile.in, aclocal.m4, config.guess, configure, ltmain.sh,
doc/Makefile.in, icons/Makefile.in, panel/Makefile.in,
plugins/Makefile.in, plugins/clock/Makefile.in,
plugins/mailcheck/Makefile.in, plugins/pager/Makefile.in,
plugins/switcher/Makefile.in, plugins/systembuttons/Makefile.in,
settings/Makefile.in, themes/Makefile.in,
themes/Crystal/Makefile.in, themes/Curve/Makefile.in,
themes/Gnome/Makefile.in, themes/Noia/Makefile.in,
themes/XFce/Makefile.in: Fix xfce-mcs-manager API/ABI versionning
Update configure/libtool to use libtool 1.4.3
2003-02-28 11:53 bmeurer
* configure, Makefile.in, aclocal.m4, config.guess, configure.ac,
ltcf-c.sh, ltconfig, ltmain.sh, doc/Makefile.in, icons/Makefile.in,
panel/Makefile.in, plugins/clock/Makefile.in, plugins/Makefile.in,
plugins/mailcheck/Makefile.in, plugins/pager/Makefile.in,
plugins/switcher/Makefile.in, plugins/systembuttons/Makefile.in,
settings/Makefile.in, themes/Makefile.in,
themes/Crystal/Makefile.in, themes/Curve/Makefile.in,
themes/Gnome/Makefile.in, themes/Noia/Makefile.in,
themes/XFce/Makefile.in: Fixes xfce-mcs-manager issue.
2003-02-27 22:48 xfce
* configure: Updates (I'm sure you wouldn't have guessed)
2003-02-26 15:39 huysmans
* panel/main.c: POSIX signal handling
2003-02-26 11:21 huysmans
* configure, configure.ac, po/ja.gmo, po/ja.po: Add japanese
translations
2003-02-26 08:17 xfce
* Makefile.in, aclocal.m4, config.guess, config.sub, configure,
ltmain.sh, doc/Makefile.in, icons/Makefile.in, panel/Makefile.in,
panel/xfce_support.c, plugins/Makefile.in,
plugins/clock/Makefile.in, plugins/mailcheck/Makefile.in,
plugins/pager/Makefile.in, plugins/switcher/Makefile.in,
plugins/systembuttons/Makefile.in, settings/Makefile.in,
settings/xfce_settings_dialog.c, settings/xfce_settings_plugin.c,
themes/Makefile.in, themes/Crystal/Makefile.in,
themes/Curve/Makefile.in, themes/Gnome/Makefile.in,
themes/Noia/Makefile.in, themes/XFce/Makefile.in: Apply Benedikt
Meurer <Benedikt.Meurer@unix-ag.uni-siegen.de> patch Replace all
occurences of g_getenv("HOME") with g_get_home_dir() Regenerate all
Makefiles.on and configure scripts
2003-02-25 23:18 huysmans
* plugins/systembuttons/systembuttons.c: Use xflock4
2003-02-25 22:19 huysmans
* autogen.sh: Fix proper use of AC_PROG_LIBTOOL
2003-02-25 11:54 huysmans
* Makefile.in, aclocal.m4, configure, doc/Makefile.in,
icons/Makefile.in, panel/Makefile.in, plugins/Makefile.in,
plugins/clock/Makefile.in, plugins/mailcheck/Makefile.in,
plugins/pager/Makefile.in, plugins/switcher/Makefile.in,
plugins/systembuttons/Makefile.in, settings/xfce_settings_dialog.c,
themes/Makefile.in, themes/Crystal/Makefile.in,
themes/Curve/Makefile.in, themes/Gnome/Makefile.in,
themes/Noia/Makefile.in, themes/XFce/Makefile.in: Update
screenshots for new dialog style
2003-02-24 23:10 huysmans
* settings/: Makefile.in, xfce_settings_dialog.c: Use frames in
dialog for the sake of consistency.
2003-02-24 20:56 huysmans
* panel/: popup.c, panel.c: Revert to using gtk to move the panels.
No more flicker, yay.
2003-02-23 23:22 huysmans
* panel/popup.c: Use gdk_window_move to position subpanel. gtk does
not ignore margins
2003-02-22 11:30 huysmans
* ChangeLog: Actually install doc images ...
2003-02-18 22:56 xfce
* panel/panel.c: Use xflock4 instead of xflock (same file, just a
name change for xfce4)
2003-02-17 14:20 huysmans
* panel/Makefile.in: Fix make dist. Add my_gettext.h to sources in
Makefile.
2003-02-17 14:14 huysmans
* Makefile.am, Makefile.in, icons/Makefile.am, icons/Makefile.in,
icons/xfce_slogan.xpm, panel/Makefile.am, panel/Makefile.in,
panel/info.c, panel/info.h, panel/panel.c,
plugins/systembuttons/systembuttons.c, po/ChangeLog,
po/POTFILES.in, po/de.gmo, po/de.po, po/es.gmo, po/es.po,
po/es_MX.gmo, po/es_MX.po, po/fi.gmo, po/fi.po, po/fr.gmo,
po/fr.po, po/nl.gmo, po/nl.po, po/xfce4-panel.pot: Remove info
panel. Use xfce4-about instead.
2003-02-15 20:28 huysmans
* ChangeLog, configure, configure.ac, example.xfce4rc.in,
panel/controls.c, plugins/Makefile.am, plugins/Makefile.in,
plugins/clock/Makefile.am, plugins/clock/Makefile.in,
plugins/mailcheck/Makefile.am, plugins/mailcheck/Makefile.in,
plugins/pager/Makefile.am, plugins/pager/Makefile.in,
plugins/pager/pager.c, plugins/switcher/Makefile.am,
plugins/switcher/Makefile.in, plugins/switcher/switcher.c,
plugins/systembuttons/Makefile.am,
plugins/systembuttons/Makefile.in: Split graphical pager out from
switcher plugin. Add it to the default configuration
2003-02-14 22:46 xfce
* panel/xfce_support.c: Use static var for startup notification
internals
2003-02-14 21:40 huysmans
* panel/xfce_support.c: Fix typo
2003-02-14 20:57 huysmans
* panel/xfce_support.c: Don't use a variable after freeing it ...
2003-02-14 12:45 xfce
* panel/xfce_support.c: Fix crash at logout
2003-02-14 12:14 xfce
* panel/: main.c, xfce_support.c, xfce_support.h: Fix startup
notification/GdkScreen problems
2003-02-14 10:34 xfce
* panel/xfce_support.c: Fix use of gtk+-2.2 function in
xfce_support
2003-02-13 22:42 huysmans
* TODO: Update TODO list
2003-02-13 21:22 huysmans
* panel/: controls.c, panel.c: Small fixes to position setting and
other cleanups
2003-02-12 15:59 huysmans
* panel/icons.h, panel/item_dialog.c, panel/xfce_support.c,
panel/xfce_support.h, plugins/systembuttons/systembuttons.c:
Properly use const keyword in several places
2003-02-12 09:52 xfce
* panel/xfce_support.c: [no log message]
2003-02-12 07:53 huysmans
* panel/: controls.c, panel.c: Fix menu translation functions
2003-02-11 20:48 xfce
* ChangeLog: Update ChangeLog
2003-02-11 20:43 xfce
* panel/xfce_support.c: Add additional sanity checks to satrtup
notification code.
2003-02-11 19:07 xfce
* panel/xfce_support.c: [no log message]
2003-02-11 17:40 xfce
* panel/xfce_support.c: Make sure we don't free system var environ
by mistake...
2003-02-10 22:57 huysmans
* configure, configure.ac, po/es_MX.gmo, po/es_MX.po: Forgot to put
old spanish translations back as es_MX
2003-02-10 20:39 huysmans
* po/: es.gmo, es.po, fi.gmo, fi.po: Update spanish translations
2003-02-10 13:17 xfce
* panel/xfce_support.c: Increase startup notification timeout to 30
seconds
2003-02-10 12:51 xfce
* Makefile.in, aclocal.m4, config.h.in, configure, configure.ac,
doc/Makefile.in, icons/Makefile.in, panel/Makefile.am,
panel/Makefile.in, panel/info.c, panel/item.c, panel/item.h,
panel/item_dialog.c, panel/panel.c, panel/xfce_support.c,
panel/xfce_support.h, plugins/Makefile.in,
plugins/clock/Makefile.in, plugins/mailcheck/Makefile.am,
plugins/mailcheck/Makefile.in, plugins/mailcheck/mailcheck.c,
plugins/switcher/Makefile.in, plugins/systembuttons/Makefile.in,
plugins/systembuttons/systembuttons.c, settings/Makefile.in,
themes/Makefile.in, themes/Crystal/Makefile.in,
themes/Curve/Makefile.in, themes/Gnome/Makefile.in,
themes/Noia/Makefile.in, themes/XFce/Makefile.in: Add support for
startup notification from freedesktop.org standard Fix a few memory
leaks
2003-02-04 12:01 huysmans
* ChangeLog, example.xfce4rc.in: Fix the default rc file to show
the correct number of items
2003-02-04 11:00 huysmans
* Makefile.am, Makefile.in, configure, configure.ac,
example.xfce4rc.in, doc/Makefile.am, doc/Makefile.in, po/de.gmo,
po/es.gmo, po/fi.gmo, po/fr.gmo, po/nl.gmo: Add documentation
framework and some preliminary text
2003-02-03 19:44 huysmans
* settings/xfce_settings_dialog.c: Fix setting the correct theme in
the dialog
2003-02-03 09:31 huysmans
* plugins/systembuttons/systembuttons.c: Fix systembutton sizing
2003-02-02 22:02 huysmans
* ChangeLog, po/POTFILES.in, po/de.po, po/es.po, po/fi.po,
po/fr.po, po/nl.po, po/xfce4-panel.pot: Update translatable strings
2003-02-02 21:29 huysmans
* panel/item_dialog.c, panel/panel.c,
plugins/systembuttons/systembuttons.c,
settings/xfce_settings_dialog.c: Oh, I don't know. Random changes I
guess
2003-02-02 14:20 huysmans
* ChangeLog, example.xfce4rc.in, panel/controls.c,
plugins/systembuttons/systembuttons.c: Updates assorti, mainly
systembuttons
2003-02-02 13:39 huysmans
* plugins/systembuttons/systembuttons.c: Improve arranging
systembuttons
2003-02-02 09:49 huysmans
* plugins/mailcheck/mailcheck.c: Fix mail check.
2003-02-01 20:34 huysmans
* configure, configure.ac, plugins/Makefile.am,
plugins/Makefile.in, plugins/mailcheck/mailcheck.c, po/de.gmo,
po/es.gmo, po/fi.gmo, po/fr.gmo, po/nl.gmo: Remove trash plugin.
Cleanup mailcheck plugin
2003-02-01 15:08 xfce
* settings/xfce_settings.h: Use "xfce" lowercase for channel name
2003-02-01 14:37 huysmans
* plugins/clock/clock.c: Fix crash when changing clock type
2003-02-01 14:23 huysmans
* AUTHORS, plugins/clock/clock.c: Small cleanup
2003-02-01 14:16 huysmans
* AUTHORS, ChangeLog, plugins/clock/clock.c, po/de.po, po/es.po,
po/fi.po, po/fr.po, po/nl.po, po/xfce4-panel.pot: Cleanup clock
plugin. Update to gettext 0.11.5
2003-02-01 10:44 huysmans
* po/: fi.gmo, fi.po: Update finnish translations
2003-02-01 09:29 huysmans
* panel/item.c: Fix bug where libxml ate special characters. Patch
by Michael Mosier.
2003-01-30 17:18 huysmans
* panel/panel.c: Make handle look a bit better when size >= MEDIUM
2003-01-30 17:12 huysmans
* panel/info.c: Make dialog look a bit better
2003-01-30 16:51 huysmans
* AUTHORS, COPYING, ChangeLog, icons/xfce_slogan.xpm, panel/info.c,
po/POTFILES.in, po/de.gmo, po/de.po, po/es.gmo, po/es.po,
po/fi.gmo, po/fi.po, po/fr.gmo, po/fr.po, po/nl.gmo, po/nl.po,
po/xfce4-panel.pot: Update info text. Use AUTHORS for the credits
page. Fix strange characters in COPYING
2003-01-30 14:32 huysmans
* panel/: Makefile.am, Makefile.in, handle.c, handle.h, info.h,
panel.c: Remove handle.[ch]. Code moved to panel.c.
2003-01-30 12:53 huysmans
* ChangeLog, panel/Makefile.am, panel/Makefile.in,
panel/callbacks.c, panel/callbacks.h, panel/groups.c,
panel/handle.c, panel/item.c, panel/popup.c, panel/popup.h: Remove
callbacks.[ch]. Last remaining functions moved to popup.c
2003-01-29 16:40 huysmans
* README, TODO, panel/callbacks.c, panel/callbacks.h,
panel/global.h, panel/item.c, panel/item.h, panel/item_dialog.c,
panel/item_dialog.h, panel/popup.c, panel/popup.h, po/de.gmo,
po/es.gmo, po/fi.gmo, po/fr.gmo, po/nl.gmo,
settings/xfce_settings.h: Cleanup. Unify PanelItem and MenuItem to
avoid code duplication. Small bug fixes.
2003-01-29 13:14 huysmans
* ChangeLog, po/de.po, po/es.po, po/fi.po, panel/Makefile.am,
po/fr.po, po/nl.po, po/xfce4-panel.pot, panel/Makefile.in,
panel/controls.c, panel/groups.c, panel/main.c, panel/mcs_client.c,
panel/mcs_client.h, panel/panel.c, panel/settings.c: Cleanup
configuration handling and other fixes. Includes string changes.
2003-01-28 22:50 huysmans
* panel/item_dialog.c: Fix menu item reordering
2003-01-28 16:35 huysmans
* ChangeLog, panel/global.h, panel/groups.c, panel/icons.c,
panel/main.c, panel/panel.c, plugins/switcher/switcher.c: Several
small cleanups and some gratuitous reformating
2003-01-27 23:00 huysmans
* ChangeLog, configure, panel/controls.c, panel/controls.h,
panel/global.h, panel/groups.c, panel/groups.h, panel/handle.c,
panel/handle.h, panel/mcs_client.c, panel/panel.c, panel/panel.h,
panel/popup.c, panel/popup.h, plugins/switcher/switcher.c,
plugins/systembuttons/systembuttons.c, settings/xfce_settings.h,
settings/xfce_settings_dialog.c, settings/xfce_settings_plugin.c:
Remove old style and switcher minibuttons
2003-01-26 19:33 huysmans
* configure.ac, po/fi.gmo, po/fi.po: Add Finnish translations
2003-01-25 22:26 huysmans
* panel/controls_dialog.c: Don't ask for removal confirmation for
controls without popup menu
2003-01-25 19:30 huysmans
* plugins/systembuttons/systembuttons.c: Add orientation to
systembuttons
2003-01-25 14:14 huysmans
* po/: de.gmo, de.po: Really add german translation
2003-01-25 14:12 huysmans
* configure, configure.ac: Add german translation
2003-01-25 13:24 huysmans
* ChangeLog, plugins/clock/clock.c, plugins/switcher/switcher.c,
plugins/systembuttons/systembuttons.c: Hide popup for clock and
systembuttons
2003-01-24 16:18 xfce
* plugins/clock/Makefile.am, plugins/clock/Makefile.in,
plugins/clock/clock.c, plugins/mailcheck/Makefile.am,
plugins/mailcheck/Makefile.in, plugins/mailcheck/mailcheck.c,
plugins/switcher/Makefile.am, plugins/switcher/Makefile.in,
plugins/switcher/switcher.c, plugins/systembuttons/Makefile.am,
plugins/systembuttons/Makefile.in,
plugins/systembuttons/systembuttons.c,
settings/xfce_settings_dialog.c: Fix a bunch of i18n problems:
bindtextdomain must be invoked each time a plugin has to display
something otherwise other bindtextdomains take precedence and
display is not translated anymore...
2003-01-24 15:57 xfce
* po/: es.gmo, es.po, fr.gmo, fr.po, nl.gmo, nl.po,
xfce4-panel.pot: Fix encoding not specified in es.po, regenerate
pot file (required after Edscott fixed a typo in the source) and
adjust french translation.
2003-01-24 15:39 xfce
* Makefile.in, aclocal.m4, config.h.in, configure, configure.ac,
icons/Makefile.in, panel/Makefile.in, plugins/Makefile.in,
plugins/clock/Makefile.in, plugins/mailcheck/Makefile.in,
plugins/switcher/Makefile.in, plugins/systembuttons/Makefile.in,
po/fr.gmo, po/fr.po, settings/Makefile.in, themes/Makefile.in,
themes/Crystal/Makefile.in, themes/Curve/Makefile.in,
themes/Gnome/Makefile.in, themes/Noia/Makefile.in,
themes/XFce/Makefile.in: Add french xtion.
2003-01-24 14:33 edscott
* Makefile.in, aclocal.m4, config.h.in, configure, configure.ac,
icons/Makefile.in, panel/Makefile.in, panel/icons.c,
plugins/Makefile.in, plugins/clock/Makefile.in,
plugins/mailcheck/Makefile.in, plugins/switcher/Makefile.in,
plugins/systembuttons/Makefile.in, po/es.gmo, po/es.po, po/nl.gmo,
po/nl.po, settings/Makefile.in, themes/Makefile.in,
themes/Crystal/Makefile.in, themes/Curve/Makefile.in,
themes/Gnome/Makefile.in, themes/Noia/Makefile.in,
themes/XFce/Makefile.in: added spanish translation and fixed a typo
in source code
2003-01-24 12:53 huysmans
* ChangeLog, Makefile.am, Makefile.in, aclocal.m4, config.h.in,
configure, configure.ac, icons/Makefile.in, panel/Makefile.am,
panel/Makefile.in, panel/callbacks.c, panel/controls.c,
panel/controls_dialog.c, panel/global.h, panel/groups.c,
panel/handle.c, panel/icons.c, panel/info.c, panel/item.c,
panel/item_dialog.c, panel/main.c, panel/mcs_client.c,
panel/my_gettext.h, panel/panel.c, panel/popup.c, panel/settings.c,
panel/xfce_support.c, plugins/Makefile.in,
plugins/clock/Makefile.am, plugins/clock/Makefile.in,
plugins/clock/clock.c, plugins/mailcheck/Makefile.am,
plugins/mailcheck/Makefile.in, plugins/mailcheck/mailcheck.c,
plugins/switcher/Makefile.am, plugins/switcher/Makefile.in,
plugins/switcher/switcher.c, plugins/systembuttons/Makefile.am,
plugins/systembuttons/Makefile.in,
plugins/systembuttons/systembuttons.c, po/Makefile.in.in,
po/POTFILES.in, po/nl.gmo, po/nl.po, po/xfce4-panel.pot,
settings/Makefile.am, settings/Makefile.in,
settings/xfce_settings_dialog.c, settings/xfce_settings_plugin.c,
themes/Makefile.in, themes/Crystal/Makefile.in,
themes/Curve/Makefile.in, themes/Gnome/Makefile.in,
themes/Noia/Makefile.in, themes/XFce/Makefile.in: Add i18n
framework and Dutch translation
2003-01-21 20:12 huysmans
* ChangeLog, panel/controls.c, panel/panel.c: Small things that
weren't committed yet
2003-01-19 23:22 huysmans
* panel/controls.c: Fixing popup menu positioning
2003-01-19 22:51 huysmans
* panel/: controls.c, panel.c: Use edit/remove/add menu on panel
control right-click
2003-01-19 17:39 madkiss
* panel/xfce_support.c:
Line 209: Change "char c;" to "int c;" since "char" can end in an
infinite loop. Please also refer to Debian GNU/Linux bugreport
#177429, available at http://bugs.debian.org/177429
2003-01-19 15:34 huysmans
* panel/: callbacks.c, main.c, panel.c: Fix problem with dragging
files that contain spaces
2003-01-18 18:13 huysmans
* panel/panel.c: Damnit I must learn some basic math. Got the
ratios the wrong way around
2003-01-18 17:20 huysmans
* panel/panel.c: Save screen width and height, so we can use a
relative position, when the user logs in with a different screen
resolution
2003-01-18 11:37 huysmans
* panel/popup.c: Open a menu when dragging over the toggle button.
Thanks to perldude for suggesting it. This is a cool feature
2003-01-18 10:51 huysmans
* panel/: mcs_client.c, panel.c, panel.h, popup.c: Use
gdk_window_move() to prevent margins from interfering with position
setting
2003-01-18 00:06 huysmans
* panel/controls_dialog.c: revert changes that made saving changes
fail
2003-01-17 21:15 huysmans
* ChangeLog, panel/controls_dialog.c, plugins/switcher/switcher.c:
Use updated netk functions for workspace names and other dialog
fixes
2003-01-17 11:24 huysmans
* Makefile.in, aclocal.m4, configure, icons/Makefile.in,
panel/handle.c, plugins/Makefile.in, plugins/clock/Makefile.in,
plugins/mailcheck/Makefile.in, plugins/switcher/Makefile.in,
plugins/systembuttons/Makefile.in, settings/Makefile.in,
settings/xfce_settings_dialog.c, themes/Makefile.in,
themes/Crystal/Makefile.in, themes/Curve/Makefile.in,
themes/Gnome/Makefile.in, themes/Noia/Makefile.in,
themes/XFce/Makefile.in: Use same border width gtk uses in dialog
action area. Some reordering in the panel dialog. Looks better IMO.
2003-01-13 11:17 huysmans
* ChangeLog, panel/item_dialog.c: Really fix crash in menu
2003-01-12 23:41 huysmans
* panel/: Makefile.in, item_dialog.c: Fix panel crash when removing
menu items
2003-01-12 23:20 huysmans
* panel/callbacks.c: Fix bug in mouse press handling that stopped
the menu from working
2003-01-12 21:33 xfce
* Makefile.in, aclocal.m4, configure, configure.ac, xfce4.spec.in,
icons/Makefile.in, panel/Makefile.in, plugins/Makefile.in,
plugins/clock/Makefile.in, plugins/mailcheck/Makefile.in,
plugins/switcher/Makefile.in, plugins/systembuttons/Makefile.in,
settings/Makefile.am, settings/Makefile.in, themes/Makefile.in,
themes/Crystal/Makefile.in, themes/Curve/Makefile.in,
themes/Gnome/Makefile.in, themes/Noia/Makefile.in,
themes/XFce/Makefile.in: Add a check for availability of
xfce-mcs-manager
2003-01-12 20:50 huysmans
* panel/: callbacks.c, controls.c, handle.c: Use SHIFT-button1 as
equivalent for right-click
2003-01-11 19:58 huysmans
* panel/: Makefile.am, Makefile.in: Rename binary to xfce4-panel
2003-01-11 17:31 huysmans
* ChangeLog, configure, configure.ac, panel/mcs_client.c,
settings/Makefile.am, settings/Makefile.in: Update to use new
settings manager plugin path
2003-01-11 13:08 huysmans
* ChangeLog, Makefile.in, aclocal.m4, configure, configure.ac,
icons/Makefile.in, panel/Makefile.in, panel/mcs_client.c,
plugins/Makefile.in, plugins/clock/Makefile.in,
plugins/mailcheck/Makefile.in, plugins/switcher/Makefile.in,
plugins/systembuttons/Makefile.in, settings/Makefile.in,
settings/xfce_settings_dialog.c, themes/Makefile.in,
themes/Crystal/Makefile.in, themes/Curve/Makefile.in,
themes/Gnome/Makefile.in, themes/Noia/Makefile.in,
themes/XFce/Makefile.in: Use new check for running settings manager
2003-01-10 00:02 xfce
* Makefile.in, config.h.in, configure, configure.ac, xfce4.spec.in,
icons/Makefile.in, panel/Makefile.in, plugins/Makefile.in,
plugins/clock/Makefile.in, plugins/mailcheck/Makefile.in,
plugins/switcher/Makefile.in, plugins/systembuttons/Makefile.in,
settings/Makefile.in, themes/Makefile.in,
themes/Crystal/Makefile.in, themes/Curve/Makefile.in,
themes/Gnome/Makefile.in, themes/Noia/Makefile.in,
themes/XFce/Makefile.in: Update dependencies on libxfcegui4 version
and libxfce4mcs
2003-01-09 23:53 xfce
* Makefile.in, aclocal.m4, configure, icons/Makefile.in,
panel/Makefile.in, plugins/Makefile.in, plugins/clock/Makefile.in,
plugins/mailcheck/Makefile.in, plugins/switcher/Makefile.in,
plugins/systembuttons/Makefile.in, settings/Makefile.am,
settings/Makefile.in, themes/Makefile.in,
themes/Crystal/Makefile.in, themes/Curve/Makefile.in,
themes/Gnome/Makefile.in, themes/Noia/Makefile.in,
themes/XFce/Makefile.in: Add " -avoid-version " to
libxfce4settings_la_LDFLAGS in settings/Makefile.am
2003-01-09 23:25 huysmans
* panel/: item_dialog.c, popup.c, popup.h: Fix possible bug in menu
item ordering. See if you can break this one perldude :)
2003-01-09 08:05 huysmans
* ChangeLog, plugins/switcher/switcher.c,
plugins/systembuttons/systembuttons.c: Fix bug in calling
mcs_dialog(). Thanks to L. Friendman for pointing it out.
2003-01-08 15:55 huysmans
* panel/: handle.c, mcs_client.c, mcs_client.h: Add option to run
settings manager dialog to right-click menu on move handles
2003-01-08 14:15 huysmans
* ChangeLog, settings/xfce_settings_dialog.c: Add new header to
xfce4 plugin and add a bit more border
2003-01-08 13:27 huysmans
* panel/info.c, settings/xfce_settings_dialog.c: Use new dialog
header for settings plugin
2003-01-05 16:55 huysmans
* ChangeLog, panel/global.h, panel/main.c, panel/mcs_client.c,
panel/xfce_support.c, panel/xfce_support.h,
settings/xfce_settings_dialog.c: Use dialogs from libxfcegui4
2003-01-04 09:49 huysmans
* settings/xfce_settings_plugin.c: Use inline icon
2003-01-02 12:34 huysmans
* panel/xfce_support.c: Fix small bug in localized config file
names
2002-12-31 12:20 huysmans
* plugins/switcher/switcher.c: Resize on workspace
creation/deletion
2002-12-31 12:12 huysmans
* ChangeLog, Makefile.in, aclocal.m4, configure, icons/Makefile.am,
icons/Makefile.in, panel/Makefile.in, plugins/Makefile.in,
plugins/clock/Makefile.in, plugins/mailcheck/Makefile.in,
plugins/switcher/Makefile.in, plugins/switcher/switcher.c,
plugins/systembuttons/Makefile.in, settings/Makefile.in,
settings/xfce_settings_dialog.c, settings/xfce_settings_plugin.c,
themes/Makefile.in, themes/Crystal/Makefile.in,
themes/Curve/Makefile.in, themes/Gnome/Makefile.in,
themes/Noia/Makefile.in, themes/XFce/Makefile.in: Several fixes:
minibuttons position, settings plugin icon and non-modal dialog,
netk_pager sizing
2002-12-30 21:52 huysmans
* panel/handle.c, plugins/switcher/switcher.c: Remove exit and
iconify buttons from handles
2002-12-28 22:16 huysmans
* panel/main.c: Fix SIGHUP handling. Thanks to Steganos for
pointing it out
2002-12-28 09:54 huysmans
* ChangeLog, TODO: Update ChangeLog and TODO file
2002-12-28 09:53 huysmans
* plugins/switcher/switcher.c: Fix minibutton positioning
2002-12-27 16:25 huysmans
* plugins/switcher/switcher.c: Fix size setting of graphical pager
2002-12-27 15:30 huysmans
* plugins/switcher/switcher.c: Small fix to dialog
2002-12-27 15:08 huysmans
* plugins/switcher/switcher.c: Add graphical pager option to
switcher plugin
2002-12-24 11:56 huysmans
* panel/: callbacks.c, callbacks.h, popup.c: Make ESC close popup
menu
2002-12-23 10:27 huysmans
* ChangeLog, panel/mcs_client.c, panel/mcs_client.h: Add missing
files
2002-12-23 10:16 huysmans
* Makefile.am, Makefile.in, configure, configure.ac,
icons/Makefile.in, panel/Makefile.am, panel/Makefile.in,
panel/callbacks.c, panel/dialogs.c, panel/dialogs.h,
panel/handle.c, panel/main.c, panel/panel.c, panel/settings.c,
plugins/Makefile.in, plugins/clock/Makefile.am,
plugins/clock/Makefile.in, plugins/clock/clock.c,
plugins/mailcheck/Makefile.am, plugins/mailcheck/Makefile.in,
plugins/mailcheck/mailcheck.c, plugins/switcher/Makefile.am,
plugins/switcher/Makefile.in, plugins/switcher/switcher.c,
plugins/systembuttons/Makefile.am,
plugins/systembuttons/Makefile.in,
plugins/systembuttons/systembuttons.c, settings/Makefile.am,
settings/Makefile.in, settings/xfce_settings.h,
settings/xfce_settings_dialog.c, settings/xfce_settings_dialog.h,
settings/xfce_settings_plugin.c, settings/xfce_settings_plugin.h,
themes/Makefile.in, themes/Crystal/Makefile.in,
themes/Curve/Makefile.in, themes/Gnome/Makefile.in,
themes/Noia/Makefile.in, themes/XFce/Makefile.in: Add settings
manager plugin and make the panel a settings client. Cool stuff :)
2002-12-20 13:12 huysmans
* panel/: controls.c, controls.h, controls_dialog.c, panel.c,
settings.c: Fix bug with controls dialog. Thanks to Korbinus for
reporting it.
2002-12-17 19:07 huysmans
* ChangeLog, README, TODO: Update README and TODO file
2002-12-17 17:03 huysmans
* plugins/: mailcheck/mailcheck.c, switcher/switcher.c,
systembuttons/systembuttons.c: Another big API change. I think I
got it right this time: control classes providing the interface to
panel controls, including a function to create new instances.
2002-12-17 16:59 huysmans
* ChangeLog, panel/callbacks.c, panel/callbacks.h,
panel/controls.c, panel/controls.h, panel/controls_dialog.c,
panel/controls_dialog.h, panel/global.h, panel/groups.c,
panel/groups.h, panel/handle.c, panel/item.c, panel/item.h,
panel/item_dialog.c, panel/item_dialog.h, panel/main.c,
panel/panel.c, panel/plugins.h, panel/popup.h,
panel/xfce_support.c, panel/xfce_support.h, plugins/clock/clock.c:
Another big API change. I think I got it right this time: control
classes providing the interface to panel controls, including a
function to create new instances.
2002-12-16 20:11 huysmans
* ChangeLog, panel/controls.c, panel/plugins.h,
plugins/clock/clock.c, plugins/mailcheck/mailcheck.c,
plugins/switcher/switcher.c, plugins/systembuttons/systembuttons.c:
Fix version checking code
2002-12-16 18:59 huysmans
* ChangeLog, panel/Makefile.am, panel/Makefile.in,
panel/controls.c, panel/controls.h, panel/controls_dialog.c,
panel/groups.c, panel/plugins.h, plugins/clock/clock.c,
plugins/mailcheck/mailcheck.c, plugins/switcher/switcher.c,
plugins/systembuttons/systembuttons.c: Add new module loading code
2002-12-16 09:09 huysmans
* plugins/clock/clock.c: Fix date bug
2002-12-16 08:16 huysmans
* panel/groups.c: Fix bug with handling old config file
2002-12-13 23:09 huysmans
* ChangeLog, configure, configure.ac, panel/Makefile.am,
panel/Makefile.in, panel/builtins.c, panel/builtins.h,
panel/controls.c, panel/global.h, panel/info.c,
plugins/Makefile.am, plugins/Makefile.in,
plugins/systembuttons/Makefile.am,
plugins/systembuttons/Makefile.in,
plugins/systembuttons/systembuttons.c: remove last builtins and add
new systembuttons plugin
2002-12-12 22:20 huysmans
* ChangeLog, panel/groups.c, panel/groups.h, panel/handle.c: Allow
user to add a panel control from the handle right-click menu
2002-12-12 16:28 huysmans
* panel/: main.c, panel.c, panel.h: Improve SIGHUP handling
2002-12-12 12:09 huysmans
* panel/: panel.c, xfce_support.c: Improve window layer handling
2002-12-12 10:23 huysmans
* ChangeLog, example.xfce4rc.in: Update default rc file
2002-12-12 10:16 huysmans
* ChangeLog, configure, configure.ac, panel/Makefile.am,
panel/Makefile.in, panel/builtins.c, panel/callbacks.c,
panel/central.c, panel/central.h, panel/controls.c,
panel/controls.h, panel/controls_dialog.c, panel/dialogs.c,
panel/dialogs.h, panel/global.h, panel/groups.c, panel/groups.h,
panel/handle.c, panel/icons.c, panel/icons.h, panel/item.c,
panel/item_dialog.c, panel/main.c, panel/main.h, panel/panel.c,
panel/panel.h, panel/popup.c, panel/popup.h, panel/settings.c,
panel/settings.h, panel/side.c, panel/side.h, panel/wmhints.c,
panel/wmhints.h, panel/xfce.c, panel/xfce.h, panel/xfce_support.c,
panel/xfce_support.h, plugins/Makefile.am, plugins/Makefile.in,
plugins/switcher/Makefile.am, plugins/switcher/Makefile.in,
plugins/switcher/switcher.c: Huge update. Highlights: switcher
plugin instead of central panel code. Side panels don't exist
anymore; there is one list of panel groups. xfce.c split up into
main and panel modules. New general header file xfce.h that
includes all exported headers. New fixes and probably new bugs
2002-12-03 15:24 huysmans
* themes/: Crystal/Makefile.am, Crystal/Makefile.in,
Crystal/newmail.png, Crystal/nomail.png, Crystal/oldmail.png,
Noia/Makefile.am, Noia/Makefile.in, Noia/newmail.png,
Noia/nomail.png, Noia/oldmail.png: Add mail icons to Crystal and
Noia themes. Thanks (again) to Jeroen Vloothuis
2002-11-28 21:28 madkiss
* debian/: changelog, control, rules, xfce4.install,
maintain/gdm-Xfce, maintain/xfce4_setup, maintain/xfce4_setup.1:
Update to debian/-subdir included in xfce4_20021127-1.
2002-11-27 22:30 huysmans
* ChangeLog, panel/icons.c, panel/xfce.c,
plugins/mailcheck/mailcheck.c: Fix a bug in icon handling. Thanks
to Korbinus
2002-11-26 15:04 huysmans
* themes/XFce/: Makefile.am, Makefile.in: Also update makefiles
2002-11-26 15:01 huysmans
* themes/XFce/: mail.xpm, newmail.xpm: Fix naming of new mail icon
2002-11-26 14:06 huysmans
* configure, configure.ac, panel/icons.c, themes/Makefile.am,
themes/Makefile.in, themes/Crystal/Makefile.am,
themes/Crystal/Makefile.in, themes/Crystal/README,
themes/Crystal/edit.png, themes/Crystal/file1.png,
themes/Crystal/file2.png, themes/Crystal/games.png,
themes/Crystal/man.png, themes/Crystal/miniinfo.png,
themes/Crystal/minilock.png, themes/Crystal/minipalet.png,
themes/Crystal/minipower.png, themes/Crystal/multimedia.png,
themes/Crystal/network.png, themes/Crystal/paint.png,
themes/Crystal/print.png, themes/Crystal/schedule.png,
themes/Crystal/sound.png, themes/Crystal/terminal.png,
themes/Crystal/trash_empty.png, themes/Crystal/trash_full.png,
themes/Crystal/unknown.png, themes/Noia/Makefile.am,
themes/Noia/Makefile.in, themes/Noia/README, themes/Noia/edit.png,
themes/Noia/file1.png, themes/Noia/file2.png,
themes/Noia/games.png, themes/Noia/man.png,
themes/Noia/miniinfo.png, themes/Noia/minilock.png,
themes/Noia/minipalet.png, themes/Noia/minipower.png,
themes/Noia/multimedia.png, themes/Noia/network.png,
themes/Noia/paint.png, themes/Noia/print.png,
themes/Noia/schedule.png, themes/Noia/sound.png,
themes/Noia/terminal.png, themes/Noia/trash_empty.png,
themes/Noia/trash_full.png, themes/Noia/unknown.png: Add Crystal
and Noia themes provided by Jeroen Vloothuis (aka slm on IRC)
2002-11-26 09:06 huysmans
* ChangeLog, aclocal.m4, configure, panel/wmhints.c,
themes/Curve/Makefile.am, themes/Curve/Makefile.in,
themes/Curve/newmail.png, themes/Curve/nomail.png,
themes/Curve/oldmail.png: Fix bug in wmhints and add mail icons to
Curve theme
2002-11-25 12:39 xfce
* panel/xfce.c: Put back "gtk_widget_show" on toplevel, the panel
doesn't show otherwise :)
2002-11-24 20:26 huysmans
* panel/: item_dialog.c, xfce_support.c, xfce_support.h: Only show
preview when slecting icons
2002-11-23 18:39 xfce
* aclocal.m4, configure, panel/builtins.c, panel/callbacks.c,
panel/global.h, panel/handle.c, panel/item.c, panel/popup.c,
panel/xfce.c, plugins/clock/clock.c, plugins/mailcheck/mailcheck.c:
Update for libxfcegui4 new include base dir.
2002-11-23 12:24 huysmans
* Makefile.am, Makefile.in, example.xfce4rc.in, panel/xfce.c:
Install default xfce4rc
2002-11-22 14:33 huysmans
* ChangeLog, panel/builtins.c, panel/item_dialog.c: Fix bug where
file dialog stays below control dialog
2002-11-18 22:51 huysmans
* panel/: builtins.c, controls.c, controls.h, xfce.c: Fix SIGHUP
handling, I'll just quit. Restarting doesn't work
2002-11-13 10:22 huysmans
* ChangeLog, aclocal.m4, configure, panel/builtins.c,
panel/controls.c, panel/controls.h, panel/controls_dialog.c,
panel/item.c, panel/side.c, panel/side.h, plugins/clock/clock.c,
plugins/mailcheck/mailcheck.c: Panel control API change and several
small fixes
2002-11-10 16:23 huysmans
* panel/: central.c, dialogs.c: Fix repositioning bug in
preferences dialog
2002-11-10 16:02 huysmans
* panel/central.c: Fix screen button positioning bug (again./xfce4
)
2002-11-10 15:54 huysmans
* panel/central.c: Fix small screen naming bug
2002-11-10 15:41 huysmans
* panel/central.c: Update desktop switcher
2002-11-10 14:07 huysmans
* panel/: controls_dialog.c, side.c, side.h: Allow removal of panel
controls
2002-11-10 12:45 huysmans
* panel/central.c: Fix a bug in screen name handling
2002-11-10 11:35 huysmans
* panel/: dialogs.c, global.h, popup.c, side.c, xfce.c, xfce.h: Try
to fix a bug in panel control positioning
2002-11-10 11:03 madkiss
* debian/: changelog, control, copyright, docs, rules,
xfce4-dev.install, xfce4-themes.install, xfce4.install, xfce4.menu,
maintain/xfce4.1:
Added first version of official debian/ subdirectory
2002-11-10 11:03 madkiss
* debian/: changelog, control, copyright, docs, rules,
xfce4-dev.install, xfce4-themes.install, xfce4.install, xfce4.menu,
maintain/xfce4.1: Initial revision
2002-11-09 22:49 huysmans
* panel/: icons.c, xfce.c: Fix a bug whith icon handling when there
is no rc file or theme == NULL
2002-11-09 11:48 huysmans
* panel/dialogs.c: Add back notebook tabs in global dialog
2002-11-08 23:21 xfce
* panel/Makefile.in, plugins/Makefile.in,
plugins/clock/Makefile.in, plugins/mailcheck/Makefile.in,
themes/Makefile.in, themes/Curve/Makefile.in,
themes/Gnome/Makefile.in, themes/XFce/Makefile.in: make sure
required libs for build/rpm are listed, with versions and keep the
minimum version required at only one place (configure.ac)
2002-11-08 23:14 xfce
* Makefile.in, aclocal.m4, config.h.in, configure, configure.ac,
xfce4.spec.in, icons/Makefile.in: make sure required libs for
build/rpm are listed, with versions and keep the minimum version
required at only one place (configure.ac)
2002-11-08 15:16 huysmans
* ChangeLog, panel/dialogs.c: Add panel centering options to global
dialog
2002-11-08 13:49 huysmans
* configure, configure.ac, icons/Makefile.am, icons/Makefile.in,
icons/addicon.xpm, icons/down.xpm, icons/edit.xpm, icons/file1.xpm,
icons/file2.xpm, icons/games.xpm, icons/mail.xpm, icons/man.xpm,
icons/miniinfo.xpm, icons/minilock.xpm, icons/minipalet.xpm,
icons/minipower.xpm, icons/multimedia.xpm, icons/network.xpm,
icons/nomail.xpm, icons/oldmail.xpm, icons/paint.xpm,
icons/print.xpm, icons/schedule.xpm, icons/sound.xpm,
icons/terminal.xpm, icons/trash_empty.xpm, icons/trash_full.xpm,
icons/unknown.xpm, icons/up.xpm, panel/builtins.c, panel/central.c,
panel/dialogs.c, panel/global.h, panel/icons.c, panel/icons.h,
plugins/mailcheck/mailcheck.c, themes/Makefile.am,
themes/Makefile.in, themes/XFce/Makefile.am,
themes/XFce/Makefile.in, themes/XFce/edit.xpm,
themes/XFce/file1.xpm, themes/XFce/file2.xpm,
themes/XFce/games.xpm, themes/XFce/mail.xpm, themes/XFce/man.xpm,
themes/XFce/miniinfo.xpm, themes/XFce/minilock.xpm,
themes/XFce/minipalet.xpm, themes/XFce/minipower.xpm,
themes/XFce/multimedia.xpm, themes/XFce/network.xpm,
themes/XFce/nomail.xpm, themes/XFce/oldmail.xpm,
themes/XFce/paint.xpm, themes/XFce/print.xpm,
themes/XFce/schedule.xpm, themes/XFce/sound.xpm,
themes/XFce/terminal.xpm, themes/XFce/trash_empty.xpm,
themes/XFce/trash_full.xpm, themes/XFce/unknown.xpm: Make default
theme a normal theme. Get rid of builtin icons
2002-11-06 16:44 huysmans
* ChangeLog, panel/central.c, panel/dialogs.c, panel/popup.c: Small
fixes and cleanups
2002-11-06 12:14 huysmans
* panel/controls_dialog.c: Really fixed control positioning.
2002-11-06 12:09 huysmans
* panel/: builtins.c, controls_dialog.c, dialogs.c, global.h,
handle.c, side.c: Fixed control positioning.
2002-11-05 23:53 huysmans
* panel/side.c: This is an 'almost' fix for a control positioning
bug.
2002-11-05 23:04 huysmans
* ChangeLog, panel/callbacks.c, panel/callbacks.h, panel/central.c,
panel/central.h, panel/controls.c, panel/controls.h,
panel/controls_dialog.c, panel/dialogs.c, panel/global.h,
panel/handle.c, panel/popup.c, panel/popup.h, panel/side.c,
panel/side.h, panel/xfce.c: Major reworking of panel internals.
Work in progress
2002-10-28 08:10 huysmans
* panel/callbacks.c: Fix positioning bug the right way (Olivier's
suggestion)
2002-10-27 17:22 huysmans
* panel/: side.c, xfce_support.c: Use putenv instead of setenv.
Solaris doesn't have it.
2002-10-27 14:25 huysmans
* panel/item_dialog.c: Fix a menu editing bug that caused a crash
2002-10-27 13:38 huysmans
* panel/callbacks.c: Attempt to fix menu positioning bug
2002-10-27 13:06 huysmans
* panel/: builtins.c, callbacks.c, callbacks.h, central.c,
global.h, xfce.c: More central panel code rearrangment
2002-10-27 12:10 huysmans
* aclocal.m4, configure, panel/central.c, panel/central.h,
panel/wmhints.c, panel/xfce.c, panel/xfce.h: separate central panel
more from the panel code. First step to making it a module
2002-10-27 11:13 xfce
* Makefile.in, aclocal.m4, autogen.sh, configure,
icons/Makefile.in, panel/Makefile.in, panel/global.h,
panel/xfce_support.c, plugins/Makefile.in,
plugins/clock/Makefile.in, plugins/mailcheck/Makefile.in,
themes/Makefile.in, themes/Curve/Makefile.in,
themes/Gnome/Makefile.in: Change autogen.sh script to use env vars
if available (instead of auto*-1.x as it was before) Make use of
preview file selector instead of basic gtk file selector.
2002-10-25 23:57 xfce
* panel/xfce.c: Increase SM priority to 40
2002-10-21 22:54 huysmans
* ChangeLog, panel/xfce.c: Add session management functionality
2002-10-18 11:57 huysmans
* ChangeLog, autogen.sh, panel/callbacks.c, panel/icons.h,
panel/item_dialog.c, panel/popup.c, panel/popup.h: Use
xfce_menubutton widget in popup menus
2002-10-11 22:56 xfce
* xfce4.spec.in: Fix xfce4.spec file still pointing on old plugin
location.
2002-10-11 16:18 huysmans
* panel/Makefile.am, panel/Makefile.in, panel/global.h,
panel/xfce_support.c, plugins/clock/Makefile.am,
plugins/clock/Makefile.in, plugins/mailcheck/Makefile.am,
plugins/mailcheck/Makefile.in: Move plugins under /usr/lib (FHS
compliant). Thanks to Martin Loschwitz for bringing it up.
2002-10-10 17:43 huysmans
* panel/builtins.c: Fix bug in builtins (stupid gcc 3.2 didn't
complain)
2002-10-10 17:40 huysmans
* panel/item_dialog.c: Fix bug where popup menu disappears if you
press Add icon
2002-10-10 08:46 huysmans
* ChangeLog, panel/dialogs.c, panel/global.h, panel/popup.c,
panel/popup.h, panel/side.c, panel/side.h, panel/xfce.c,
panel/xfce.h: Remove popup_size option and change add-to-menu icon
2002-10-10 00:31 huysmans
* panel/Makefile.am, panel/Makefile.in, panel/builtins.c,
panel/builtins.h, panel/controls.c, panel/iconbutton.c,
panel/iconbutton.h, panel/item.c, panel/item.h,
plugins/mailcheck/mailcheck.c: Use xfce_iconbutton widget for panel
items
2002-10-09 00:13 huysmans
* panel/: callbacks.c, item_dialog.c, popup.c, popup.h: New popup
buttons. Really this time
2002-10-09 00:06 huysmans
* panel/: builtins.c, controls.c, controls.h, popup.h: Oops used an
old tree to commit. Revert.
2002-10-08 23:27 huysmans
* panel/: builtins.c, controls.c, controls.h, popup.h: Use new
xfce_togglebutton from libxfcegui4
2002-10-07 21:18 huysmans
* icons/Makefile.am, icons/Makefile.in, icons/close.xpm,
icons/handle.xpm, icons/iconify.xpm, panel/handle.c, panel/icons.c,
panel/icons.h: Fix position saving bug
2002-10-07 16:36 huysmans
* ChangeLog, panel/xfce.c: Increase size popup buttons by two
pixels
2002-10-07 08:25 huysmans
* ChangeLog, panel/handle.c: Add new decorbuttons
2002-10-06 23:32 huysmans
* ChangeLog, panel/handle.c: Fix position saving
2002-10-06 17:17 huysmans
* configure, configure.ac, panel/handle.c,
plugins/clock/Makefile.am, plugins/clock/Makefile.in,
plugins/clock/clock.c, plugins/clock/xfce_clock.c,
plugins/clock/xfce_clock.h: Use new libxfcegui4
2002-10-05 23:53 huysmans
* configure, configure.ac, panel/builtins.c, panel/controls.c,
panel/global.h, plugins/Makefile.am, plugins/Makefile.in: Make
trash can a plugin
2002-10-05 23:01 huysmans
* ChangeLog, panel/builtins.c, panel/global.h: A few fixes for bugs
created with the clock plugin move
2002-10-05 22:49 huysmans
* configure, configure.ac, panel/Makefile.am, panel/Makefile.in,
panel/builtins.c, panel/controls.c, panel/xfce_clock.c,
panel/xfce_clock.h, plugins/Makefile.am, plugins/Makefile.in,
plugins/clock/Makefile.am, plugins/clock/Makefile.in,
plugins/clock/clock.c, plugins/clock/xfce_clock.c,
plugins/clock/xfce_clock.h: Make the clock a plugin
2002-10-05 10:37 huysmans
* ChangeLog, panel/handle.c, panel/handle.h, panel/xfce.c: update
handle layout
2002-10-03 19:24 huysmans
* panel/: builtins.c, xfce.c: Fix current desktop bug
2002-10-02 08:49 huysmans
* panel/: handle.c, xfce.c: Re-add frame to move handles, remove
separators. Looks a bit better I think
2002-10-02 00:25 huysmans
* Makefile.am, Makefile.in, panel/Makefile.am, panel/Makefile.in,
panel/handle.c, panel/handle.h, panel/move.c, panel/move.h,
panel/popup.c, panel/side.c, panel/xfce.c: Initial layout change:
handles on the sides
2002-09-30 10:33 xfce
* panel/xfce_clock.c: Change length of hour needle to improve
readability, especially in small size.
2002-09-29 23:22 huysmans
* configure, configure.ac, themes/Makefile.am, themes/Makefile.in,
themes/Curve/Makefile.am, themes/Curve/Makefile.in,
themes/Curve/README, themes/Curve/edit.png, themes/Curve/file1.png,
themes/Curve/file2.png, themes/Curve/games.png,
themes/Curve/man.png, themes/Curve/miniinfo.png,
themes/Curve/minilock.png, themes/Curve/minipalet.png,
themes/Curve/minipower.png, themes/Curve/multimedia.png,
themes/Curve/network.png, themes/Curve/paint.png,
themes/Curve/print.png, themes/Curve/schedule.png,
themes/Curve/sound.png, themes/Curve/terminal.png,
themes/Curve/trash_empty.png, themes/Curve/trash_full.png,
themes/Curve/unknown.png: Change theme name
2002-09-29 20:54 huysmans
* ChangeLog, panel/Makefile.am, panel/Makefile.in: Fix header
missing from dist tarball
2002-09-29 20:39 huysmans
* ChangeLog, configure, configure.ac, themes/Makefile.am,
themes/Makefile.in, themes/Gnome/Makefile.am,
themes/Gnome/Makefile.in: Add Bluecurve theme
2002-09-29 11:00 xfce
* panel/xfce_clock.c: Rendering and optimizations to clock_widget
2002-09-29 09:46 xfce
* panel/xfce_clock.c: clock tweaking.
2002-09-29 09:38 xfce
* panel/xfce_clock.c: Use MIN where MIN is meant and not MAX !
2002-09-28 23:31 xfce
* panel/builtins.c: Put back main field for builtin clock to
eventbox otherwise the date doesn't show (Jasper was right :) )
2002-09-28 23:24 xfce
* panel/: builtins.c, xfce.c, xfce_clock.c: Bug fixes in panel.
When started w/out central panel, changing style
(traditionnal/modern) cause gtk warning on NULL widget, and once
started w/out central panel, it could not be showed anymore.
2002-09-28 22:55 xfce
* panel/: builtins.c, xfce_clock.c: Change the clock widget so
analog mode stay readable even in tiny mode. Remove the round frame
arround the clock (it looked outdated) and change various
internals.
2002-09-28 17:08 zedek
* TODO: Update TODO list
2002-09-28 17:03 xfce
* icons/: Makefile.am, Makefile.in: Err, forgot to remove the
digits.xbm files from the Makefile.am !
2002-09-28 16:53 xfce
* icons/digits.xbm, panel/xfce_clock.c, panel/xfce_clock.h: Fix
multiple clock not updating correctly, move digits.xbm inside
xfce_clock.c because I want anybody to be able take up
xfce_clock.[ch] and get all that is needed w/out requiring other
external files.
2002-09-28 15:47 xfce
* Makefile.am, Makefile.in, configure: Add removal of
autom4te.cache dir at distclean.
2002-09-27 16:23 xfce
* panel/xfce_clock.c: [no log message]
2002-09-27 15:35 xfce
* panel/xfce_clock.c: Add _finalize() method to xfce_clock widget.
2002-09-27 14:46 xfce
* panel/controls.c: Jasper is right (as usual), the eventbox makes
sense.
2002-09-27 14:18 xfce
* panel/: builtins.c, callbacks.c, central.c, controls.c,
controls_dialog.c, dialogs.c, item_dialog.c, popup.c, side.c,
wmhints.c, xfce_clock.c, xfce_support.c: Fix clock widget as
suggested by Olexiy Avramchenko <ath@beast.stu.cn.ua> on
gtk-app-devel-list, revert g_ref since it's not necessary anymore,
fix various compilation warnings (some being serious)
2002-09-26 22:59 xfce
* panel/: builtins.c, controls.c, controls_dialog.c, xfce_clock.c:
Bug hunting. Fixed the double free bug when removing clock widget.
2002-09-26 11:36 xfce
* panel/builtins.c: Fix clock mode not being restored at startup.
2002-09-26 08:27 huysmans
* panel/: controls.c, controls_dialog.c: Try to fix double free bug
2002-09-26 08:00 huysmans
* ChangeLog, panel/dialogs.c: Fix embarrassing bug in the code for
finding themes. Thanks Korbinus.
2002-09-25 23:17 xfce
* panel/builtins.c: Put back clock frame with traditional panel
style for zeDek :)
2002-09-25 22:35 xfce
* panel/: builtins.c, xfce_clock.c, xfce_clock.h: Change clock
internals.
2002-09-24 23:33 zedek
* panel/builtins.c: Fixed a bug (again) in the clock code
(unnitialized variable)
2002-09-24 20:39 huysmans
* ChangeLog, panel/popup.c: Fix sizing Add Icon menu item
2002-09-24 18:01 zedek
* panel/builtins.c: Fixed (who knows ;) the LED clock
2002-09-24 02:33 zedek
* ChangeLog: Update ChangeLog
2002-09-24 02:28 zedek
* panel/: builtins.c, xfce_clock.c: Removed the previous debug
messages Code cleanups Applied Olivie's Patch (another one :p)
Removed xfce_clock_set_shadow_type function (useless) Added a
function to update the clock module size whenever a config option
changes (actually it only make a call to clock_set_size) ... other
things I can't remember :D (I'm a little bit tired you know)
2002-09-24 00:46 zedek
* panel/: builtins.c, xfce_clock.c, xfce_clock.h: Added lots of
debug messages Fixed (huh?) the LED/Digital display bug (still
needs improvement) Applied Olivier's patch (gtk_draw_rectangles
calls replace the previous gtk_draw_box) Fixed the frame display
bug (was not shown on startup)
2002-09-23 22:58 huysmans
* panel/xfce.c: Try to fix crash on exit
2002-09-23 22:25 huysmans
* panel/xfce.c: Fix crash on ctrl-c.
2002-09-23 21:04 huysmans
* panel/xfce.c: Change default vertical position
2002-09-23 20:09 huysmans
* panel/: controls_dialog.c, dialogs.c, item_dialog.c: Save
settings after closing any dialog
2002-09-23 18:45 huysmans
* panel/: builtins.c, central.c, controls.c, dialogs.c, side.c: Fix
resize bug
2002-09-22 22:08 huysmans
* TODO, config.h.in, configure, panel/side.c: Fixed the move handle
positioning. Or did I?
2002-09-22 20:46 huysmans
* panel/callbacks.c: Fix popup menu positioning even more ;-)
2002-09-22 20:29 huysmans
* panel/side.c: Now really fix move handle positioning. Really.
2002-09-22 20:11 zedek
* configure.ac: Add debug infos at runtime (--enable-debug)
2002-09-22 20:01 huysmans
* panel/: controls.c, controls.h: Some cleanup
2002-09-22 19:43 zedek
* panel/debug.h: fix my previous commit (debug macro)
2002-09-22 19:42 zedek
* panel/global.h: Added debug macros
2002-09-22 17:19 huysmans
* ChangeLog: Update ChangeLog
2002-09-22 17:17 huysmans
* panel/: callbacks.c, callbacks.h, controls.c, side.c: Add close
button on move handle (like xfce3)
2002-09-22 16:35 huysmans
* panel/callbacks.c: Really fix popup menu positioning
2002-09-22 16:30 huysmans
* panel/callbacks.c: Fix popup menu positioning
2002-09-22 15:39 huysmans
* panel/: central.c, side.c, xfce.c: Fix move handle positioning in
vertical mode
2002-09-21 23:06 huysmans
* ChangeLog, panel/central.c: Fix button ordering bug. Quite
embarrassing actually
2002-09-21 21:28 huysmans
* configure, icons/Makefile.am, icons/Makefile.in,
panel/builtins.c, panel/callbacks.c, panel/callbacks.h,
panel/central.c, panel/controls.c, panel/controls.h,
panel/dialogs.c, panel/global.h, panel/popup.c, panel/popup.h,
panel/side.c, panel/side.h, panel/xfce.c, panel/xfce.h: Fix panel
reorientation
2002-09-21 12:07 zedek
* TODO: Update the TODO list
2002-09-21 09:26 zedek
* ChangeLog: ChangeLog updates
2002-09-21 09:21 zedek
* panel/dialogs.c: Fix the bad number of desktop buttons when
reverting in the panel configuration
2002-09-20 10:54 zedek
* panel/central.c: Fix the desktop buttons handling
(size,positionning)
2002-09-20 10:05 zedek
* icons/digits.xbm, panel/builtins.c, panel/xfce_clock.c,
panel/xfce_clock.h: Cosmetic changes Removed the digits data from
the C source (clean up) and set it in a separate file Added tiny
size handle (still not functionnal for the clock :))
2002-09-18 17:05 zedek
* panel/builtins.c: Fixed my previous commit (bis) :)
2002-09-18 17:02 zedek
* panel/builtins.c: Fixed my previous commit :)
2002-09-18 14:52 zedek
* panel/builtins.c: Added Write/Read to the xfce4 rc file to store
our configuration Fixed minor bugs (sic) Added functions to
apply/revert the configuration in the confi dialog Code clean up
More comments
2002-09-17 22:27 huysmans
* TODO: Update todo list: we want to add variable width/height
modules
2002-09-16 23:24 huysmans
* panel/: builtins.c, builtins.h, callbacks.c, callbacks.h,
central.c, central.h, controls.c, controls.h, controls_dialog.c,
dialogs.c, iconbutton.c, iconbutton.h, item.c, item_dialog.c,
popup.c, popup.h, side.c, side.h, wmhints.c, xfce.c, xfce.h,
xfce_clock.c, xfce_clock.h, xfce_support.c, xfce_support.h: Started
fixing issues with the vertical panel
2002-09-16 18:36 huysmans
* ChangeLog: Update ChangeLog
2002-09-16 18:34 huysmans
* TODO, panel/callbacks.c, panel/callbacks.h, panel/central.c,
panel/dialogs.c, panel/global.h, panel/xfce.c: Add vertical panel
option by Botsie. Now this is a cool feature.
2002-09-15 10:48 huysmans
* ChangeLog, panel/Makefile.in: Update ChangeLog and
panel/Makefile.in
2002-09-14 08:49 zedek
* ChangeLog: Updated the Changelog
2002-09-14 08:40 zedek
* AUTHORS: updated my informations (addedd email)
2002-09-14 08:35 zedek
* panel/builtins.c: First commit to support the new clock module.
2002-09-14 08:09 zedek
* panel/Makefile.am: Added xfce_clock file to the compilation
source list
2002-09-14 08:07 zedek
* panel/: xfce_clock.c, xfce_clock.h: First commit for the clock
module
2002-09-10 22:59 huysmans
* panel/dialogs.c: fix problem with saving popup size
2002-09-06 21:54 huysmans
* panel/central.c: Fix bug in screen button handling
2002-09-06 21:02 huysmans
* panel/wmhints.c: Hopefully fix bug in panel-on-top option
2002-09-06 12:27 huysmans
* panel/: builtins.c, item_dialog.c, popup.c: fix small bugs in
popup menu
2002-09-06 11:51 xfce
* panel/controls.c: Fix crash at quit (g_free on GTK unref'd object
is a bad idea, gtk+ does that itself).
2002-09-05 21:22 huysmans
* panel/xfce.c: Fix bug that showed central panel, even if option
was FALSE
2002-09-05 20:22 huysmans
* Makefile.am, Makefile.in, xfce4.spec.in: fix spec file and update
rpm build command (reported by R.P. Herrold)
2002-09-04 20:05 huysmans
* ChangeLog, Makefile.am, Makefile.in: update ChangeLog and
Makefile.am
2002-09-04 19:59 huysmans
* AUTHORS, ChangeLog, Makefile.in, README, README.xml, TODO,
example.xfce4rc.in, icons/Makefile.am, icons/Makefile.in,
panel/Makefile.am, panel/Makefile.in, panel/builtins.c,
panel/builtins.h, panel/callbacks.c, panel/callbacks.h,
panel/central.c, panel/central.h, panel/controls.c,
panel/controls.h, panel/controls_dialog.c, panel/controls_dialog.h,
panel/dialogs.c, panel/dialogs.h, panel/global.h,
panel/iconbutton.c, panel/iconbutton.h, panel/icons.c,
panel/icons.h, panel/info.c, panel/item.c, panel/item.h,
panel/item_dialog.c, panel/item_dialog.h, panel/module.c,
panel/module.h, panel/move.c, panel/popup.c, panel/popup.h,
panel/settings.c, panel/settings.h, panel/side.c, panel/side.h,
panel/wmhints.c, panel/wmhints.h, panel/xfce.c, panel/xfce.h,
panel/xfce_support.c, panel/xfce_support.h,
plugins/mailcheck/mailcheck.c: Major rewrite several internals.
Unify panel items and modules in PanelControl structure (and change
the xml file format in the process), make all dialogs
instant-apply, rearrange preferences dialog, add option to keep
panel on top, probably more
2002-08-16 23:35 xfce
* panel/global.h: Play with sizes, make the "tiny" panel somehow,
well, tiny.
2002-08-11 23:04 huysmans
* panel/info.c: fix deprecated gtk function
2002-08-11 22:55 huysmans
* panel/xfce.c: temporarily comment out the DOCK_TYPE window hint
2002-08-11 21:38 huysmans
* ChangeLog, panel/info.c: Update ChangeLog and update info panel a
bit
2002-08-11 08:29 huysmans
* ChangeLog, icons/xfce_slogan.xpm, panel/info.c: Really add info
panel by Xavier Maillard
2002-08-10 22:45 huysmans
* ChangeLog, Makefile.am, Makefile.in, configure, configure.ac,
panel/Makefile.am, panel/Makefile.in, panel/callbacks.c,
panel/dialogs.c, panel/dialogs.h, panel/xfce.c: Add info panel by
Xavier Maillard
2002-08-08 23:27 huysmans
* panel/builtins.c: Additions to Exit/Lock module
2002-08-08 20:24 huysmans
* panel/: central.c, dialogs.c, global.h, xfce.c, xfce.h: More
config options for configuring central panel
2002-08-08 08:05 huysmans
* panel/: builtins.c, dialogs.c, global.h, module.c, module.h,
xfce.c, xfce.h: Add option to hide central panel
2002-08-06 20:15 huysmans
* Makefile.in, aclocal.m4, icons/Makefile.in, panel/Makefile.in,
panel/central.c, panel/global.h, panel/icons.c, panel/wmhints.c,
panel/wmhints.h, panel/xfce.c, plugins/Makefile.in,
plugins/mailcheck/Makefile.in, themes/Makefile.in,
themes/Gnome/Makefile.am, themes/Gnome/Makefile.in,
themes/Gnome/miniinfo.png, themes/Gnome/minilock.png,
themes/Gnome/minipalet.png, themes/Gnome/minipower.png: Add support
for themeable minibuttons and increased the maximum number of
groups to 16
2002-08-05 08:18 huysmans
* ChangeLog, panel/dialogs.c: Don't disable changing number of
desktops when desktop buttons are hidden
2002-08-04 16:42 huysmans
* panel/: central.c, central.h, dialogs.c, global.h, xfce.c: Add
option to hide desktop buttons
2002-07-31 08:41 huysmans
* panel/: builtins.c, callbacks.c, callbacks.h, central.c,
dialogs.c, icons.c, icons.h, item.c, item.h, item_dialog.c,
item_dialog.h, module.c, module.h, move.c, popup.c, popup.h,
settings.c, side.c, side.h, wmhints.c, xfce.c, xfce_support.c,
xfce_support.h: Reformat files (missing empty lines at the end) and
remove panel.h includes. Reported by Biju Chacko
2002-07-29 23:11 huysmans
* panel/xfce.c: Destroy the panel before restarting or you will end
up with ghost panels
2002-07-28 20:56 huysmans
* panel/: side.c, side.h: Change frame in panel group to
gtk_alignment. Much better size control
2002-07-28 17:42 huysmans
* panel/: builtins.c, dialogs.c: In global dialog on revert change
position at the end (after resizing)
2002-07-28 17:33 huysmans
* panel/dialogs.c: Fix bug in finding icon themes
2002-07-28 17:08 huysmans
* panel/: dialogs.c, xfce.c: Force modern style for tiny panel.
Traditional looks weird.
2002-07-28 16:07 huysmans
* panel/builtins.c: Update clock plugin to accept new panel size
2002-07-28 15:23 huysmans
* panel/: side.c, xfce.c: Oops, forgot to add TINY_PANEL_ICONS to
icon_size()
2002-07-28 14:56 huysmans
* panel/: builtins.c, central.c, dialogs.c, global.h, item.c,
item_dialog.c, popup.c, side.c, side.h, xfce.c: Added new size
(Tiny)
2002-07-26 08:32 huysmans
* ChangeLog: Updated ChangeLog
2002-07-26 08:28 huysmans
* panel/xfce.c, README: Updated README and added delete/destroy
callbacks to the panel
2002-07-18 23:40 xfce
* configure, configure.ac: Change version scheme to YYMMDD instead
of YYYYMMDD to keep consistent with xfwm4
2002-07-18 23:19 huysmans
* config.h.in, configure, panel/builtins.c, panel/dialogs.c:
hopefully fix a bug in directory opening
2002-07-16 19:50 huysmans
* panel/item_dialog.c: refresh preview when leaving text entry in
item dialog
2002-07-15 17:19 huysmans
* panel/item_dialog.c: fixed bug in panel item dialog
2002-07-14 17:56 huysmans
* panel/Makefile.am, panel/Makefile.in, panel/builtins.c,
panel/callbacks.c, panel/dialogs.c, panel/dialogs.h, panel/item.c,
panel/item_dialog.c, panel/item_dialog.h, panel/module.c,
panel/module.h, plugins/mailcheck/mailcheck.c: Split up dialogs.c
file and change item dialogs. This changes the module structure
2002-07-07 12:02 huysmans
* panel/callbacks.c, panel/callbacks.h, panel/xfce.c,
panel/xfce_support.c, panel/xfce_support.h,
plugins/mailcheck/mailcheck.c: add execution in terminal option to
mailcheck
2002-07-07 10:41 huysmans
* panel/: wmhints.c, xfce.c, xfce.h, xfce_support.c: fix some
startup issues
2002-07-07 09:08 huysmans
* ChangeLog: Update ChangeLog
2002-07-07 09:05 huysmans
* panel/: module.c, xfce.c, xfce_support.c, xfce_support.h: Add
exit dialog
2002-07-06 17:19 huysmans
* Makefile.in, aclocal.m4, configure, icons/Makefile.in,
panel/module.c, panel/settings.c, panel/xfce_support.c,
panel/xfce_support.h, plugins/Makefile.in,
plugins/mailcheck/Makefile.in, plugins/mailcheck/mailcheck.c,
themes/Makefile.in, themes/Gnome/Makefile.in: Add preferences to
mailcheck plugin and probably some other things as well
2002-07-03 23:53 huysmans
* panel/xfce.c: fix a small bug in global option behaviour and
removed panel forking
2002-07-03 23:30 huysmans
* panel/: Makefile.am, Makefile.in, builtins.c, callbacks.c,
central.c, dialogs.c, icons.c, icons.h, item.c, popup.c, side.c,
xfce.c, xfce_support.c: improve icon handling
2002-07-03 22:19 huysmans
* panel/: Makefile.am, callbacks.h, dialogs.h, dnd.c, dnd.h,
icons.c, icons.h, xfce_support.c, xfce_support.h: add new support
module and remove dnd.*
2002-06-23 20:22 huysmans
* panel/: callbacks.c, dialogs.c, dialogs.h: add dialog for screen
names and fix global dialog when setting number of desktops
2002-06-22 23:39 huysmans
* panel/callbacks.c: also diable global configuration when
disable_user_config is set
2002-06-22 22:53 huysmans
* ChangeLog: update ChangeLog
2002-06-22 22:51 huysmans
* panel/: builtins.c, callbacks.c, dialogs.c, dialogs.h, global.h,
settings.c, xfce.c: handle menu item limits better and honor
disable_user_config
2002-06-20 22:03 huysmans
* panel/dialogs.c, themes/Gnome/file1.png: make icon themes work
from dialogs
2002-06-18 00:15 xfce
* COPYING: Forgot COPYING :-(
2002-06-18 00:14 xfce
* AUTHORS, Makefile.in, aclocal.m4, configure, xfce4.spec.in,
icons/Makefile.in, panel/Makefile.in, plugins/Makefile.in,
plugins/mailcheck/Makefile.in, themes/Makefile.in,
themes/Gnome/Makefile.in: Add (empty) AUTHORS required by automake,
Fix spec file
2002-06-17 23:32 huysmans
* Makefile, example.xfce4rc: remove some leftovers
2002-06-17 23:25 huysmans
* ChangeLog, panel/dialogs.c: Update ChangeLog and refixed typo
Olivier fixed earlier
2002-06-17 22:32 huysmans
* ChangeLog, INSTALL, Makefile.am, Makefile.in, NEWS, aclocal.m4,
autogen.sh, compile, config.guess, config.h.in, config.sub,
configure, configure.ac, depcomp, example.xfce4rc.in, install-sh,
ltmain.sh, missing, mkinstalldirs, xfce4.spec.in,
icons/Makefile.am, icons/Makefile.in, panel/Makefile.am,
panel/Makefile.in, panel/builtins.c, panel/builtins.h,
panel/callbacks.c, panel/callbacks.h, panel/central.c,
panel/central.h, panel/dialogs.c, panel/dialogs.h, panel/dnd.c,
panel/dnd.h, panel/global.h, panel/icons.c, panel/icons.h,
panel/item.c, panel/item.h, panel/module.c, panel/module.h,
panel/move.c, panel/move.h, panel/popup.c, panel/popup.h,
panel/settings.c, panel/settings.h, panel/side.c, panel/side.h,
panel/wmhints.c, panel/wmhints.h, panel/xfce.c, panel/xfce.h,
plugins/Makefile.am, plugins/Makefile.in,
plugins/mailcheck/Makefile.am, plugins/mailcheck/Makefile.in,
plugins/mailcheck/mailcheck.c, themes/Makefile.am,
themes/Makefile.in, themes/Gnome/Makefile.am,
themes/Gnome/Makefile.in, themes/Gnome/edit.png,
themes/Gnome/file1.png, themes/Gnome/file2.png,
themes/Gnome/games.png, themes/Gnome/man.png,
themes/Gnome/multimedia.png, themes/Gnome/network.png,
themes/Gnome/paint.png, themes/Gnome/print.png,
themes/Gnome/schedule.png, themes/Gnome/sound.png,
themes/Gnome/terminal.png, themes/Gnome/trash_empty.png,
themes/Gnome/trash_full.png, themes/Gnome/unknown.png: (Re)add all
files and automake framework
2002-06-17 22:18 huysmans
* plugins/Makefile: removing old files, before putting them in new
locations (2)
2002-06-17 22:14 huysmans
* builtins.c, builtins.h, callbacks.c, callbacks.h, central.c,
central.h, dialogs.c, dialogs.h, dnd.c, dnd.h, global.h, icons.c,
icons.h, item.c, item.h, module.c, module.h, move.c, move.h,
popup.c, popup.h, settings.c, settings.h, side.c, side.h,
wmhints.c, wmhints.h, xfce.c, xfce.h, plugins/mailcheck.c: removing
old files, before putting them in new locations
2002-06-14 15:52 xfce
* dialogs.c: Fixed a typo (Apearance => Appearance)
2002-06-11 22:24 huysmans
* dialogs.c, icons.c, xfce.c, plugins/mailcheck.c: Panel settings
dialog seems to work now, initial icon theme support
2002-06-11 16:42 huysmans
* dialogs.c, wmhints.c: Settings dialog now works
2002-06-11 08:24 huysmans
* callbacks.c, dialogs.c, dialogs.h, wmhints.c, xfce.c, xfce.h:
Initial global settings dialog and fork() panel at startup
2002-06-09 22:53 huysmans
* callbacks.c, dialogs.c: allow running command in terminal
2002-06-09 22:27 huysmans
* callbacks.c, callbacks.h, dialogs.c, item.c, item.h, popup.c,
popup.h, settings.c, settings.h, xfce.c: make xml parsing replace
entities
2002-06-09 19:12 huysmans
* settings.c: Fixed crash when no configuration file was found
2002-06-09 17:49 huysmans
* Makefile, README, README.xml, builtins.c, builtins.h,
callbacks.c, callbacks.h, central.c, central.h, dialogs.c,
dialogs.h, dnd.c, dnd.h, example.xfce4rc, global.h, icons.c,
icons.h, item.c, item.h, module.c, module.h, move.c, move.h,
popup.c, popup.h, settings.c, settings.h, side.c, side.h,
wmhints.c, wmhints.h, xfce.c, xfce.h, plugins/mailcheck.c: Major
update
2002-05-21 22:48 huysmans
* dialogs.c, plugins/mailcheck.c: change dialog button order and
other dialog fixes
2002-05-20 20:03 huysmans
* example.xfce4rc: example config file
2002-05-20 16:56 huysmans
* Makefile, README, README.xml, builtins.c, builtins.h,
callbacks.c, callbacks.h, central.c, central.h, dialogs.c,
dialogs.h, icons.c, icons.h, item.c, item.h, module.c, module.h,
move.c, move.h, popup.c, popup.h, settings.c, settings.h, side.c,
side.h, wmhints.c, wmhints.h, xfce.c, xfce.h, icons/addicon.xpm,
icons/close.xpm, icons/diag_icon.xpm, icons/down.xpm,
icons/edit.xpm, icons/file1.xpm, icons/file2.xpm, icons/games.xpm,
icons/handle.xpm, icons/iconify.xpm, icons/mail.xpm, icons/man.xpm,
icons/menu_icon.xpm, icons/miniinfo.xpm, icons/minilock.xpm,
icons/minipalet.xpm, icons/minipower.xpm, icons/multimedia.xpm,
icons/network.xpm, icons/nomail.xpm, icons/oldmail.xpm,
icons/paint.xpm, icons/print.xpm, icons/schedule.xpm,
icons/sound.xpm, icons/terminal.xpm, icons/trash_empty.xpm,
icons/trash_full.xpm, icons/unknown.xpm, icons/up.xpm,
icons/xfce_icon.xpm, plugins/Makefile, plugins/mailcheck.c: Add
gtk2 based panel
|