1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
2017-08-30 08:31 v1c0nt
* src/icons.c: fix cleanup icons view dialog
2017-08-29 13:08 v1c0nt
* data/yad.1, src/icons.c: add FormFeed to icons view dialog
2017-07-03 12:07 v1c0nt
* data/yad.1: fix man page
2017-07-03 12:04 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/main.c, src/notification.c,
src/option.c, src/yad.h: add --escape-ok option
2017-07-02 13:41 v1c0nt
* configure.ac, src/html.c: revert some trash from previous commit
2017-07-02 13:38 v1c0nt
* configure.ac, src/entry.c, src/html.c: fix parse numeric
arguments in entry dialog
2017-06-22 11:00 v1c0nt
* TODO: update todo
2017-06-22 10:53 v1c0nt
* TODO: update todo
2017-05-29 10:49 v1c0nt
* src/print.c:
2017-05-29 10:25 v1c0nt
* data/yad.1, po/ru.po, po/uk.po: update documentation
2017-05-29 10:22 v1c0nt
* src/calendar.c, src/dnd.c, src/entry.c, src/file.c, src/form.c,
src/list.c, src/main.c, src/multi-progress.c, src/option.c,
src/progress.c: use --response option to set default exit code
2017-05-29 09:39 v1c0nt
* src/option.c: improve previous commit
2017-05-29 09:36 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/list.c, src/option.c,
src/yad.h: add --iec-format option
2017-05-20 08:26 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/dnd.c, src/option.c,
src/yad.h: add --exit-on-drop options. thanks to Christopher
Oliver
2017-04-26 16:59 v1c0nt
* ChangeLog, NEWS, configure.ac: release 0.39.0
2017-04-26 15:15 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/list.c: add --tail option to
the list dialog
2017-04-26 12:46 v1c0nt
* src/option.c, src/text.c, src/yad.h: move tail option to common
section
2017-04-26 12:12 v1c0nt
* configure.ac, data/yad.1, po/ru.po, po/uk.po, src/list.c,
src/option.c, src/yad.h: add --add-on-top option to list dialog
2017-04-26 11:21 v1c0nt
* src/list.c: some fixes of add action handler in list dialog
2017-04-26 10:53 v1c0nt
* src/list.c:
2017-03-12 16:39 v1c0nt
* po/ru.po: fix russian translation
2017-02-28 21:30 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/main.c, src/option.c,
src/yad.h: write xid to a file in additional to stderr
2017-02-28 21:13 v1c0nt
* data/yad.1: correct man page
2017-02-28 21:09 v1c0nt
* po/ru.po, po/uk.po, src/option.c: fix help output
2017-02-23 17:22 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/main.c, src/option.c,
src/yad.h: remove --parent-win option
2017-02-21 15:18 v1c0nt
* README.md, data/yad.1: update documentation according to previous
commit
2017-02-21 15:14 v1c0nt
* README.md, data/Makefile.am, data/get-lang.c, data/yad.1,
po/ru.po, po/uk.po, src/main.c, src/option.c, src/util.c,
src/yad.h: add some descriptive options
2017-02-08 18:42 v1c0nt
* TODO, configure.ac, data/yad.1, po/ru.po, po/uk.po, src/html.c,
src/option.c, src/yad.h: add --user-agent and --user-style
options to html dialog. bump version
2017-02-05 17:37 v1c0nt
* data/get-lang.c, data/yad.1, po/ru.po, po/uk.po, src/option.c,
src/text.c, src/yad.h: add --theme option to text-info dialog
2017-02-03 15:31 v1c0nt
* ChangeLog: for previous - add scpetial variables to url handler
in html dialog
2017-02-03 15:30 v1c0nt
* data/yad.1, src/html.c:
2017-02-01 06:35 v1c0nt
* src/html.c:
2017-02-01 06:32 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/html.c, src/option.c,
src/yad.h: add --uri-handler option to html dialog
2017-01-29 14:54 v1c0nt
* ChangeLog, po/ru.po, po/uk.po, src/browser.c, src/calendar.c,
src/color.c, src/entry.c, src/file.c, src/font.c, src/form.c,
src/html.c, src/icons.c, src/list.c, src/multi-progress.c,
src/notification.c, src/option.c, src/picture.c, src/print.c,
src/progress.c, src/scale.c, src/text.c, src/util.c: update
copyright years
2017-01-29 14:41 v1c0nt
* src/form.c: change value position for scale field in form dialog
2017-01-26 05:03 v1c0nt
* ChangeLog, data/yad.1, po/ru.po, po/uk.po, src/notebook.c,
src/option.c, src/yad.h: add --active-tab option to notebook
dialog
2017-01-23 18:38 v1c0nt
* NEWS, configure.ac: release 0.38.2
2017-01-23 18:37 v1c0nt
* src/main.c: fix enter behavior
2017-01-22 08:22 v1c0nt
* src/notification.c: some cleanup
2017-01-14 05:28 v1c0nt
* po/pt_BR.po: update brazilian translation
2017-01-13 12:05 v1c0nt
* src/notebook.c, src/paned.c:
2017-01-13 12:04 v1c0nt
* data/yad.1, src/notebook.c, src/paned.c: add names to notebook
and pane widgets
2017-01-12 02:58 v1c0nt
* po/pt_BR.po: update brazilian translation
2017-01-08 10:25 v1c0nt
* ChangeLog, NEWS: release 0.38.1
2017-01-08 10:23 v1c0nt
* configure.ac, src/about.c: bump copyright years and version
2017-01-08 10:22 v1c0nt
* src/dnd.c, src/main.c, src/util.c: fix tooltip option in dnd
dialog
2016-12-26 04:45 v1c0nt
* po/POTFILES.in, po/ru.po, po/uk.po: fix translation
2016-12-11 14:04 v1c0nt
* ChangeLog: release 0.38.0
2016-12-11 09:38 v1c0nt
* ChangeLog, NEWS, configure.ac, src/list.c: prepare to release
2016-12-11 08:52 v1c0nt
* configure.ac: bump version
2016-12-11 08:52 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/list.c, src/option.c,
src/yad.h: add --add-action option to list dialog
2016-12-11 08:34 v1c0nt
* src/list.c: refactoring list dialog code
2016-12-03 19:51 v1c0nt
* src/main.c: add custom css provider
2016-12-03 14:55 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/option.c, src/scale.c,
src/yad.h: add --inc-buttons option to scale dialog
2016-12-03 13:46 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/main.c, src/option.c,
src/text.c, src/yad.h: add ctrl+enter behavior for all kind of
dialogs
2016-12-03 08:58 v1c0nt
* README, README.md: update README
2016-12-03 08:56 v1c0nt
* Makefile.am, README, README.md: update README
2016-12-03 08:52 v1c0nt
* README: update README
2016-12-03 08:46 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/calendar.c, src/option.c,
src/yad.h: backport --show-weeks option to calendar dialog
2016-12-03 08:26 v1c0nt
* configure.ac, data/yad.1, src/Makefile.am, src/browser.c,
src/calendar.c, src/color.c, src/entry.c, src/file.c, src/font.c,
src/form.c, src/html.c, src/list.c, src/main.c,
src/multi-progress.c, src/notification.c, src/option.c,
src/paned.c, src/picture.c, src/print.c, src/progress.c,
src/scale.c, src/text.c, src/util.c, src/yad.h: get back to
legacy branch
2016-11-14 13:08 v1c0nt
* src/main.c, src/option.c, src/print.c, src/yad.h: remove some
deprecations
2016-11-14 09:57 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/main.c, src/option.c,
src/text.c, src/yad.h: add ctrl+enter behavior for all dialogs
2016-11-14 09:38 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/option.c, src/scale.c,
src/yad.h: add --inc-buttons option to scale dialog
2016-11-13 10:27 v1c0nt
* src/util.c: fix alignment
2016-11-02 20:35 v1c0nt
* data/yad.1: update man page
2016-11-02 20:34 v1c0nt
* po/ru.po, po/uk.po: update translations
2016-11-02 20:33 v1c0nt
* configure.ac, src/option.c: cleanup options
2016-10-29 13:04 v1c0nt
* src/Makefile.am, src/form.c, src/main.c, src/picture.c: fix
makefile
2016-10-29 11:45 v1c0nt
* src/multi-progress.c: fix some deprecations
2016-10-29 10:06 v1c0nt
* src/picture.c: fix build
2016-10-29 10:04 v1c0nt
* src/html.c: fix some deprecations
2016-10-29 10:04 v1c0nt
* src/browser.c, src/form.c, src/html.c, src/main.c,
src/multi-progress.c, src/util.c: fix some deprecations
2016-10-29 09:52 v1c0nt
* configure.ac, src/picture.c, src/print.c, src/yad.h: bump minimal
gtk version to 3.16.0
2016-10-09 17:06 v1c0nt
* src/main.c: fix --no-escape handling
2016-10-05 04:49 v1c0nt
* src/picture.c: add some error handling
2016-10-03 04:47 v1c0nt
* configure.ac, po/ru.po, po/uk.po, src/option.c: fix typo
2016-08-31 05:42 v1c0nt
* data/yad.1, src/list.c, src/option.c, src/picture.c, src/yad.h:
remove some deprecations from list dialog
2016-08-31 03:59 v1c0nt
* data/yad.1: update man page
2016-08-31 03:57 v1c0nt
* po/ru.po, po/uk.po: update translations
2016-08-31 03:55 v1c0nt
* src/color.c, src/form.c, src/option.c, src/util.c, src/yad.h: use
aplha in color dialogs. modify color arguments
2016-08-30 17:33 v1c0nt
* README: update README
2016-08-30 17:28 v1c0nt
* src/color.c, src/form.c, src/option.c, src/util.c, src/yad.h:
port color dialogs to GtkColorChooser
2016-08-30 16:47 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/calendar.c, src/option.c,
src/paned.c, src/yad.h: add --show-week option to calendar
widget.cleanup code
2016-08-29 14:24 v1c0nt
* data/yad.1: fix typo
2016-08-29 05:19 v1c0nt
* src/font.c: port font dialog to GtkFontChooser
2016-08-29 04:38 v1c0nt
* data/yad.1, src/file.c: fix behavior of --filename option in file
directory and appropriately update man page
2016-08-29 04:32 v1c0nt
* po/ru.po, po/uk.po: update translation
2016-08-29 04:31 v1c0nt
* data/yad.1, src/option.c: fix typos
2016-08-28 10:48 v1c0nt
* src/file.c: rewrite --filename handling in file dialog. now
dirname in arg sets the current directory for file dialog
2016-08-27 01:11 v1c0nt
* data/get-lang.c, data/yad.1, po/POTFILES.in, po/ru.po, po/uk.po,
src/Makefile.am, src/entry.c, src/main.c, src/option.c,
src/yad.h: remove entry dialog
2016-08-27 00:58 v1c0nt
* src/html.c: update html dialog
2016-08-26 14:00 v1c0nt
* src/html.c: initial port to webkit2
2016-08-14 09:56 v1c0nt
* configure.ac, src/Makefile.am: change default binary name to yad3
2016-08-14 09:49 v1c0nt
* configure.ac, src/browser.c, src/color.c, src/entry.c,
src/form.c, src/list.c, src/main.c, src/multi-progress.c,
src/notification.c, src/print.c, src/progress.c, src/scale.c,
src/text.c, src/util.c, src/yad.h: remove ifdef-ed gtk2 code.
bump configure version
2016-08-12 11:34 v1c0nt
* NEWS, configure.ac: bump version to 0.37.0. prepare to release
2016-08-06 11:32 v1c0nt
* ChangeLog:
2016-08-06 11:18 v1c0nt
* data/yad.1: update man page
2016-08-05 17:04 v1c0nt
* src/util.c: fix escaping
2016-08-04 06:09 v1c0nt
* configure.ac, src/html.c:
2016-08-04 06:09 v1c0nt
* configure.ac, src/html.c, src/main.c, src/option.c: set default
dialogs borders width to 2
2016-07-23 06:54 v1c0nt
* data/yad.1: update man page
2016-07-23 06:51 v1c0nt
* src/main.c, src/option.c, src/yad.h: enable negative values for
posx and posy
2016-07-19 12:04 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/multi-progress.c,
src/option.c, src/yad.h: add perm type for multiprogress dialog
2016-07-19 09:42 v1c0nt
* src/main.c: improve layout
2016-06-29 12:21 v1c0nt
* src/main.c: improve layout
2016-06-29 10:32 v1c0nt
* ChangeLog, data/yad.1, po/ru.po, po/uk.po, src/color.c,
src/form.c, src/html.c, src/icons.c, src/list.c, src/option.c,
src/picture.c, src/progress.c, src/text.c, src/yad.h: add options
for setting scrollbars policy
2016-06-29 09:55 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/main.c, src/option.c,
src/yad.h: add --close-on-unfocus option
2016-06-26 05:34 v1c0nt
* po/ru.po, po/uk.po, src/option.c: move --image-path option to
misc group
2016-06-22 14:42 v1c0nt
* src/list.c: change wrap mode in list dialog
2016-06-19 16:31 v1c0nt
* src/main.c: fix closing yad's window
2016-06-19 16:19 v1c0nt
* data/yad.1: fix man page
2016-06-19 13:46 v1c0nt
* src/list.c: refactoring
2016-06-19 13:45 v1c0nt
* src/list.c: refactoring
2016-06-19 13:35 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/list.c, src/option.c,
src/yad.h: add --grid-lines option to list dialog
2016-06-19 13:01 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/list.c, src/option.c,
src/yad.h: add wrapping to the list dialog. add ability to
specify list of wrapped, editable and ellipsized columns
2016-06-19 11:02 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/main.c, src/option.c,
src/yad.h: added --posx and --posy options
2016-06-19 09:51 v1c0nt
* configure.ac, src/calendar.c, src/entry.c, src/file.c,
src/form.c, src/list.c, src/main.c, src/multi-progress.c,
src/progress.c, src/text.c, src/yad.h: use GtkWindow instead of
GtkDialog
2016-06-17 10:33 v1c0nt
* src/list.c: fix previous commit
2016-06-17 09:20 v1c0nt
* src/list.c: block select signal on clear list view
2016-05-22 07:03 v1c0nt
* data/yad.1: update date in man page
2016-05-22 07:03 v1c0nt
* data/yad.1: fix man page
2016-05-11 16:49 v1c0nt
* ChangeLog, NEWS: release 0.36.3
2016-05-11 09:30 v1c0nt
* configure.ac, src/text.c: cleanup
2016-05-10 08:36 v1c0nt
* src/icons.c: fix parsing .desktop file (handle empty or
nonexistence comment field)
2016-05-03 12:15 v1c0nt
* configure.ac: fix --wirh-rgb option in ./configure
2016-04-30 18:34 v1c0nt
* src/main.c:
2016-04-30 13:45 v1c0nt
* ChangeLog, NEWS, configure.ac: release 0.36.2
2016-04-30 13:43 v1c0nt
* src/html.c: fix settings title and icon for browser mode in html
dialog
2016-04-30 11:16 v1c0nt
* src/entry.c, src/form.c: honor precision for floats in numeric
fields of form and entry dialogs
2016-04-28 16:59 v1c0nt
* ChangeLog, NEWS: release 0.36.1
2016-04-28 16:58 v1c0nt
* configure.ac, data/yad.1, src/form.c, src/util.c, src/yad.h: fix
man page
2016-04-28 10:42 v1c0nt
* src/form.c: fix set button command in form
2016-04-28 08:15 v1c0nt
* src/form.c: fix set button command in form when data reads from
stdin
2016-04-27 16:59 v1c0nt
* src/form.c, src/util.c, src/yad.h: fix hadling double quotes in
form callback
2016-04-26 13:19 v1c0nt
* ChangeLog, NEWS: release 0.36.0
2016-04-26 13:12 v1c0nt
* configure.ac: bump version to 0.36.0. prepare to release
2016-04-26 13:05 v1c0nt
* po/ru.po, po/uk.po: update translations
2016-04-26 12:58 v1c0nt
* data/yad.1, src/about.c: improve about dialog
2016-04-26 10:49 v1c0nt
* ChangeLog, src/list.c, src/util.c, src/yad.h: cleanup
2016-04-26 10:29 v1c0nt
* src/form.c: quote argument in form button callbacks
2016-04-26 10:22 v1c0nt
* src/form.c: quote argument in form button callbacks
2016-04-22 14:35 v1c0nt
* configure.ac: bump version
2016-04-22 14:35 v1c0nt
* src/text.c: use Monospace as default font for text-info dialog
2016-04-22 14:32 v1c0nt
* src/option.c, src/text.c, src/yad.h: add --lang option to
source-info
2016-04-22 14:07 v1c0nt
* configure.ac, src/Makefile.am, src/text.c, src/yad.h: add initial
support of gtksourceview
2016-04-15 03:58 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/icons.c, src/option.c,
src/yad.h: add --monitor option to icons dialog
2016-04-14 16:59 v1c0nt
* configure.ac: prepare for dir monitoring
2016-04-14 15:19 v1c0nt
* src/icons.c: some cleanups in icon dialog
2016-04-13 18:16 v1c0nt
* src/list.c, src/util.c:
2016-04-13 15:04 v1c0nt
* src/print.c: do not close print dialog when preview is clicked
2016-04-13 09:19 v1c0nt
* src/print.c: change default font for text in print dialog
2016-04-04 09:18 v1c0nt
* README.md, src/entry.c: fix setting initial value for numeric
text entry
2016-04-03 02:44 v1c0nt
* Makefile.am, data/Makefile.am:
2016-04-03 02:40 v1c0nt
* README, README.md, data/get-lang.c:
2016-04-02 11:23 v1c0nt
* configure.ac, src/Makefile.am, src/form.c, src/yad.h: fix spell
buildings
2016-04-02 11:20 v1c0nt
* configure.ac, data/yad.1, po/ru.po, po/uk.po, src/option.c,
src/text.c, src/yad.h: add optional spell checking
2016-03-26 06:51 v1c0nt
* src/main.c: use CENTER_ALWAYS when --center is specified
2016-03-25 06:07 v1c0nt
* TODO, data/yad.1, po/ru.po, po/uk.po, src/list.c, src/option.c,
src/yad.h: add --no-selection option to list dialog
2016-03-21 06:23 v1c0nt
* TODO: update TODO
2016-03-20 20:36 v1c0nt
* TODO: update TODO
2016-03-20 20:32 v1c0nt
* TODO: update TODO
2016-03-20 10:54 v1c0nt
* ChangeLog, NEWS: release 0.35.0
2016-03-20 10:52 v1c0nt
* data/yad.1, src/list.c, src/option.c, src/yad.h: fuck, forget to
add sz column type
2016-03-20 10:28 v1c0nt
* ChangeLog, NEWS, configure.ac: bump version to 0.35.0. prepare to
release
2016-03-20 10:12 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/font.c, src/list.c,
src/option.c, src/yad.h: add BAR column to list dialog
2016-03-10 08:58 v1c0nt
* src/text.c: fix setting custom bg color in text-info dialog for
gtk3
2016-03-07 18:51 v1c0nt
* src/entry.c, src/form.c, src/list.c: switch float output from %g
to %f
2016-03-02 14:17 v1c0nt
* src/file.c, src/form.c, src/util.c, src/yad.h: fix --show-hidden
behavior
2016-03-01 17:00 v1c0nt
* src/form.c: fix handling leading spaces in button callback of
form dialog
2016-02-28 07:36 v1c0nt
* README: update README
2016-02-28 07:17 v1c0nt
* src/text.c: cleanup
2016-02-28 07:11 v1c0nt
* configure.ac, data/yad.1, po/ru.po, po/uk.po, src/option.c,
src/text.c, src/yad.h: add --show-cursor option to text dialog.
place cursor at the start of file
2016-02-28 06:30 v1c0nt
* ChangeLog, NEWS, configure.ac: release 0.34.2
2016-02-27 17:44 v1c0nt
* ChangeLog, src/form.c: fix clearing fields in form when
--cycle-read is using
2016-02-25 06:03 v1c0nt
* ChangeLog, NEWS: release 0.34.1
2016-02-25 06:00 v1c0nt
* configure.ac, src/main.c: fix expander. bump version to 0.34.1
2016-02-23 05:31 v1c0nt
* src/form.c: improve parsing of output form buttons callbacks
2016-02-23 05:24 v1c0nt
* data/yad.1: update man page
2016-02-22 09:31 v1c0nt
* NEWS:
2016-02-21 16:00 v1c0nt
* ChangeLog: release 0.34.0
2016-02-21 11:22 v1c0nt
* ChangeLog, NEWS, configure.ac: bump version to 0.34.0. prepare to
release
2016-02-21 11:00 v1c0nt
* ChangeLog, data/yad.1, src/color.c, src/form.c, src/util.c,
src/yad.h: extend output of color button field in form dialog
2016-02-21 09:36 v1c0nt
* data/yad.1: update man page
2016-02-21 09:27 v1c0nt
* po/ru.po: fix typo in russian translation
2016-02-21 09:22 v1c0nt
* po/ru.po, po/uk.po: update translations
2016-02-21 09:18 v1c0nt
* src/about.c, src/browser.c, src/calendar.c, src/color.c,
src/dnd.c, src/entry.c, src/font.c, src/form.c, src/html.c,
src/icons.c, src/main.c, src/notebook.c, src/notification.c,
src/option.c, src/paned.c, src/picture.c, src/print.c,
src/progress.c, src/scale.c, src/text.c, src/util.c: update
copyright year
2016-02-21 09:14 v1c0nt
* src/multi-progress.c, src/option.c, src/yad.h: add --watch-bar
options for multi-progress dialog. change behavior of auto-close
function
2016-02-21 08:44 v1c0nt
* data/yad.1: update man page
2016-02-19 06:52 v1c0nt
* configure.ac, po/ru.po, po/uk.po, src/file.c, src/form.c,
src/option.c, src/yad.h: add initial support of show-hidden
files. need more testing
2016-02-18 19:24 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/font.c, src/option.c,
src/yad.h: add --separate-output option to font dialog
2016-02-17 17:31 v1c0nt
* src/font.c: add quoted output to font dialog
2016-02-12 15:18 v1c0nt
* configure.ac: fix webkit package name for gtk3 build
2016-02-06 07:34 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/list.c, src/option.c,
src/yad.h: add --select-action to list dialog
2016-01-17 19:30 v1c0nt
* po/POTFILES.in, po/ru.po, po/uk.po, src/html.c: fix translation
2016-01-16 07:20 v1c0nt
* configure.ac: some configure improvements for build yad with gtk3
and webkit. needs additional testing
2016-01-13 04:41 v1c0nt
* ChangeLog, src/main.c:
2016-01-11 12:35 v1c0nt
* NEWS, configure.ac: version 0.33.1
2016-01-11 12:32 v1c0nt
* src/main.c: fix timeout handling
2015-12-29 14:55 v1c0nt
* NEWS, data/yad.1, po/ru.po, po/uk.po: update translations and man
page
2015-12-29 14:47 v1c0nt
* src/entry.c, src/form.c, src/list.c, src/option.c, src/yad.h: add
--float-precision option
2015-12-29 14:28 v1c0nt
* src/entry.c, src/list.c:
2015-12-29 14:27 v1c0nt
* src/entry.c, src/form.c, src/list.c: fix output of floating
numbers (remove trailing zeroes)
2015-12-28 09:35 v1c0nt
* data/yad.1, src/form.c: add FormFeed for clear the form
2015-12-28 06:56 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/form.c, src/option.c,
src/yad.h: add --cycle-read option for form dialog. update
translations
2015-12-27 14:13 v1c0nt
* NEWS, data/yad.1, src/form.c: fix form stdin handling
2015-12-27 09:25 v1c0nt
* ChangeLog, NEWS, configure.ac: bump version to 0.33.0. prepare to
release
2015-12-26 09:42 v1c0nt
* src/notebook.c, src/paned.c: some cleanups
2015-12-26 09:41 v1c0nt
* configure.ac, data/yad.1, src/main.c: some cleanups
2015-12-26 09:29 v1c0nt
* src/main.c, src/notebook.c, src/paned.c: fix paned and notebook
close segfault
2015-12-25 09:40 v1c0nt
* src/util.c: fix extended completions
2015-12-10 16:14 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/option.c: update docs
2015-12-10 16:10 v1c0nt
* po/ru.po, po/uk.po: update translations
2015-12-10 16:07 v1c0nt
* src/main.c, src/util.c: some fixes
2015-12-10 16:03 v1c0nt
* src/entry.c, src/form.c, src/option.c, src/util.c, src/yad.h:
extended completion
2015-12-09 17:49 v1c0nt
* src/main.c: rewrite layout management
2015-12-07 16:55 v1c0nt
* src/form.c, src/picture.c: fix focus in form, fix uninitialized
warning in picture
2015-12-06 09:19 v1c0nt
* src/form.c, src/util.c: fix handling empty values in form dialog
2015-12-06 08:58 v1c0nt
* data/yad.1: fix man page
2015-12-06 08:51 v1c0nt
* data/yad.1, src/util.c: fix typos
2015-11-29 18:58 v1c0nt
* src/form.c: enable read form data from stdin
2015-11-29 18:35 v1c0nt
* src/picture.c: fix fit_to_window in picture dialog
2015-11-29 14:44 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/form.c, src/option.c,
src/yad.h: add --focus-field option to form dialog
2015-11-29 14:32 v1c0nt
* po/ru.po: correct russian translation
2015-11-29 14:23 v1c0nt
* configure.ac: bump beta version
2015-11-29 14:22 v1c0nt
* data/yad.1, po/POTFILES.in, po/ru.po, po/uk.po, src/Makefile.am,
src/form.c, src/main.c, src/option.c, src/picture.c, src/yad.h:
add --picture dialog
2015-11-29 08:23 v1c0nt
* src/file.c, src/main.c, src/yad.h: change initialization style
2015-11-28 06:09 v1c0nt
* src/util.c: check for NULL value in regex completion
2015-11-26 13:07 v1c0nt
* src/html.c, src/main.c: improve --browser mode of html dialog.
does not show default buttons and add quit menu item
2015-11-24 06:28 v1c0nt
* src/util.c: fix completion regex
2015-11-22 10:50 v1c0nt
* configure.ac, data/Makefile.am, data/notify-send,
src/Makefile.am, src/main.c, src/option.c, src/send-notify.c,
src/yad.h: remove send notify. add misc script instead
2015-11-20 13:06 v1c0nt
* configure.ac, src/Makefile.am, src/main.c, src/option.c,
src/send-notify.c, src/util.c, src/yad.h: initial implementation
of send-notify
2015-11-20 06:09 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/entry.c, src/form.c,
src/option.c, src/util.c, src/yad.h: add --complete-regex option
2015-11-19 22:23 v1c0nt
* configure.ac: add check for gio in configure for future use
2015-11-19 22:11 v1c0nt
* po/uk.po: update ukrainian translation
2015-11-19 21:43 v1c0nt
* configure.ac, po/ru.po, po/uk.po, src/option.c: optimize options
2015-11-19 06:35 v1c0nt
* ChangeLog: release 0.32.0
2015-11-19 05:45 v1c0nt
* ChangeLog, NEWS, data/yad.1: prepare to release
2015-11-19 05:35 v1c0nt
* ChangeLog, configure.ac, data/yad.1, po/ru.po, po/uk.po,
src/entry.c, src/form.c, src/option.c, src/yad.h: add
--num-output option. bump version to 0.32.0
2015-11-17 20:46 v1c0nt
* src/main.c: fix timeout progressbar vertical orientation for gtk3
2015-11-16 16:02 v1c0nt
* src/main.c: fix timeout progress layout for gtk3
2015-11-03 09:37 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/main.c, src/option.c,
src/yad.h: add --no-focus option
2015-11-02 11:51 v1c0nt
* src/main.c: unfocus splash dialogs
2015-11-01 15:53 v1c0nt
* src/main.c: use single close button as a default buttons set for
dnd dialog
2015-10-31 16:22 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/main.c, src/option.c,
src/yad.h: add --splash options. thanks to Konstantin Baierer
(https://github.com/kba)
2015-10-31 15:34 v1c0nt
* configure.ac, src/browser.c: add rules-hint for icons list in
icon browser
2015-10-31 14:54 v1c0nt
* configure.ac: release 0.31.3
2015-10-31 14:52 v1c0nt
* NEWS, src/form.c: fix set default value for completion entry in
form dialog
2015-10-08 18:27 v1c0nt
* data/yad.1: update man page
2015-10-08 10:04 v1c0nt
* ChangeLog, NEWS: release 0.32.2
2015-10-08 10:01 v1c0nt
* configure.ac, src/list.c: fix segfault in list dialog when
separators enabled but --sep-value is unset
2015-09-29 13:04 v1c0nt
* ChangeLog:
2015-09-29 13:04 v1c0nt
* ChangeLog: release 0.31.1
2015-09-29 11:42 v1c0nt
* configure.ac: bump version
2015-09-29 08:50 v1c0nt
* NEWS, src/html.c: fix segfault in html dialog
2015-09-11 05:15 v1c0nt
* po/uk.po:
2015-09-10 11:07 v1c0nt
* ChangeLog, NEWS, configure.ac: bump version. prepare to release
2015-09-10 05:31 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/file.c, src/form.c,
src/option.c, src/util.c, src/yad.h: enable preview for all of
file chooser dialogs
2015-09-09 16:34 v1c0nt
* po/ru.po, po/uk.po: remove crap from translation
2015-09-09 16:19 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/file.c, src/form.c,
src/option.c, src/yad.h: extend file filters and apply them to
all of file dialogs
2015-09-09 12:15 v1c0nt
* src/form.c, src/option.c, src/util.c, src/yad.h: add date_format
default settings
2015-09-09 11:25 v1c0nt
* src/option.c, src/yad.h: remove rules_hint from settings
2015-09-09 11:21 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/color.c, src/option.c,
src/util.c, src/yad.h: add palette options to color dialog.
remove this settings fron yad settings file
2015-09-09 10:29 v1c0nt
* data/yad.1, src/html.c, src/icons.c, src/text.c, src/util.c,
src/yad.h: change hardcoded xdg-open to yad setting
"open_command"
2015-09-09 09:53 v1c0nt
* src/main.c, src/option.c, src/util.c, src/yad.h: remove obsolete
dialog-sep option. code cleanup
2015-09-09 05:48 v1c0nt
* ChangeLog:
2015-09-08 14:22 v1c0nt
* po/ru.po, po/uk.po:
2015-09-08 14:22 v1c0nt
* data/yad.1, src/option.c:
2015-09-08 14:16 v1c0nt
* configure.ac: add -no-rules-hint option to list dialog
2015-09-08 14:15 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/color.c, src/list.c,
src/option.c, src/util.c, src/yad.h:
2015-09-08 12:20 v1c0nt
* data/yad.1, src/main.c: add YAD_OPTIONS variable
2015-09-08 12:03 v1c0nt
* src/main.c: fix setting icon theme
2015-09-08 10:35 v1c0nt
* configure.ac:
2015-09-08 10:34 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/list.c, src/option.c,
src/yad.h: add separators to --list dialog
2015-09-08 04:57 v1c0nt
* src/option.c: fix parsing orientation
2015-09-05 06:28 v1c0nt
* ChangeLog, NEWS: update NEWS
2015-09-05 05:31 v1c0nt
* configure.ac, data/yad.1: update man page. bump version to
0.30.0. prepare to next release
2015-09-05 05:21 v1c0nt
* po/POTFILES.in, po/ru.po, po/uk.po, src/notebook.c, src/option.c,
src/paned.c, src/yad.h: add paned dialog
2015-09-04 14:54 v1c0nt
* src/paned.c:
2015-09-04 14:53 v1c0nt
* src/main.c:
2015-09-04 11:57 v1c0nt
* src/Makefile.am, src/about.c, src/notebook.c, src/option.c,
src/util.c, src/yad.h: add placeholder for paned dialog
2015-08-31 08:15 v1c0nt
* po/ru.po, po/uk.po: fix translation
2015-08-27 06:04 v1c0nt
* data/yad.1, src/option.c: rename --parent to --parent-win
2015-08-26 16:16 v1c0nt
* configure.ac: bump version
2015-08-26 16:15 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/main.c, src/option.c,
src/yad.h: add --parent option
2015-08-26 15:39 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/option.c, src/text.c,
src/yad.h: add --uri-color option for text dialog
2015-08-01 16:34 v1c0nt
* NEWS, src/about.c, src/browser.c, src/calendar.c, src/color.c,
src/dnd.c, src/entry.c, src/file.c, src/font.c, src/form.c,
src/html.c, src/icons.c, src/list.c, src/multi-progress.c,
src/notebook.c, src/notification.c, src/option.c, src/print.c,
src/progress.c, src/scale.c, src/text.c, src/util.c, src/yad.h:
update copyright years
2015-07-29 09:50 v1c0nt
* configure.ac, src/main.c: fix build with --disable-html
2015-07-15 12:58 v1c0nt
* ChangeLog:
2015-07-15 12:58 v1c0nt
* ChangeLog, NEWS, configure.ac: release 0.29.0
2015-07-15 12:51 v1c0nt
* ChangeLog, po/ru.po, po/uk.po, src/html.c: set default html
encoding from locale
2015-07-15 12:23 v1c0nt
* src/html.c, src/main.c: fix focus problems in html dialog
2015-07-14 11:22 v1c0nt
* src/form.c: fix output of empty or unset fields in form dialog
2015-07-14 11:05 v1c0nt
* src/html.c: set default encoding to utf-8 in html dialog
2015-07-07 12:04 v1c0nt
* src/html.c: add custom file chooser handler for html dialog
2015-06-02 16:58 v1c0nt
* configure.ac, data/yad.1, po/ru.po, po/uk.po, src/html.c,
src/main.c, src/option.c, src/yad.h: add --no-escape option
2015-05-04 11:13 v1c0nt
* po/ru.po, po/uk.po, src/about.c, src/main.c: show current gtk
version in --version and --about dialog
2015-05-04 11:02 v1c0nt
* src/file.c, src/form.c, src/html.c, src/util.c, src/yad.h: fix
build with gcc 5.x
2015-03-31 09:00 v1c0nt
* ChangeLog, po/ru.po, po/uk.po, src/about.c: extend about info
2015-03-12 10:25 v1c0nt
* NEWS: release 0.28.1
2015-03-10 11:50 v1c0nt
* ChangeLog, NEWS:
2015-03-10 11:36 v1c0nt
* configure.ac: bump version to 0.28.1
2015-03-10 10:44 v1c0nt
* src/form.c: fix output by row in form dialog
2015-03-06 13:53 v1c0nt
* ChangeLog, NEWS: release 0.28.0
2015-03-06 11:15 v1c0nt
* ChangeLog, src/html.c:
2015-03-06 10:28 v1c0nt
* configure.ac: bump version to 0.28.0. preparing for release
2015-03-06 10:27 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/form.c, src/option.c,
src/yad.h: add completion entry for form dialog
2015-03-06 08:55 v1c0nt
* src/list.c: fix setup arguments for double-click action in list
dialog
2015-03-05 16:57 v1c0nt
* README: update README
2015-03-05 15:36 v1c0nt
* data/yad.1: fix man page
2015-03-05 15:26 v1c0nt
* data/yad.1, po/ru.po, po/uk.po: update data
2015-03-05 15:19 v1c0nt
* ChangeLog, src/form.c, src/option.c, src/yad.h: add
--output-by-row option to form dialog
2015-03-05 14:41 v1c0nt
* src/multi-progress.c: previous doesn't need in multiprogress
2015-03-05 14:31 v1c0nt
* src/entry.c, src/form.c, src/multi-progress.c, src/util.c: add
mnemonic possibility for labels in some dialog
2015-03-04 09:16 v1c0nt
* src/print.c: fix printing to a file
2015-03-03 16:15 v1c0nt
* data/yad.1: update man page
2015-03-03 11:51 v1c0nt
* data/yad.1: update man page
2015-03-03 11:18 v1c0nt
* configure.ac, po/ru.po, po/uk.po, src/html.c, src/option.c,
src/yad.h: completely add html dialog
2015-03-02 16:59 v1c0nt
* src/html.c: some changes in html
2015-03-02 16:44 v1c0nt
* src/option.c, src/yad.h: some changes in html
2015-03-02 16:41 v1c0nt
* src/html.c: some changes in html
2015-03-02 16:40 v1c0nt
* configure.ac: some changes in html
2015-03-02 15:21 v1c0nt
* configure.ac, src/Makefile.am, src/main.c, src/option.c,
src/text.c, src/yad.h: add initial html dialog
2015-02-18 07:44 v1c0nt
* po/ru.po, po/uk.po:
2015-02-04 06:10 v1c0nt
* po/ru.po, po/uk.po, src/option.c: update translation
2015-01-13 13:00 v1c0nt
* configure.ac, src/multi-progress.c, src/notebook.c: set labels in
pulsate progress bar in multi-progress dialog
2014-08-28 07:18 v1c0nt
* configure.ac: fix setting combo field values in form dialog
2014-08-28 07:17 v1c0nt
* src/form.c:
2014-08-18 12:36 v1c0nt
* data/yad.1, src/color.c: fix rgba output in color dialog
2014-08-18 11:16 v1c0nt
* data/yad.1, src/color.c: fix output order of opacity in color
dialog
2014-08-18 10:56 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/option.c: update translation
and man page
2014-08-18 10:08 v1c0nt
* configure.ac, src/color.c, src/option.c, src/yad.h: add --alpha
and --mode options for color dialog
2014-08-01 09:24 v1c0nt
* ChangeLog: release 0.27.0
2014-08-01 08:33 v1c0nt
* NEWS, configure.ac: bump version to 0.27.0. prepare to release
2014-08-01 07:38 v1c0nt
* data/yad.1, po/ru.po, po/uk.po, src/main.c, src/option.c,
src/yad.h: add --gtkrc option
2014-07-23 18:37 v1c0nt
* configure.ac, src/text.c: replace g_memmove with memmove
2014-07-23 07:42 v1c0nt
* src/form.c, src/main.c:
2014-07-22 08:25 v1c0nt
* src/list.c, src/main.c: add shared memory header. fix condition
for detect expanding columns in list dialog
2014-04-18 07:50 v1c0nt
* data/yad.1: update man page
2014-04-18 07:48 v1c0nt
* po/ru.po, po/uk.po: add --hidden option for notification icon
2014-04-18 07:45 v1c0nt
* po/ru.po, po/uk.po, src/notification.c, src/option.c, src/yad.h:
fix tooltip-colimn description
2014-04-15 10:30 v1c0nt
* data/yad.1, src/main.c: add YAD_XID variable
2014-04-15 04:59 v1c0nt
* data/yad.1: fix typo in man page
2014-04-15 03:49 v1c0nt
* src/option.c: fix build for windows
2014-03-17 16:02 v1c0nt
* src/print.c, src/util.c, src/yad.h:
2014-02-28 11:48 v1c0nt
* src/list.c:
2014-02-27 12:06 v1c0nt
* src/icons.c: fix markup tooltip in icon dialog
2014-02-27 11:29 v1c0nt
* src/form.c, src/util.c, src/yad.h: undelete escape_str function
2014-02-27 11:14 v1c0nt
* configure.ac, src/form.c, src/icons.c, src/list.c, src/option.c,
src/util.c, src/yad.h: add --tooltip-column option. cleanup
parsing markup code
2014-02-22 07:00 v1c0nt
* ChangeLog, NEWS: release 0.26.1
2014-02-21 07:10 v1c0nt
* configure.ac: fix name of dist package
2014-02-21 07:08 v1c0nt
* configure.ac, src/form.c: fix setting values in multifile field
of form dialog
2014-02-20 09:28 v1c0nt
* configure.ac: fix package name
2014-02-16 19:43 v1c0nt
* configure.ac: bump version to 0.26.1
2014-02-16 19:43 v1c0nt
* src/form.c: fix button alignment in form dialog
2014-02-16 18:42 v1c0nt
* src/list.c: fix output in list dialog from check and radiolists
2014-02-13 12:25 v1c0nt
* configure.ac: update configure.ac with new hosting description
2014-02-08 08:03 ananasik
* ChangeLog:
2014-02-08 08:02 ananasik
* ChangeLog, NEWS: release 0.26.0
2014-02-08 07:52 ananasik
* src/entry.c, src/form.c: make numeric entries aligned to the
right
2014-02-07 15:29 ananasik
* src/util.c: improve image labels behavior
2014-02-07 12:27 ananasik@gmail.com
* src/main.c, src/util.c: fix alignment of image labels
2014-02-07 12:06 ananasik@gmail.com
* ChangeLog, src/util.c: update image labels creation
2014-02-07 10:52 ananasik@gmail.com
* configure.ac: bump version to 0.26.0. prepare for release
2014-02-07 10:51 ananasik@gmail.com
* data/yad.1: fix typo
2014-02-07 10:50 ananasik@gmail.com
* data/yad.1: update man page
2014-02-07 10:40 ananasik@gmail.com
* configure.ac, src/about.c, src/browser.c, src/calendar.c,
src/color.c, src/dnd.c, src/entry.c, src/file.c, src/font.c,
src/form.c, src/icons.c, src/list.c, src/main.c,
src/multi-progress.c, src/notebook.c, src/notification.c,
src/option.c, src/print.c, src/progress.c, src/scale.c,
src/text.c, src/yad.h:
2014-02-07 10:36 ananasik@gmail.com
* src/form.c, src/main.c, src/notebook.c, src/util.c, src/yad.h:
use image labels for all such elements
2014-02-07 09:56 ananasik@gmail.com
* src/form.c, src/util.c: update image labels
2014-02-07 07:44 ananasik
* ChangeLog, src/notebook.c, src/yad.h: use image labels in
notebook tabs
2014-02-07 07:26 ananasik
* configure.ac, po/de.po, po/fr.po, po/it.po, po/pt_BR.po,
po/ru.po, po/sk.po, po/uk.po, po/zh_TW.po: update translations
2014-02-07 07:21 ananasik
* src/option.c: fix typo
2014-02-07 07:19 ananasik
* data/yad.1: update man page
2014-02-07 07:10 ananasik
* src/util.c: some gtk3 fixes for image labels
2014-02-07 07:07 ananasik
* src/form.c, src/option.c, src/yad.h: add fbtn field type for form
dialog
2014-02-07 06:58 ananasik
* src/notebook.c, src/option.c, src/yad.h: remove align option and
add tab-pos option for notebook dialog
2014-02-07 06:50 ananasik
* src/util.c: use markup for image labels
2014-02-07 06:41 ananasik
* src/util.c: add parser for labels with images
2014-02-07 06:06 ananasik
* src/main.c: set YAD_PID variable for child processes
2014-01-24 08:24 ananasik
* ChangeLog:
2014-01-24 06:38 ananasik
* src/list.c: improve ellipsizing in list dialog
2014-01-24 03:34 ananasik
* configure.ac: bump version in configure
2014-01-24 03:34 ananasik
* data/yad.1, src/list.c: add \@ handler for double-click action in
list dialog
2014-01-24 02:53 ananasik
* src/list.c: improve handling no-markup option in list dialog
2014-01-24 02:47 ananasik
* src/list.c: fix handling no-markup option in list dialog
2014-01-24 02:44 ananasik
* src/list.c:
2013-12-18 12:58 ananasik@gmail.com
* src/list.c: fix markup in list dialog
2013-12-06 05:51 ananasik
* ChangeLog, NEWS, configure.ac: release 0.25.1
2013-12-06 05:25 ananasik
* src/notification.c: fix notification menu
2013-12-03 10:53 ananasik
* src/option.c: fix indentation
2013-12-03 10:43 ananasik
* src/main.c: set normal windows hints for yad windows
2013-12-03 09:14 ananasik
* NEWS: fix typo
2013-12-03 09:05 ananasik
* ChangeLog: release 0.25.0
2013-11-30 15:08 ananasik
* NEWS, configure.ac: prepare to the next release
2013-11-30 14:23 ananasik
* data/yad.1, po/de.po, po/fr.po, po/it.po, po/pt_BR.po, po/ru.po,
po/sk.po, po/uk.po, po/zh_TW.po, src/main.c, src/option.c,
src/yad.h: add --maximized and --fullscreen options
2013-11-30 13:59 ananasik
* data/yad.1, po/de.po, po/fr.po, po/it.po, po/pt_BR.po, po/ru.po,
po/sk.po, po/uk.po, po/zh_TW.po, src/notification.c,
src/option.c, src/yad.h: add --menu option for notification icon
2013-11-24 07:07 ananasik
* data/yad.1, po/ru.po: update man page
2013-11-24 07:01 ananasik
* configure.ac, src/icons.c, src/option.c, src/yad.h: remove
aliases for --listen option. replace --stdin on --listen in icons
dialog(!!!)
2013-11-23 16:39 ananasik
* NEWS: release 0.24.1
2013-11-23 16:38 ananasik
* configure.ac, src/notification.c: fix parsing menu in
notification dialog
2013-11-15 05:52 ananasik
* NEWS: fix typo
2013-11-15 05:47 ananasik
* ChangeLog, NEWS, configure.ac: release 0.24.0
2013-11-14 11:21 ananasik@gmail.com
* configure.ac, data/yad.1, po/de.po, po/fr.po, po/it.po,
po/pt_BR.po, po/ru.po, po/sk.po, po/uk.po, po/zh_TW.po,
src/option.c: add --image-path option/ update man page and
translations
2013-11-09 05:56 ananasik
* configure.ac: prepare to next release
2013-11-09 05:53 ananasik
* src/list.c, src/option.c, src/yad.h: add --no-click option to
list dialog
2013-11-09 05:39 ananasik
* src/text.c: allow clear text in text-info dialog with ^L
2013-10-27 09:22 ananasik
* configure.ac: bump version to 0.23.2
2013-10-27 09:18 ananasik
* src/main.c: use signal name instead of number
2013-10-27 09:16 ananasik
* po/de.po, po/fr.po, po/it.po, po/pt_BR.po, po/ru.po, po/sk.po,
po/uk.po, po/zh_TW.po, src/main.c, src/option.c, src/yad.h:
correct --auto-kill and --auto-close options for multi-progress
dialog
2013-10-27 09:01 ananasik
* po/ru.po: fix russian translation
2013-10-27 08:57 ananasik
* src/multi-progress.c: add auto-close feature to multi-progress
dialog
2013-10-27 08:31 ananasik
* src/multi-progress.c: fix segfault on wrong bar number in
multiprogress dialog
2013-10-27 07:43 ananasik
* po/LINGUAS, po/pt_BR.po: add Brazilian Portuguese translation
2013-10-24 10:57 ananasik@gmail.com
* src/list.c: fix tooltips in list dialog
2013-09-23 05:02 ananasik
* ChangeLog, NEWS: release 0.23.1
2013-09-14 08:04 ananasik
* src/main.c: fix setting size of unresizable dialogs
2013-09-13 09:46 ananasik
* configure.ac, src/notebook.c: fix previous commit
2013-09-13 09:11 ananasik
* src/notebook.c: wait for child termination in notebook
2013-09-02 14:34 ananasik@gmail.com
* ChangeLog, NEWS: release 0.23.0
2013-09-02 14:28 ananasik@gmail.com
* po/de.po, po/fr.po, po/it.po, po/ru.po, po/sk.po, po/uk.po,
po/zh_TW.po: update translation
2013-09-02 14:22 ananasik@gmail.com
* configure.ac: bump version to 0.23.0
2013-09-02 14:20 ananasik@gmail.com
* data/yad.1, src/file.c, src/form.c, src/list.c: add
--quoted-putput option
2013-09-02 13:42 ananasik@gmail.com
* data/yad.1, src/form.c: add default values for combo-boxes in
form dialog
2013-09-02 13:33 ananasik
* src/option.c, src/yad.h: add quoted-output option (without
implementation)
2013-08-26 08:25 ananasik
* src/main.c: fix dialog text align
2013-08-26 08:07 ananasik
* src/main.c: some cleanups
2013-07-19 08:33 ananasik@gmail.com
* src/calendar.c, src/entry.c, src/file.c, src/form.c, src/list.c,
src/progress.c: fix invalid cast for notebook dialog
2013-07-12 12:42 ananasik
* ChangeLog, NEWS: reelease 0.22.1
2013-07-12 12:40 ananasik
* configure.ac: bump version to 0.22.1
2013-07-12 12:39 ananasik
* src/main.c: fix dialog text sizing for gtk-3.0
2013-07-10 07:09 ananasik@gmail.com
* src/main.c, src/notification.c: fix dialog text wrapping and use
of stock items in notification menu
2013-06-24 09:22 ananasik
* data/yad.1, src/form.c: a bit of fixes before upload release
2013-06-24 09:17 ananasik
* ChangeLog, NEWS: release 0.22.0
2013-06-24 08:59 ananasik
* configure.ac: bump version to 0.22.0
2013-06-24 07:59 ananasik
* TODO, configure.ac, data/yad.1, po/de.po, po/fr.po, po/it.po,
po/ru.po, po/sk.po, po/uk.po, po/zh_TW.po, src/form.c,
src/option.c, src/scale.c, src/yad.h: add scale field to form
dialog
2013-06-02 05:52 ananasik
* data/yad.1: update man page
2013-06-01 16:49 ananasik
* src/main.c: some fixes in dialog text alignment
2013-05-31 11:41 ananasik@gmail.com
* data/yad.1, po/de.po, po/fr.po, po/it.po, po/ru.po, po/sk.po,
po/uk.po, po/zh_TW.po, src/main.c, src/option.c, src/yad.h: fix
dialog text alignment
2013-05-29 15:08 ananasik@gmail.com
* configure.ac: bump version to 0.21.90
2013-05-29 15:07 ananasik@gmail.com
* data/yad.1, po/de.po, po/fr.po, po/it.po, po/ru.po, po/sk.po,
po/uk.po, po/zh_TW.po, src/notification.c, src/option.c,
src/yad.h: add --no-middle option to notification icon
2013-05-29 14:19 ananasik@gmail.com
* src/icons.c: fix handle stdin for icons dialog in compact mode
2013-05-29 14:19 ananasik@gmail.com
* po/LINGUAS, po/it.po: add italian translation
2013-05-12 11:52 ananasik
* configure.ac: bump version to 0.21.1
2013-05-12 11:51 ananasik
* src/notebook.c: fix borders around child dialogs in notebook
2013-05-12 11:09 ananasik
* data/yad.1, src/option.c: update man page
2013-05-12 10:31 ananasik
* src/form.c: fix form layout on gtk+-3.0
2013-05-10 06:12 ananasik
* ChangeLog:
2013-05-10 06:11 ananasik
* NEWS, configure.ac: release 0.21.0
2013-05-10 06:06 ananasik
* data/yad.1, po/de.po, po/fr.po, po/ru.po, po/sk.po, po/uk.po,
po/zh_TW.po, src/form.c, src/option.c, src/yad.h: add scrolling
for form dialog
2013-05-10 04:58 ananasik
* data/yad.1: fix man page
2013-04-26 11:23 ananasik@gmail.com
* po/de.po, po/fr.po, po/ru.po, po/sk.po, po/uk.po, po/zh_TW.po,
src/list.c: add "Duplicate row" menu entry in editable list
dialog
2013-04-05 08:14 ananasik@gmail.com
* ChangeLog:
2013-04-05 08:14 ananasik@gmail.com
* NEWS: release 0.20.3
2013-04-05 08:11 ananasik@gmail.com
* configure.ac: bump version to 0.20.3
2013-04-05 08:10 ananasik@gmail.com
* src/form.c: fix check field placement in form dialog for gtk3
2013-04-01 08:25 ananasik@gmail.com
* src/form.c: use double-click for selecting date in date field of
form dialog
2013-04-01 08:17 ananasik@gmail.com
* po/sk.po: update slovak translation
2013-03-29 14:34 ananasik
* ChangeLog: release 0.20.2
2013-03-29 14:33 ananasik
* NEWS, configure.ac: update NEWS, bump version to 0 20.2
2013-03-29 14:29 ananasik
* src/scale.c: fix gtk3 deprecations in scale
2013-03-27 16:07 ananasik@gmail.com
* src/main.c: fix warning
2013-03-27 06:22 ananasik
* ChangeLog: update Changelog
2013-03-27 06:21 ananasik
* ChangeLog, src/list.c: fix tooltips in list dialog
2013-03-21 06:27 ananasik
* NEWS, configure.ac, src/main.c, src/option.c, src/util.c: improve
parse arguments for --kill-parent
2013-03-21 06:12 ananasik
* src/option.c: fix initial value of kill_parent option
2013-03-20 06:03 ananasik
* ChangeLog, NEWS: release 0.20.0
2013-03-20 05:51 ananasik
* configure.ac: bump version to 0.20.0
2013-03-20 05:50 ananasik
* src/main.c: fix geometry for windows with --fixed argument
2013-03-20 05:38 ananasik
* data/yad.1, po/de.po, po/fr.po, po/ru.po, po/sk.po, po/uk.po,
po/zh_TW.po, src/option.c, src/progress.c, src/yad.h: add
log-height option for progress dialog
2013-03-19 16:28 ananasik
* src/browser.c, src/form.c, src/multi-progress.c: switch to grid
from table on gtk3
2013-03-19 15:43 ananasik
* src/browser.c, src/multi-progress.c: improve gtk3 layout in
multi-progress dialog
2013-03-18 19:11 ananasik
* src/browser.c, src/main.c, src/yad.h: improve gtk3 for icon
browser
2013-03-18 15:24 ananasik@gmail.com
* src/progress.c: add newline to log strings
2013-03-18 15:20 ananasik@gmail.com
* data/yad.1, src/form.c: update man page
2013-03-18 14:11 ananasik@gmail.com
* src/form.c, src/progress.c: gtk3 improvement
2013-03-18 11:56 ananasik@gmail.com
* configure.ac, data/yad.1, po/de.po, po/fr.po, po/ru.po, po/sk.po,
po/uk.po, po/zh_TW.po, src/option.c, src/progress.c, src/yad.h:
add log window to progress dialog
2013-03-11 14:58 ananasik@gmail.com
* data/yad.1, po/de.po, po/fr.po, po/ru.po, po/sk.po, po/uk.po,
po/zh_TW.po, src/main.c, src/option.c, src/yad.h: add
user-specified signals to --kill-parent
2013-02-19 11:24 ananasik@gmail.com
* src/about.c, src/browser.c, src/calendar.c, src/color.c,
src/dnd.c, src/entry.c, src/file.c, src/font.c, src/form.c,
src/list.c, src/main.c, src/multi-progress.c, src/notebook.c,
src/notification.c, src/print.c, src/progress.c, src/scale.c,
src/text.c, src/util.c, src/yad.h: update copyright info
2013-02-19 11:20 ananasik@gmail.com
* src/icons.c:
2013-02-19 11:13 ananasik@gmail.com
* ChangeLog, configure.ac: bump version in configure.ac to 0.19.90.
prepare to next release
2013-02-19 11:12 ananasik@gmail.com
* data/yad.1, po/de.po, po/fr.po, po/ru.po, po/sk.po, po/uk.po,
po/zh_TW.po, src/icons.c, src/option.c, src/yad.h: add
--single-click option to icons dialog
2013-02-19 09:30 ananasik@gmail.com
* src/entry.c: --entry-text sets existing default item in combo-box
or add it if not found
2012-12-31 11:37 ananasik
* ChangeLog, NEWS: release 0.19.1
2012-12-31 11:36 ananasik
* ChangeLog, configure.ac, data/yad.1: update man page. bump
version to 0.19.1
2012-12-31 08:22 ananasik
* src/icons.c: fix parsing .desktop files in icons dialog
2012-12-28 12:21 ananasik@gmail.com
* src/file.c, src/form.c: make previous commit more robust
2012-12-28 11:04 ananasik@gmail.com
* src/file.c, src/form.c: use current folder as the default
location in file and form dialog
2012-12-24 13:35 ananasik@gmail.com
* ChangeLog, NEWS:
2012-12-24 13:31 ananasik@gmail.com
* configure.ac, data/yad.1, po/de.po, po/fr.po, po/ru.po, po/sk.po,
po/uk.po, po/zh_TW.po: release 0.19.0
2012-12-24 13:19 ananasik@gmail.com
* src/file.c, src/option.c, src/print.c, src/yad.h: add preview to
file dialog
2012-12-24 12:16 ananasik@gmail.com
* src/icons.c: recognize link type of .desktop files in icon dialog
2012-12-11 10:50 ananasik
* po/de.po, po/fr.po, po/ru.po, po/sk.po, po/uk.po, po/zh_TW.po,
src/browser.c: improved icon description in icon browser
2012-11-29 09:13 ananasik@gmail.com
* src/dnd.c, src/list.c: fix quoting special characters when pass
data to the command in list and dnd
2012-11-25 13:49 ananasik
* data/yad.1: fix man page
2012-11-22 10:55 ananasik@gmail.com
* ChangeLog, NEWS, configure.ac, src/main.c: release 0.18.0
2012-11-22 10:44 ananasik@gmail.com
* data/yad.1, po/de.po, po/fr.po, po/ru.po, po/sk.po, po/uk.po,
po/zh_TW.po: update translation and man page
2012-11-22 10:10 ananasik@gmail.com
* src/main.c: fix output for plugged dialog
2012-11-21 14:50 ananasik@gmail.com
* src/main.c, src/notebook.c: fixe shared memory cleanup
2012-11-21 10:39 ananasik@gmail.com
* src/main.c, src/notebook.c, src/util.c: fix shared memory cleanup
2012-11-20 13:14 ananasik@gmail.com
* src/main.c, src/notebook.c: first working implementation of
tabbed dialog
2012-11-20 11:54 ananasik@gmail.com
* src/main.c, src/yad.h:
2012-11-20 09:46 ananasik@gmail.com
* src/list.c, src/main.c, src/notebook.c, src/util.c:
2012-11-16 08:25 ananasik@gmail.com
* src/list.c: fix segfault in list dialog when print column is
greater than number of columns
2012-11-15 16:08 ananasik@gmail.com
* src/main.c, src/notebook.c, src/util.c, src/yad.h:
2012-10-18 04:22 ananasik
* src/about.c, src/browser.c, src/calendar.c, src/color.c,
src/dnd.c, src/entry.c, src/file.c, src/font.c, src/form.c,
src/icons.c, src/list.c, src/main.c, src/multi-progress.c,
src/notebook.c, src/notification.c, src/option.c, src/print.c,
src/progress.c, src/scale.c, src/text.c, src/util.c, src/yad.h:
indenting code
2012-10-18 03:57 ananasik
* src/icons.c, src/list.c, src/main.c, src/multi-progress.c,
src/notification.c, src/progress.c, src/text.c: handle eof in all
listen dialogs
2012-10-17 18:58 ananasik
* src/list.c: handle eof in list dialog
2012-10-17 16:55 ananasik
* src/yad.h: fix plug/socket includes for compatibility with gtk3
2012-10-17 16:15 ananasik
* src/yad.h: fix xid type for compatibility with gtk3
2012-10-16 10:55 ananasik@gmail.com
* src/list.c: queue notify signals when list fills from
command-line
2012-10-12 04:19 ananasik
* src/main.c:
2012-10-12 03:26 ananasik
* src/list.c, src/text.c:
2012-10-11 13:05 ananasik
* src/main.c, src/notebook.c: remove debug staff
2012-10-11 13:04 ananasik
* src/main.c, src/notebook.c: fix typo
2012-10-11 13:04 ananasik
* src/main.c, src/notebook.c, src/util.c, src/yad.h: some changes
in notebook (not completely working)
2012-10-11 08:29 ananasik
* src/option.c, src/yad.h:
2012-10-11 08:19 ananasik
* src/util.c, src/yad.h:
2012-10-11 08:16 ananasik
* src/main.c, src/yad.h:
2012-10-11 08:02 ananasik
* po/de.po, po/fr.po, po/ru.po, po/sk.po, po/uk.po, po/zh_TW.po,
src/main.c, src/option.c, src/yad.h:
2012-10-11 07:05 ananasik
* src/main.c, src/option.c, src/yad.h:
2012-10-11 06:58 ananasik
* src/Makefile.am, src/main.c, src/util.c, src/yad.h: add max_tab
settings
2012-10-02 08:25 ananasik
* po/Makefile.in.in: update po/Makefile.in.in from latest intltool
2012-10-02 08:15 ananasik
* src/form.c, src/list.c, src/main.c, src/notebook.c, src/print.c:
fix some warnings and errors
2012-10-02 07:45 ananasik
* src/util.c, src/yad.h: fix issue #145 (building yad with clang)
2012-09-05 04:54 ananasik
* src/notification.c: fix parsing malformed command in notification
2012-09-05 03:35 ananasik
* data/yad.1: fix typo in man page
2012-08-29 18:15 ananasik
* configure.ac, src/Makefile.am: cosmetic changes
2012-08-29 18:05 ananasik
* configure.ac: bump minor version
2012-08-29 15:31 ananasik
* src/progress.c: fix progressbar height (patch by
larchunix@gmail.com)
2012-08-27 12:17 ananasik
* src/option.c, src/util.c: fix parsing arguments and options
2012-08-09 08:36 ananasik
* data/yad.1: update man page
2012-08-07 14:08 ananasik
* src/multi-progress.c: fix setting labels in multi-progress dialog
2012-06-01 13:02 ananasik
* po/de.po, po/fr.po, po/ru.po, po/sk.po, po/uk.po, po/zh_TW.po,
src/main.c: fix grammar error
2012-05-31 09:54 ananasik
* configure.ac, src/list.c:
2012-05-29 04:25 ananasik
* data/yad.1: fix man page
2012-05-22 15:06 ananasik
* src/form.c: fix previous commit
2012-05-22 14:59 ananasik
* configure.ac, src/form.c: fix read-only field in form dialog
2012-05-05 15:50 ananasik
* src/main.c, src/notebook.c:
2012-04-27 09:20 ananasik
* po/uk.po:
2012-04-25 14:00 ananasik
* src/main.c, src/notebook.c, src/yad.h:
2012-04-23 14:56 ananasik
* po/uk.po: fix ukrainian translation
2012-04-23 13:00 ananasik
* data/yad.1, po/de.po, po/fr.po, po/ru.po, po/sk.po, po/uk.po,
po/zh_TW.po: update man and translations
2012-04-23 12:04 ananasik
* src/list.c, src/notification.c, src/option.c, src/text.c,
src/yad.h: add --listen option to list and text dialogs
2012-04-23 10:39 ananasik
* src/list.c: make double-click in list dialog always works
2012-04-23 08:04 ananasik
* data/yad.1, src/entry.c, src/form.c, src/list.c,
src/notification.c: add precisions to form and entry numeric
fields
2012-04-11 16:25 ananasik
* src/main.c, src/notebook.c, src/option.c, src/yad.h:
2012-04-09 14:59 ananasik
* src/main.c:
2012-04-09 13:59 ananasik
* src/main.c, src/option.c, src/yad.h:
2012-04-09 10:47 ananasik
* src/main.c:
2012-04-09 10:31 ananasik
* src/main.c, src/notebook.c:
2012-04-09 06:20 ananasik
* src/option.c, src/yad.h:
2012-04-09 06:13 ananasik
* src/notebook.c:
2012-04-09 06:11 ananasik
* src/main.c, src/option.c, src/yad.h:
2012-04-07 09:20 ananasik
* src/main.c:
2012-04-07 08:25 ananasik
* po/POTFILES.in, src/Makefile.am, src/main.c, src/notebook.c,
src/option.c, src/yad.h: initial implementation of notebook
dialog
2012-04-05 19:11 ananasik
* configure.ac, data/yad.1, src/form.c: add @disabled@ value to
form dialog
2012-04-03 12:47 ananasik
* configure.ac, data/yad.1, po/de.po, po/fr.po, po/ru.po, po/sk.po,
po/uk.po, po/zh_TW.po: final implementation of radio toggle
columns
2012-04-03 12:40 ananasik
* src/list.c: fix output for radiolist
2012-04-03 12:38 ananasik
* src/list.c, src/option.c, src/yad.h: add radiolist option to list
dialog
2012-04-03 12:28 ananasik
* src/list.c: fix toggling radio column
2012-04-03 11:51 ananasik
* src/list.c, src/option.c, src/yad.h: add initial radio column
support to list dialog
2012-04-02 15:41 ananasik
* configure.ac, src/list.c: fix tooltips in list dialog
2012-04-02 13:17 ananasik
* configure.ac, data/yad.1, po/de.po, po/fr.po, po/ru.po, po/sk.po,
po/uk.po, po/zh_TW.po, src/list.c, src/option.c, src/yad.h: add
hidden column type for list dialog
2012-03-22 15:21 ananasik
* configure.ac: bump version to 0.17.91
2012-03-22 15:09 ananasik
* src/form.c: fix wrap for multiline text fields in form dialog
2012-03-16 14:41 ananasik
* src/main.c: fix --geometry bug
2012-03-11 05:56 ananasik
* data/yad.1, src/option.c: fix default buttons layout
2012-03-09 18:26 ananasik
* ChangeLog:
2012-03-09 18:25 ananasik
* configure.ac, data/yad.1: update man page. bump version to
0.17.90
2012-03-09 18:21 ananasik
* po/de.po, po/fr.po, po/ru.po, po/sk.po, po/uk.po, po/zh_TW.po,
src/main.c, src/option.c, src/yad.h: add --buttons-layout option
2012-03-09 17:53 ananasik
* po/de.po, po/fr.po, po/ru.po, po/sk.po, po/uk.po, po/zh_TW.po,
src/form.c, src/multi-progress.c, src/option.c, src/yad.h: make
--align works for multi-progress too
2012-03-09 17:42 ananasik
* src/multi-progress.c: use markup for bar labels in multiprogress
dialog
2012-03-09 10:09 ananasik
* data/yad.1: fix man page
2012-03-05 14:38 ananasik
* ChangeLog, NEWS: release 0.17.1.1
2012-03-05 14:37 ananasik
* configure.ac, src/notification.c: fix --listen mode of
notification
2012-03-05 08:26 ananasik
* src/notification.c:
2012-03-05 08:14 ananasik
* ChangeLog, NEWS: release 0.17.1
2012-03-05 08:02 ananasik
* src/notification.c: fix handling empty strings in --listen mode
of notification
2012-03-03 08:21 ananasik
* src/main.c: cleanup
2012-03-01 15:07 ananasik
* src/text.c: fix releasing search regexp in text-info dialog
2012-03-01 10:55 ananasik
* po/LINGUAS, po/zh_TW.po: add traditional chinese translation
2012-03-01 10:52 ananasik
* src/text.c: fix releasing search result in test-info dialog
2012-02-29 11:56 ananasik
* src/text.c:
2012-02-29 11:16 ananasik
* src/text.c:
2012-02-28 12:55 ananasik
* src/text.c: improve search in text-info
2012-02-28 10:37 ananasik
* configure.ac: bump version to 0.17.1
2012-02-28 10:20 ananasik
* src/form.c, src/util.c, src/yad.h: fix output of multiline text
field in form dialog
2012-02-28 09:04 ananasik
* src/form.c, src/text.c: add wrap to text field in form
2012-02-28 08:08 ananasik
* src/text.c: fix build for gtk < 2.22.0
2012-02-23 16:58 ananasik
* ChangeLog, NEWS, configure.ac: release 0.17.0
2012-02-23 14:52 ananasik
* data/yad.1: update man page
2012-02-23 14:31 ananasik
* src/list.c: send ^L cleanup the list data
2012-02-23 12:49 ananasik
* src/list.c: handle both command line and stdin data in list
dialog
2012-02-17 11:45 ananasik
* src/about.c, src/browser.c, src/calendar.c, src/color.c,
src/dnd.c, src/entry.c, src/file.c, src/font.c, src/form.c,
src/icons.c, src/list.c, src/main.c, src/multi-progress.c,
src/notification.c, src/option.c, src/print.c, src/progress.c,
src/scale.c, src/text.c, src/util.c, src/yad.h: update copyright
years
2012-02-17 11:42 ananasik
* data/yad.1, po/de.po, po/fr.po, po/ru.po, po/sk.po, po/uk.po,
src/main.c, src/option.c, src/yad.h: add --rest option
2012-02-10 06:18 ananasik
* data/yad.1: update man page
2012-02-09 19:51 ananasik
* src/text.c: add frame to search window in text dialog
2012-02-09 15:17 ananasik
* po/de.po, po/fr.po, po/ru.po, po/sk.po, po/uk.po: update
translations
2012-02-09 14:48 ananasik
* data/yad.1: update man page
2012-02-09 14:45 ananasik
* configure.ac, src/form.c, src/option.c, src/yad.h: add TXT field
to form
2012-02-09 11:25 ananasik
* data/yad.1: update man page
2012-02-09 11:22 ananasik
* src/form.c, src/option.c, src/yad.h: add MDIR field type to form
2012-02-09 10:17 ananasik
* src/text.c:
2012-02-09 10:07 ananasik
* src/text.c: improve search in text-info dialog
2012-02-08 16:24 ananasik
* src/text.c: implement search in text-info dialog
2012-02-07 16:25 ananasik
* src/text.c: working commit
2012-02-01 15:58 ananasik
* src/browser.c, src/entry.c, src/list.c, src/text.c: some cleanups
2011-12-11 09:16 ananasik
* data/yad.1: update man page
2011-12-11 07:35 ananasik
* src/option.c, src/util.c, src/yad.h: add new settings
"ignore_unknown_options"
2011-12-05 16:18 ananasik
* ChangeLog, NEWS, configure.ac: release 0.16.3
2011-12-05 16:10 ananasik
* src/form.c: recognize special characters like \n in form labels
2011-11-26 13:17 ananasik
* src/progress.c, src/yad.h: fix --percentage option in progress
dialog
2011-11-26 06:17 ananasik
* src/main.c, src/text.c: fix settings in text-info dialog for
gtk3. change in window-icon settings algorythm
2011-11-25 14:58 ananasik
* ChangeLog, NEWS, configure.ac: release 0.16.2
2011-11-25 14:56 ananasik
* src/entry.c: always set first item as active for combo-box in
entry dialog
2011-11-25 12:50 ananasik
* TODO: update TODO
2011-11-25 04:56 ananasik
* src/print.c: fix include in print
2011-11-23 19:49 ananasik
* ChangeLog, NEWS: release 0.16.1
2011-11-23 19:47 ananasik
* configure.ac, src/browser.c, src/print.c: add initial sorting to
icon browser. remove deprecated calls
2011-11-22 05:04 ananasik
* src/entry.c: fix build with gtk3
2011-11-21 15:56 ananasik
* ChangeLog, NEWS: release 0.16.0
2011-11-21 15:48 ananasik
* configure.ac, src/print.c: prepare to release
2011-11-21 12:50 ananasik
* po/de.po, po/fr.po, po/ru.po, po/sk.po, po/uk.po, src/print.c:
2011-11-21 09:43 ananasik
* src/print.c: fix raw printing
2011-11-20 19:56 ananasik
* configure.ac: bump version to 0.15.101
2011-11-20 19:54 ananasik
* src/notification.c:
2011-11-20 19:50 ananasik
* src/notification.c:
2011-11-20 19:48 ananasik
* data/yad.1, src/notification.c: add icons to popup menu in
notification
2011-11-19 10:33 ananasik
* src/print.c:
2011-11-19 09:40 ananasik
* po/de.po, po/fr.po, po/ru.po, po/sk.po, po/uk.po, src/print.c:
add check file type for rwa printing
2011-11-19 06:01 ananasik
* src/entry.c: make enter works for combobox in entry dialog
2011-11-19 05:37 ananasik
* data/yad.1: update man page
2011-11-18 14:51 ananasik
* src/print.c:
2011-11-17 13:05 ananasik
* src/main.c:
2011-11-16 11:24 ananasik
* configure.ac, data/yad.1, po/de.po, po/fr.po, po/ru.po, po/sk.po,
po/uk.po, src/option.c: update translation and man page
2011-11-16 09:51 ananasik
* src/option.c, src/print.c, src/yad.h: add preview and fontname
options to print dialog
2011-11-16 09:19 ananasik
* src/print.c: add raw type to print
2011-11-16 06:18 ananasik
* src/print.c:
2011-11-16 05:10 ananasik
* src/print.c:
2011-11-16 04:58 ananasik
* src/print.c:
2011-11-15 19:29 ananasik
* po/de.po, po/fr.po, po/ru.po, po/sk.po, po/uk.po: update
translations
2011-11-15 19:15 ananasik
* src/print.c: fix printing text
2011-11-15 15:30 ananasik
* src/print.c:
2011-11-15 14:47 ananasik
* src/option.c, src/print.c, src/yad.h:
2011-11-14 15:59 ananasik
* src/print.c:
2011-11-14 13:47 ananasik
* src/main.c: add application name
2011-11-14 13:36 ananasik
* src/main.c, src/option.c, src/print.c, src/util.c, src/yad.h:
2011-11-14 11:13 ananasik
* src/print.c: fix print dialog
2011-11-14 11:04 ananasik
* src/main.c: fix --print-xid
2011-11-14 10:56 ananasik
* src/main.c: fix --print-xid
2011-11-13 17:12 ananasik
* data/yad.1, src/notification.c: don't close notification icon
when --listen specified. update man page
2011-11-13 16:34 ananasik
* data/yad.1: update man page
2011-11-13 16:32 ananasik
* data/yad.1: update man page
2011-11-13 16:28 ananasik
* po/LINGUAS, po/de.po, po/fr.po, po/ru.po, po/sk.po, po/uk.po: add
french translation
2011-11-13 11:12 ananasik
* src/print.c:
2011-11-13 11:05 ananasik
* src/form.c, src/notification.c, src/option.c: add --unit option
to print dialog
2011-11-13 10:58 ananasik
* src/color.c, src/dnd.c, src/entry.c, src/font.c, src/list.c,
src/print.c, src/yad.h: add initial print dialog
2011-11-13 10:24 ananasik
* src/print.c:
2011-11-13 07:48 ananasik
* src/print.c:
2011-11-13 07:48 ananasik
* src/print.c:
2011-11-13 07:21 ananasik
* configure.ac, src/main.c, src/option.c, src/print.c:
2011-11-12 02:22 ananasik
* data/yad.1: update man page
2011-11-11 14:14 ananasik
* src/util.c, src/yad.h:
2011-11-10 18:05 ananasik
* src/print.c: add print.c
2011-11-10 12:42 ananasik
* po/POTFILES.in, src/Makefile.am, src/main.c, src/option.c,
src/yad.h: prepare to add print dialog
2011-11-10 12:06 ananasik
* src/main.c, src/util.c, src/yad.h: prepare to add print dialog
2011-11-10 05:41 ananasik
* data/yad.1: update man page
2011-11-10 05:38 ananasik
* src/main.c: fix adding pid to dialog buttons callback
2011-11-10 04:49 ananasik
* src/main.c: cleanup
2011-11-09 18:03 ananasik
* configure.ac: bump version to 0.15.91
2011-11-09 18:02 ananasik
* data/yad.1, src/main.c, src/option.c, src/yad.h: add command to
dialog buttons
2011-11-08 11:32 ananasik
* src/color.c, src/multi-progress.c, src/notification.c,
src/progress.c: fix errors messaging
2011-11-08 11:28 ananasik
* src/color.c: add shadow to palette in color dialog
2011-11-02 20:02 ananasik
* configure.ac, po/de.po, po/ru.po, po/sk.po, po/uk.po, src/main.c,
src/option.c, src/yad.h: add --text-align options
2011-11-02 17:49 ananasik
* ChangeLog, NEWS: release 0.15.1
2011-11-02 17:45 ananasik
* src/list.c, src/util.c: fix in escaping markup
2011-11-02 14:58 ananasik
* src/list.c:
2011-10-18 05:09 ananasik
* configure.ac, data/yad.1: update man page. bump version to 0.15.1
2011-10-17 08:01 ananasik
* src/form.c: fix grid placement in form dialog
2011-10-15 11:18 ananasik
* TODO: update TODO
2011-10-12 11:24 ananasik
* ChangeLog, NEWS, configure.ac, po/de.po, po/ru.po, po/sk.po,
po/uk.po: release 0.15.0
2011-10-12 11:04 ananasik
* data/yad.1, src/form.c: set values of fields from button
callbacks
2011-10-12 09:58 ananasik
* src/form.c: keep path for auxiliary file dialogs in form dialog
2011-10-09 05:18 ananasik
* src/form.c: some optimization in form dialog
2011-10-09 05:10 ananasik
* src/form.c: fix parse field number in for buttons callbacks
2011-10-02 16:03 ananasik
* src/multi-progress.c: fix reading data from stdin in
multi-progress dialog
2011-10-02 15:45 ananasik
* src/multi-progress.c: add multi-progress
2011-10-02 12:43 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po: update
translations and man page
2011-10-02 12:25 ananasik
* configure.ac, po/POTFILES.in, src/Makefile.am, src/form.c,
src/list.c, src/main.c, src/notification.c, src/option.c,
src/scale.c, src/yad.h: add multi progress dialog. set gtk-close
as a default button for progress dialogs
2011-10-02 08:38 ananasik
* src/progress.c: cleanup
2011-10-02 07:24 ananasik
* configure.ac: bump version to 0.14.90
2011-10-02 07:19 ananasik
* configure.ac: add --with-gtk argument to configure script
2011-10-02 06:46 ananasik
* src/form.c: cleanup
2011-10-02 06:45 ananasik
* TODO: update TODO
2011-10-02 06:45 ananasik
* data/yad.1, src/form.c: substitute field values in command for
form buttons
2011-10-02 05:31 ananasik
* src/form.c: cleanup
2011-10-02 05:03 ananasik
* data/yad.1, src/form.c, src/main.c: add tooltips for form's
button fields
2011-09-30 06:26 ananasik
* TODO, data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po,
src/dnd.c, src/main.c, src/option.c, src/yad.h: add --tooltip for
dnd dialog
2011-09-27 16:26 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po, src/form.c,
src/option.c, src/yad.h: add SFL and CDIR field types for form
dialog
2011-09-27 04:39 ananasik
* src/main.c:
2011-09-27 03:26 ananasik
* Makefile.am, configure.ac, data/Makefile.am, data/icons,
data/icons/128x128, data/icons/128x128/Makefile.am,
data/icons/128x128/yad.png, data/icons/16x16,
data/icons/16x16/Makefile.am, data/icons/16x16/yad.png,
data/icons/24x24, data/icons/24x24/Makefile.am,
data/icons/24x24/yad.png, data/icons/32x32,
data/icons/32x32/Makefile.am, data/icons/32x32/yad.png,
data/icons/48x48, data/icons/48x48/Makefile.am,
data/icons/48x48/yad.png, data/icons/96x96,
data/icons/96x96/Makefile.am, data/icons/96x96/yad.png,
data/icons/Makefile.am, data/yad.1, data/yad.png: add new icon
and some extra files in distribution
2011-09-27 02:38 ananasik
* src/main.c: fix setting window icon
2011-09-17 09:19 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po, src/main.c,
src/option.c, src/yad.h: add --print-xid option
2011-09-10 08:20 ananasik
* src/form.c:
2011-09-10 08:18 ananasik
* src/form.c: fix setting initial value for numeric field in form
2011-09-07 13:12 ananasik
* NEWS, TODO, configure.ac: release 0.14.2
2011-09-07 11:32 ananasik
* src/main.c: cleanup
2011-09-07 11:29 ananasik
* src/main.c: fix dialog text placement
2011-09-05 15:10 ananasik
* README, TODO: update TODO
2011-09-05 15:06 ananasik
* NEWS:
2011-09-05 12:49 ananasik
* src/scale.c: correct formatting
2011-09-05 12:00 ananasik
* configure.ac: release 0.14.1
2011-09-05 11:58 ananasik
* src/scale.c: fix build with gtk3
2011-09-05 07:14 ananasik
* ChangeLog, NEWS: release 0.14.0
2011-09-05 07:09 ananasik
* po/de.po, po/ru.po, po/sk.po, po/uk.po: update translations
2011-09-04 18:53 ananasik
* configure.ac: bump version to 0.14.0. prepare to next release
2011-09-04 08:22 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po, src/option.c,
src/scale.c, src/yad.h: add --page option to scale dialog
2011-09-04 07:22 ananasik
* src/main.c: remove unneeded variable
2011-09-04 07:21 ananasik
* src/main.c: fix placing dialog text
2011-08-31 13:08 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po, src/option.c,
src/scale.c, src/yad.h: add marks to scale dialog
2011-08-31 09:48 ananasik
* po/de.po, po/ru.po, po/sk.po, po/uk.po: update translations
2011-08-31 09:47 ananasik
* po/sk.po: update slovak translation
2011-08-29 18:29 ananasik
* src/list.c:
2011-08-29 18:03 ananasik
* src/list.c:
2011-08-29 11:16 ananasik
* src/list.c: some fixes for regex search
2011-08-29 11:01 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po, src/list.c,
src/option.c, src/yad.h: add regex search for list
2011-08-28 14:16 ananasik
* src/list.c: some fixes
2011-08-21 12:38 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po, src/main.c,
src/option.c, src/yad.h: add expander to main widget
2011-08-19 05:26 ananasik
* src/list.c: fix lists tootltips
2011-08-13 11:20 ananasik
* ChangeLog, NEWS, configure.ac: release 0.13.0
2011-07-31 17:59 ananasik
* src/main.c:
2011-07-31 14:36 ananasik
* src/main.c: fix handling window icon
2011-07-31 08:30 ananasik
* src/progress.c: fix formatting
2011-07-31 08:29 ananasik
* src/progress.c: fix leaks in progressbar
2011-07-30 11:11 ananasik
* po/sk.po: update slovak translation
2011-07-29 15:13 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po, src/option.c:
update man and translations
2011-07-29 14:27 ananasik
* src/calendar.c, src/color.c, src/entry.c, src/file.c, src/font.c,
src/form.c, src/icons.c, src/list.c, src/main.c, src/progress.c,
src/scale.c, src/text.c: add names to widgets
2011-07-29 13:51 ananasik
* src/main.c, src/option.c, src/yad.h: add --borders option
2011-07-28 12:51 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po, src/option.c:
update man and translation
2011-07-28 12:41 ananasik
* src/form.c, src/main.c: fix wrapping text in dialog text and form
label field
2011-07-28 11:27 ananasik
* src/list.c: fix tooltips in list dialog
2011-07-28 10:57 ananasik
* src/form.c, src/main.c, src/option.c, src/yad.h: selectable text
in labels enabled through comman-line
2011-07-28 10:33 ananasik
* src/main.c: fix image clipping with gtk+-3.0
2011-07-28 05:28 ananasik
* src/form.c, src/main.c: add uri's handler to labels
2011-07-28 05:10 ananasik
* src/form.c: set labels fileds selectable in form dialog
2011-07-28 04:43 ananasik
* src/main.c: set dialog text selectable
2011-07-26 04:32 ananasik
* src/form.c: remove relief for button fields in form dialog
2011-07-26 04:29 ananasik
* data/yad.1, src/list.c: extend format of double-click command in
list dialog
2011-07-25 07:01 ananasik
* src/notification.c: fix blinking behavior in notification icon
2011-07-25 06:01 ananasik
* src/main.c:
2011-07-25 05:20 ananasik
* configure.ac, data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po,
src/form.c, src/option.c, src/yad.h: add --column option in form
dialog
2011-07-24 06:53 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po, src/form.c,
src/option.c, src/yad.h: add button field to form
2011-07-24 06:07 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po, src/form.c,
src/option.c, src/yad.h: add label field to form
2011-07-24 05:43 ananasik
* src/entry.c: fix double action in entry icons
2011-07-19 09:37 ananasik
* src/browser.c, src/color.c, src/entry.c, src/list.c, src/main.c,
src/notification.c, src/option.c, src/progress.c, src/text.c,
src/util.c, src/yad.h: small fix in entry
2011-06-29 05:01 ananasik
* ChangeLog, NEWS, configure.ac: release 0.12.4
2011-06-29 04:56 ananasik
* data/yad.1, src/list.c: fix Enter behavior in list dialog
2011-06-29 04:28 ananasik
* src/list.c: fix handling image fileds values in output
2011-06-27 06:10 ananasik
* src/about.c, src/browser.c, src/calendar.c, src/color.c,
src/dnd.c, src/entry.c, src/file.c, src/font.c, src/form.c,
src/icons.c, src/list.c, src/main.c, src/notification.c,
src/option.c, src/progress.c, src/scale.c, src/text.c,
src/util.c, src/yad.h: update source license information
2011-06-27 06:03 ananasik
* src/about.c, src/browser.c, src/calendar.c, src/color.c,
src/dnd.c, src/entry.c, src/file.c, src/font.c, src/form.c,
src/icons.c, src/list.c, src/main.c, src/notification.c,
src/option.c, src/progress.c, src/scale.c, src/text.c,
src/util.c, src/yad.h: update source license information
2011-06-24 17:14 ananasik
* ChangeLog, NEWS: release 0.12.3
2011-06-24 05:36 ananasik
* src/browser.c, src/progress.c: fix build with gtk-3.0
2011-06-23 15:12 ananasik
* configure.ac: bump version to 0.12.3
2011-06-23 15:11 ananasik
* src/progress.c: some updates for previous commit
2011-06-23 14:58 ananasik
* data/yad.1, src/main.c, src/progress.c: fix progressbar text on
gtk-3.0
2011-06-19 10:10 ananasik
* data/yad.1: update man page
2011-06-19 09:48 ananasik
* data/yad.1: fix issue 58
2011-06-19 09:44 ananasik
* data/yad.1: fix typo in man page
2011-06-18 18:03 ananasik
* NEWS:
2011-06-18 18:01 ananasik
* ChangeLog, NEWS, configure.ac: release 0.12.2
2011-06-18 17:57 ananasik
* src/main.c: fix previous commit
2011-06-18 17:50 ananasik
* src/main.c: fix timeout indication orientation
2011-06-18 17:39 ananasik
* po/de.po, po/ru.po, po/sk.po, po/uk.po: fix typo in russian
translation
2011-06-18 17:36 ananasik
* data/yad.1: fix markup in man page
2011-06-17 10:59 ananasik
* src/notification.c: fix initial set of notification icon
2011-06-16 13:54 ananasik
* src/notification.c: fix icon handling in notification
2011-06-16 13:12 ananasik
* src/main.c: fix previous commit
2011-06-16 13:11 ananasik
* src/main.c: enable text wrap when geometry specified
2011-06-11 05:34 ananasik
* TODO: update TODO
2011-06-07 15:37 ananasik
* configure.ac: fix builds with gtk3
2011-06-06 03:46 ananasik
* src/form.c: remove deprecated functions for build with gtk+-3
2011-06-04 05:51 ananasik
* ChangeLog, NEWS, configure.ac, src/Makefile.am: release 0.12.0
2011-05-30 07:04 ananasik
* configure.ac, data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po,
src/form.c, src/option.c, src/yad.h: add editable combo-box field
to form dialog
2011-05-28 17:55 ananasik
* TODO, configure.ac, data/yad.1, po/de.po, po/ru.po, po/sk.po,
po/uk.po, src/browser.c, src/calendar.c, src/dnd.c, src/entry.c,
src/font.c, src/form.c, src/icons.c, src/list.c, src/main.c,
src/notification.c, src/option.c, src/progress.c, src/text.c,
src/util.c, src/yad.h: add double-click action for list dialog
2011-05-28 17:21 ananasik
* TODO, configure.ac, data/yad.1, po/de.po, po/ru.po, po/sk.po,
po/uk.po, src/calendar.xpm, src/entry.c, src/option.c, src/yad.h:
add icons to entry dialog
2011-05-28 16:26 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po,
src/calendar.c, src/option.c, src/yad.h: add --details to
calendar dialog
2011-05-28 11:08 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po,
src/calendar.c, src/form.c, src/option.c, src/yad.h: add multiple
files selection and date fields to form dialog
2011-05-25 03:53 ananasik
* src/icons.c, src/main.c, src/option.c, src/yad.h: add patch for
build yad under windows
2011-05-24 14:32 ananasik
* data/Makefile.am, data/zenity.sh, src/Makefile.am,
src/yad-zenity.sh: move zenity wrapper to data
2011-05-24 14:26 ananasik
* src/yad-zenity.sh: add zenity wrapper
2011-05-24 13:50 ananasik
* TODO: update TODO
2011-05-24 13:48 ananasik
* src/Makefile.am, src/yad-zenity.sh: add template for zenity
wrapper
2011-05-21 05:18 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po: fix typo in
man page
2011-05-16 10:46 ananasik
* data/yad.1: update man page
2011-05-11 09:31 ananasik
* src/list.c: remove deprecated functions
2011-05-11 09:23 ananasik
* ChangeLog, src/list.c:
2011-05-08 07:37 ananasik
* configure.ac: bump version to 0.11.0
2011-05-08 07:36 ananasik
* src/list.c: add tooltips to list dialog
2011-04-25 13:12 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po, src/list.c,
src/option.c, src/yad.h: add --search-column option to list
dialog
2011-04-24 06:50 ananasik
* src/entry.c, src/form.c, src/main.c: add markup to entry and form
labels
2011-04-20 18:04 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po, src/list.c,
src/option.c, src/yad.h: add --elipsize option to list dialog
2011-04-20 07:47 ananasik
* configure.ac, data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po,
src/main.c, src/option.c, src/yad.h: add --skip-taskbar option
2011-04-16 11:13 ananasik
* src/dnd.c, src/main.c: cleanups
2011-04-16 08:46 ananasik
* ChangeLog: release 0.10.2
2011-04-16 08:45 ananasik
* NEWS:
2011-04-16 08:41 ananasik
* configure.ac: bump version to 0.10.2
2011-04-16 08:36 ananasik
* data/yad.1: update man page
2011-04-12 04:36 ananasik
* README: update README
2011-04-10 09:37 ananasik
* src/util.c: fix wrong memory allocation
2011-04-10 06:30 ananasik
* src/list.c: fix "always selected" setting
2011-04-10 06:10 ananasik
* src/text.c: fix reading data from stdin in text dialog
2011-04-06 08:07 ananasik
* ChangeLog, NEWS: release 0.10.1
2011-04-05 04:10 ananasik
* src/main.c: fix issue 51
2011-04-04 10:38 ananasik
* configure.ac, src/dnd.c: fix issue 50
2011-03-29 04:05 ananasik
* src/dnd.c: some cleanups
2011-03-28 10:39 ananasik
* ChangeLog, NEWS, po/de.po, po/ru.po, po/sk.po, po/uk.po: release
0.10.0
2011-03-28 10:34 ananasik
* src/dnd.c: fix dnd behavior
2011-03-27 20:13 ananasik
* configure.ac, src/main.c, src/notification.c: now minimum gtk+
version is 2.16.0
2011-03-27 20:09 ananasik
* src/dnd.c: dnd broken
2011-03-27 17:58 ananasik
* src/dnd.c: some changes in dnd
2011-03-27 17:19 ananasik
* po/de.po, po/ru.po, po/sk.po, po/uk.po, src/icons.c, src/list.c,
src/notification.c, src/text.c, src/util.c: add newline char in
error messages
2011-03-27 17:08 ananasik
* src/util.c: check for an empty args in (un)escape_markup
2011-03-27 16:36 ananasik
* po/sk.po: update slovak translation
2011-03-27 15:48 ananasik
* src/dnd.c:
2011-03-27 15:40 ananasik
* src/dnd.c: add text/uri-list to dnd targets
2011-03-27 12:15 ananasik
* ChangeLog, NEWS:
2011-03-27 12:12 ananasik
* ChangeLog, NEWS, src/dnd.c: unescape text in dnd
2011-03-27 05:34 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po, src/main.c,
src/option.c, src/yad.h: add --kil-parent option
2011-03-24 09:50 ananasik
* configure.ac, data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po:
update man and translation. prepare to release
2011-03-24 09:37 ananasik
* src/text.c: fix handling cursor in text dialog
2011-03-24 09:06 ananasik
* src/text.c:
2011-03-24 08:58 ananasik
* src/text.c: fix handling utf-8 when linkifying text in text
dialog
2011-03-24 06:12 ananasik
* src/text.c: fixes in uri linkifying. wrong work with non-ascii
characters
2011-03-24 06:03 ananasik
* src/icons.c, src/list.c, src/text.c, src/yad.h:
2011-03-23 11:41 ananasik
* src/text.c: some updates to uri linkify
2011-03-22 18:49 ananasik
* src/text.c:
2011-03-22 18:41 ananasik
* data/yad.1, data/yad.m4.in, po/uk.po, src/about.c, src/browser.c,
src/calendar.c, src/color.c, src/dnd.c, src/entry.c, src/file.c,
src/font.c, src/icons.c, src/list.c, src/main.c,
src/notification.c, src/option.c, src/progress.c, src/scale.c,
src/text.c, src/util.c, src/yad.h: add --show-uri option to text
dialog (still little broken), update copyright info in sources
2011-03-22 15:30 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po, src/entry.c,
src/list.c, src/option.c, src/yad.h: add FLT type for columns in
list dialog
2011-03-22 15:17 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po, src/list.c,
src/option.c, src/yad.h: add special columns to list dialog
2011-03-22 12:59 ananasik
* data/yad.1, po/POTFILES.in, po/de.po, po/ru.po, po/sk.po,
po/uk.po, src/option.c: some updates to previous commit
2011-03-22 12:49 ananasik
* configure.ac, src/Makefile.am, src/file.c, src/fileselection.c,
src/font.c, src/main.c, src/option.c, src/text.c, src/yad.h: add
font dialog. --font option in text dialog changed to fontname
2011-03-22 11:57 ananasik
* src/option.c: add short option --file for file selection dialog
2011-03-22 11:50 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po, src/option.c,
src/scale.c, src/yad.h: add --vertical and --invert options to
scale dialog
2011-03-22 11:06 ananasik
* src/entry.c: add additional check for range values in numeric
entry dialog
2011-03-22 10:44 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po, src/entry.c,
src/option.c, src/yad.h: add --numeric option for entry dialog
2011-03-22 08:39 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, po/uk.po, src/list.c,
src/option.c, src/yad.h: add --limit option to list dialog
2011-03-17 16:02 ananasik
* src/util.c:
2011-03-17 15:49 ananasik
* src/util.c:
2011-03-13 07:39 ananasik
* ChangeLog, NEWS: release 0.9.1
2011-03-13 07:33 ananasik
* src/icons.c, src/list.c, src/util.c, src/yad.h: fix markup
tooltips in icons dialog
2011-03-11 12:36 ananasik
* configure.ac: increase version in configure.ac
2011-03-11 08:33 ananasik
* src/util.c:
2011-03-11 08:31 ananasik
* src/list.c, src/util.c, src/yad.h: fix printing result in list
dialog
2011-03-11 07:39 ananasik
* src/list.c:
2011-03-11 05:42 ananasik
* src/list.c: fix markup text in list dialog
2011-03-08 07:23 ananasik
* po/LINGUAS, po/ru.po, po/uk.po: add ukrainian translation
2011-03-08 05:53 ananasik
* po/sk.po: update slovak translation
2011-03-07 19:41 ananasik
* src/entry.c, src/form.c: use GtkComboBoxText in form end entry
dialogs if gtk >= 2.24.x
2011-02-28 10:54 ananasik
* ChangeLog, NEWS: release 0.9.0
2011-02-28 10:50 ananasik
* configure.ac, data/yad.1, po/de.po, po/ru.po, po/sk.po,
src/option.c, src/scale.c, src/yad.h: fix set initial value in
scale dialog
2011-02-08 16:26 ananasik
* po/de.po, po/ru.po, po/sk.po, src/option.c: add alias for --color
2011-02-02 08:31 ananasik
* data/yad.1, src/list.c, src/option.c, src/yad.h: add
--expand-column option in list dialog
2011-02-02 04:56 ananasik
* src/list.c: fix --hide-column option in list dialog
2011-01-30 07:04 ananasik
* data/yad.1: update man page
2011-01-30 06:41 ananasik
* data/yad.1: update man page
2011-01-26 05:22 ananasik
* ChangeLog, NEWS, configure.ac: release 0.8.1
2011-01-25 09:34 ananasik
* src/form.c: fixes in form dialog
2011-01-14 04:27 ananasik
* src/main.c: fix autokill option in progress dialog
2011-01-11 10:03 ananasik
* ChangeLog, NEWS: release 0.8.0
2011-01-11 09:52 ananasik
* data/yad.m4.in: fix formatting
2011-01-10 08:03 ananasik
* configure.ac, data/yad.1, po/de.po, po/ru.po, po/sk.po,
src/form.c, src/option.c, src/yad.h: add alignment to form fields
labels. prepare to the next 0.8.0 release
2011-01-09 14:31 ananasik
* src/option.c, src/util.c, src/yad.h: fix handling colons when
parse button, column or field type
2010-12-25 18:56 ananasik
* src/main.c, src/yad.h: fix ESC handling
2010-12-25 18:35 ananasik
* src/form.c: fix labels alignment in form dialog
2010-12-25 18:12 ananasik
* po/de.po, po/ru.po, po/sk.po: update translation
2010-12-25 18:10 ananasik
* src/browser.c: fix in icon info for icon browser
2010-12-25 18:04 ananasik
* src/browser.c: fix memory corruption in icon browser
2010-12-25 12:57 ananasik
* README, data/yad.1, po/de.po, po/ru.po, po/sk.po: update man and
translation
2010-12-25 12:35 ananasik
* configure.ac, src/browser.c: some fixes in icon browser
2010-12-25 11:35 ananasik
* configure.ac, data/Makefile.am, data/yad.m4.in: add yad.m4
2010-12-20 06:20 ananasik
* configure.ac, data/Makefile.am, data/yad-icon-browser.desktop.in,
data/yad.1, po/POTFILES.in, po/de.po, po/ru.po, po/sk.po,
src/browser.c: update translation and man
2010-12-19 19:33 ananasik
* configure.ac, src/Makefile.am, src/browser.c: add icon browser
2010-12-19 17:13 ananasik
* src/main.c, src/option.c, src/yad.h: add custom icon theme
2010-12-06 07:54 ananasik
* ChangeLog, NEWS, configure.ac: release 0.7.2
2010-12-03 12:37 ananasik
* src/icons.c: fix handling stdin in icons dialog
2010-12-03 12:09 ananasik
* src/icons.c: fixes in icons dialog
2010-12-03 11:52 ananasik
* data/yad.1: fix man page
2010-12-03 10:37 ananasik
* configure.ac, src/about.c: some cleanups
2010-12-03 09:05 ananasik
* src/main.c: fix memory corruption on i386
2010-11-28 19:47 ananasik
* ChangeLog, configure.ac, src/main.c: handle special characters in
separators. bump version to 0.7.0
2010-11-27 13:02 ananasik
* src/list.c: cleanup in list dialog
2010-11-21 09:50 ananasik
* ChangeLog, data/yad.1: fix man page
2010-11-21 09:36 ananasik
* ChangeLog, configure.ac, src/color.c, src/util.c, src/yad.h:
fixes in color dialog
2010-11-18 09:52 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, src/form.c,
src/notification.c, src/option.c, src/util.c, src/yad.h:
separators may only be set from command-line
2010-11-18 09:26 ananasik
* data/yad.1, po/POTFILES.in, po/de.po, po/ru.po, po/sk.po,
src/form.c, src/option.c, src/yad.h: add new field types to form
dialog
2010-11-17 13:15 ananasik
* src/text.c: make --tail work for file
2010-11-17 10:34 ananasik
* ChangeLog, src/icons.c, src/util.c: fix icons handling in icons
dialog reading from stdin
2010-11-17 07:35 ananasik
* configure.ac, data/yad.1, po/de.po, po/ru.po, po/sk.po,
src/icons.c, src/option.c, src/yad.h: add sorting in icons dialog
2010-11-15 19:32 ananasik
* src/icons.c: add fallback name for .desktop files in icons dialog
2010-11-15 19:19 ananasik
* po/ru.po: fix typo in russian translation
2010-11-14 06:26 ananasik
* src/main.c: do not print result when custom buttons specified and
timeout reached
2010-11-14 06:22 ananasik
* configure.ac, data/yad.1, po/de.po, po/ru.po, po/sk.po,
src/main.c, src/option.c, src/yad.h: changes in printing dialog
data
2010-11-13 07:44 ananasik
* configure.ac, data/yad.1:
2010-11-07 10:39 ananasik
* po/sk.po: update slovak translation
2010-11-07 08:16 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, src/option.c,
src/text.c, src/yad.h: add margins to text dialog
2010-11-06 13:38 ananasik
* po/de.po, po/ru.po, po/sk.po, src/option.c: update translation
2010-11-06 13:35 ananasik
* src/option.c: print error message for wrong justification type
2010-11-06 11:04 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, src/option.c,
src/text.c, src/yad.h: add justification in text-info dialog
2010-11-06 06:55 ananasik
* configure.ac: bump version to 0.6.0. prepare to release
2010-11-06 06:52 ananasik
* src/list.c: double clict in simple list works as OK button
2010-10-31 13:16 ananasik
* po/de.po, po/ru.po, po/sk.po, src/icons.c, src/option.c,
src/yad.h: add compact view to icons dialog
2010-10-26 11:36 ananasik
* src/notification.c: fix issue 30
2010-10-18 08:28 ananasik
* NEWS: update NEWS
2010-10-18 08:13 ananasik
* configure.ac: bump version to 0.5.2
2010-10-17 05:57 ananasik
* src/notification.c: fix issue 29
2010-10-13 03:53 ananasik
* NEWS, README, TODO: release 0.5.1
2010-10-12 15:39 ananasik
* configure.ac: bump version to 0.5.1 due to (possible) bugfix
2010-10-12 15:26 ananasik
* src/list.c: fix segfault in list dialog
2010-10-09 15:58 ananasik
* NEWS: update NEWS
2010-10-04 17:24 ananasik
* configure.ac, po/de.po, po/ru.po, po/sk.po, src/text.c: update
translation and fix build under gtk-2.0
2010-10-03 10:17 ananasik
* configure.ac: bump version to 0.5.0
2010-10-03 09:44 ananasik
* configure.ac, src/form.c, src/list.c, src/main.c,
src/notification.c, src/option.c, src/progress.c, src/text.c,
src/util.c, src/yad.h: build with gtk+-3.0
2010-10-03 08:31 ananasik
* data/yad.1: update documentation
2010-10-03 08:26 ananasik
* src/main.c: add SIGUSR1 and SIGUSR2 handlers
2010-10-02 21:47 ananasik
* src/notification.c: close notification icon on middle click
2010-09-28 06:10 ananasik
* po/de.po, po/ru.po, po/sk.po: update translation
2010-09-28 06:04 ananasik
* src/option.c: fix mistake in list options descriptions
2010-09-27 14:54 ananasik
* data/yad.1: update documentation
2010-09-27 14:35 ananasik
* src/main.c: some fixes in --geometry option
2010-09-27 14:30 ananasik
* src/main.c: some fixes in --geometry option
2010-09-25 04:43 ananasik
* src/main.c, src/option.c, src/yad.h: add --geometry option
2010-09-16 10:20 ananasik
* data/yad.1: Update documentation
2010-09-16 09:30 ananasik
* src/form.c: add new field types to form dialog
2010-09-15 11:51 ananasik
* po/de.po, po/ru.po, po/sk.po, src/form.c, src/option.c,
src/yad.h: !!!broken commit!!!
2010-09-11 17:40 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po: update russian
translation and man page
2010-09-11 17:00 ananasik
* src/fileselection.c: recognize escaped characters in overwrite
confirmation message of file dialog
2010-09-11 16:54 ananasik
* src/main.c, src/notification.c, src/option.c, src/yad.h: fix
issue 24
2010-09-06 09:23 ananasik
* src/list.c: add tooltip to printable columns in list dialog
2010-08-31 12:26 ananasik
* data/yad.1:
2010-08-31 12:22 ananasik
* ChangeLog, NEWS: release 0.4.0
2010-08-31 12:12 ananasik
* po/de.po, po/ru.po, po/sk.po, src/option.c: set name of initial
color value to --init-color to avfor avoid set aliased parameter
in scale dialog (e.g. --scale-value instead of --value)
2010-08-30 09:11 ananasik
* po/sk.po: update slovak translation
2010-08-30 08:57 ananasik
* po/de.po, po/ru.po, po/sk.po: update yad.pot
2010-08-28 09:08 ananasik
* ChangeLog, NEWS, po/de.po, po/ru.po, po/sk.po: update
translations
2010-08-28 07:40 ananasik
* po/ru.po, src/text.c: fix tail mode in text dialog
2010-08-28 07:22 ananasik
* src/text.c: fix tail mode in text dialog
2010-08-27 04:44 ananasik
* NEWS, src/yad.h: cleanup
2010-08-21 12:51 ananasik
* data/yad.1, po/de.po, po/ru.po, po/sk.po, src/option.c: update
documentation
2010-08-21 12:09 ananasik
* configure.ac: bump version to 0.4.0
2010-08-21 12:03 ananasik
* data/yad.1, src/list.c, src/option.c, src/yad.h: add support for
tooltip column in list dialog
2010-08-02 05:09 ananasik
* NEWS, po/de.po, po/ru.po, po/sk.po, src/list.c, src/option.c,
src/yad.h: Add no-headers option to list dialog
2010-07-23 10:55 ananasik
* src/icons.c, src/list.c: remove cursor code due to
implementational reasons
2010-07-23 05:26 ananasik
* src/icons.c, src/list.c, src/progress.c: fix issue 23
2010-07-23 05:12 ananasik
* configure.ac: use xz as a default compression for dist tarball
2010-07-23 05:10 ananasik
* src/about.c, src/calendar.c, src/color.c, src/dnd.c, src/entry.c,
src/fileselection.c, src/form.c, src/icons.c, src/list.c,
src/main.c, src/notification.c, src/option.c, src/scale.c,
src/text.c, src/util.c: cleanups
2010-07-15 03:58 ananasik
* configure.ac, src/list.c: enter activate item in editable lists
2010-07-13 04:05 ananasik
* po/sk.po, src/fileselection.c: update slovak translation.
fix format string vulnerability in fileselection
2010-07-10 09:38 ananasik
* NEWS:
2010-07-10 09:35 ananasik
* ChangeLog: release 0.3.0
2010-07-10 09:30 ananasik
* config.h.in: cleanup svn tree
2010-07-10 09:28 ananasik
* Makefile.in, aclocal.m4, config.sub, configure, configure.ac,
data/Makefile.in, data/yad.1, depcomp, install-sh, missing,
mkinstalldirs, po/POTFILES.in, po/de.po, po/ru.po, po/sk.po,
src/Makefile.in, src/icons.c, src/list.c, src/main.c,
src/option.c, src/util.c, src/yad.h: prepare to release 0.3.0.
cleanup svn tree
2010-07-05 04:05 ananasik
* po/de.po, po/ru.po, po/sk.po, src/option.c, src/yad.h: update
translation
2010-07-05 03:45 ananasik
* src/notification.c: cleanups
2010-07-05 03:33 ananasik
* aclocal.m4, configure, configure.ac, src/icons.c: some cleanups
2010-07-05 03:18 ananasik
* README, src/about.c, src/calendar.c, src/color.c, src/dnd.c,
src/entry.c, src/fileselection.c, src/form.c, src/icons.c,
src/list.c, src/main.c, src/notification.c, src/option.c,
src/progress.c, src/scale.c, src/text.c, src/util.c: update
license information
2010-07-05 03:01 ananasik
* data/yad.1, src/notification.c, src/option.c: improve
notification icon dialog
2010-05-30 13:01 ananasik
* configure, configure.ac, src/icons.c, src/list.c: busy cursor in
list and icons dialogs
2010-05-28 12:31 ananasik
* configure, configure.ac, src/dnd.c, src/notification.c,
src/option.c, src/yad.h: Fix options parsing
2010-05-20 04:39 ananasik
* po/POTFILES.in: New line at the end of POTFILES.in
2010-05-17 09:34 ananasik
* src/icons.c, src/option.c:
2010-05-17 09:31 ananasik
* Makefile.in, aclocal.m4, configure, configure.ac,
data/Makefile.in, src/Makefile.in, src/icons.c, src/option.c:
Bump version
2010-05-16 13:43 ananasik
* src/icons.c, src/util.c: Working changes
2010-05-16 09:15 ananasik
* src/icons.c, src/option.c, src/util.c, src/yad.h: working changes
2010-05-16 07:06 ananasik
* src/list.c: Fix bug with editing numeric columns
2010-05-11 14:35 ananasik
* src/icons.c, src/option.c: working changes
2010-05-10 16:29 ananasik
* src/icons.c:
2010-05-10 16:17 ananasik
* src/option.c, src/yad.h:
2010-05-10 16:05 ananasik
* src/icons.c:
2010-05-10 15:55 ananasik
* src/Makefile.am, src/Makefile.in, src/about.c, src/icons.c,
src/main.c, src/option.c, src/yad.h: add initial template for
iconbox dialog
2010-05-10 13:54 ananasik
* ChangeLog, NEWS: release 0.2.1
2010-05-10 13:32 ananasik
* src/list.c: Press return submits data in list dialog
2010-05-10 13:14 ananasik
* src/entry.c, src/form.c: pressing return submits form data
2010-04-24 07:29 ananasik
* po/POTFILES.in, po/de.po, po/ru.po, po/sk.po: Update translation
2010-04-14 06:32 ananasik
* configure, configure.ac: bump version to 0.2.1
2010-04-13 09:22 ananasik
* data/yad.1: update man page
2010-04-13 08:56 ananasik
* po/de.po, po/ru.po, po/sk.po, src/main.c, src/util.c, src/yad.h:
add timeout indicator label. update translation
2010-04-11 09:01 ananasik
* src/dnd.c: flush stduot when print dnd data to stdout
2010-04-11 08:49 ananasik
* data/yad.1, src/dnd.c: fix TARGET_MOZ_URL in dnd
2010-04-10 05:32 ananasik
* NEWS, po/LINGUAS, po/sk.po: Add slovak translation from Slavko
<slavino@slavino.sk>
2010-04-07 13:24 ananasik
* src/main.c: polish widget placement
2010-04-07 13:14 ananasik
* src/list.c, src/util.c, src/yad.h: add always_selected option to
config file
2010-04-05 13:05 ananasik
* ChangeLog, NEWS: release 0.2.0
2010-04-05 12:42 ananasik
* configure, configure.ac, data/yad.1, po/de.po, po/ru.po,
src/fileselection.c, src/main.c, src/option.c, src/yad.h: Fix bug
with --confirm-overwrite. Bump version to 0.2.0
2010-04-05 09:28 ananasik
* acinclude.m4, configure, src/dnd.c, src/entry.c: cleanup code
from deprecated elements
2010-04-05 08:32 ananasik
* data/yad.1, po/de.po, po/ru.po: Update translationn ad man page
2010-04-05 07:58 ananasik
* src/main.c, src/option.c, src/progress.c, src/util.c, src/yad.h:
add timeout indicator
2010-04-03 06:51 ananasik
* po/de.po, po/ru.po: update russian translation
2010-04-03 06:43 ananasik
* Makefile.in, aclocal.m4, configure, configure.ac,
data/Makefile.in, src/Makefile.am, src/Makefile.in, src/dnd.c,
src/fileselection.c, src/main.c, src/option.c, src/yad.h: add dnd
box dialog
2010-04-02 03:58 ananasik
* data/yad.1, src/fileselection.c, src/option.c, src/yad.h: Fix
exit codes for timeout and user-specified buttons
Add 'Exit codes' section to man page
2010-04-01 01:40 ananasik
* data/yad.1, src/fileselection.c: Fix typos in man page
2010-03-19 05:31 ananasik
* src/main.c: fix placement under mouse position
2010-03-17 12:11 ananasik
* NEWS: update NEWS with release changes
2010-03-17 12:05 ananasik
* ChangeLog: release 0.1.0
2010-03-17 09:56 ananasik
* ChangeLog, Makefile.in, NEWS, aclocal.m4, configure,
configure.ac, data/Makefile.in, data/yad.1, src/Makefile.in: Come
cleanups. Bump version to 0.1.0
2010-03-17 06:53 ananasik
* src/main.c, src/util.c, src/yad.h: initialize fallback image at
startup
2010-03-17 06:46 ananasik
* configure, configure.ac, src/main.c, src/util.c: some fixes in
icons handle
2010-03-17 06:39 ananasik
* src/util.c, src/yad.h: keep icon size and theme in settings
structure
2010-03-17 05:54 ananasik
* data/yad.1, po/de.po, po/ru.po, src/option.c: update translation
and manual
2010-03-17 05:37 ananasik
* Makefile.am, Makefile.in, acinclude.m4, aclocal.m4, configure,
configure.ac, data/Makefile.in, m4, po/ChangeLog,
src/Makefile.in, src/list.c, src/option.c, src/util.c, src/yad.h:
add types to list columns
2010-03-09 09:10 ananasik
* src/main.c, src/option.c, src/yad.h: add --mouse option
2010-03-02 19:31 ananasik
* ChangeLog: update changelog. release 0.0.10
2010-03-02 14:49 ananasik
* data/yad.1, src/notification.c: recognize 'quit' command from
stdin in notification icon
2010-03-02 13:54 ananasik
* data/yad.1, po/de.po, po/ru.po, src/form.c, src/main.c,
src/option.c, src/yad.h: Add types to form fields
2010-02-12 12:22 ananasik
* README: update project info
2010-02-12 12:09 ananasik
* Makefile.am, Makefile.in, README, configure, configure.ac,
examples: remove examples
2010-02-12 06:54 ananasik
* TODO: update TODO
2010-02-12 06:03 ananasik
* data/yad.1, src/text.c: some cleanups
2010-02-12 06:01 ananasik
* data/yad.1, po/de.po, po/ru.po, src/option.c, src/text.c,
src/yad.h: add --tail option to text-info dialog
2010-02-12 05:42 ananasik
* src/main.c, src/notification.c: use g_timeout_add_seconds instead
of g_timeout_add with power of 1000
2010-02-12 05:24 ananasik
* configure, configure.ac, po/de.po, po/ru.po: update translation.
bump version to 0.0.10
2010-02-12 05:19 ananasik
* data/yad.1, src/option.c, src/text.c, src/yad.h: enable text
wrapping in text-info dialog. remove --no-wrap option
2010-02-12 05:00 ananasik
* src/option.c, src/text.c, src/yad.h: add custom colors for
text-info dialog
2010-02-11 16:01 ananasik
* po/POTFILES.in, po/de.po, po/ru.po, src/color.c: update
translation
2010-02-11 15:50 ananasik
* data/yad.1, src/option.c: update documentation
2010-02-11 15:08 ananasik
* config.h.in, configure, configure.ac, src/about.c,
src/calendar.c, src/color.c, src/entry.c, src/fileselection.c,
src/form.c, src/list.c, src/main.c, src/notification.c,
src/option.c, src/progress.c, src/scale.c, src/text.c,
src/util.c, src/yad.h: add palette to color dialog. some cleanups
2010-02-08 10:28 ananasik
* data/yad.1: update man page
2010-02-08 09:17 ananasik
* po/de.po, po/ru.po: update translation
2010-02-08 07:28 ananasik
* src/main.c, src/text.c: set cursor invisible when text is not
editable
2010-02-07 10:34 ananasik
* src/main.c, src/option.c, src/yad.h: add --image-on-top option
2010-02-07 09:29 ananasik
* src/option.c, src/progress.c, src/util.c, src/yad.h: add rtl
direction to progress bar
2010-02-07 07:30 ananasik
* src/progress.c: some cleanups
2010-02-07 07:23 ananasik
* src/main.c: recognize special characters (like '\n') in --text
2010-02-05 09:16 ananasik
* ChangeLog: Update ChangeLog for release 0.0.9
2010-02-05 09:14 ananasik
* TODO, configure, data/Makefile.in: Update TODO. Release 0.0.9
2010-02-05 08:57 ananasik
* configure.ac, data/Makefile.am, data/yad.1, data/yad.spec,
data/yad.spec.in: Update man page. Autogenerating yad.spec from
./configure script for add correct version number
2010-02-05 06:49 ananasik
* src/progress.c: fix bug with updating progress text from stdin
2010-01-15 04:40 ananasik
* data/Makefile.am, data/Makefile.in, data/yad.spec: add .spec file
(thanks to Detlef Reichelt)
2010-01-06 09:17 ananasik
* po/de.po, po/ru.po: update translation
2010-01-06 09:12 ananasik
* ChangeLog, configure, configure.ac, data/yad.1, src/main.c,
src/option.c, src/yad.h: add --no-buttons option. fix typo in man
page. bump version to 0.0.8
2009-12-22 04:34 ananasik
* src/main.c: set HIG-compliant buttons order
2009-12-02 11:22 ananasik
* ChangeLog, data/yad.1: update documentation. release 0.0.7
2009-12-02 10:42 ananasik
* src/main.c: fix build on oldest gtk+ (<2.14)
2009-12-01 05:50 ananasik
* po/de.po: update german translation
2009-11-30 15:46 ananasik
* po/de.po: update german translation
2009-11-30 15:08 ananasik
* po/de.po, po/ru.po: update russian translation
2009-11-30 15:05 ananasik
* examples/Makefile.am, examples/Makefile.in, examples/autostart,
src/main.c, src/option.c, src/yad.h: - add one more example
- add window behavior options
2009-11-18 06:16 ananasik
* configure, configure.ac, src/notification.c, src/option.c,
src/yad.h: working changes
2009-11-17 05:47 ananasik
* po/LINGUAS, po/de.po: Add German translation from Manfred Mueller
2009-11-12 19:33 ananasik
* src/Makefile.am, src/Makefile.in: release 0.0.6
2009-11-12 19:31 ananasik
* src/list.c: release 0.0.6
2009-11-12 19:03 ananasik
* ChangeLog: update changelog
2009-11-12 19:02 ananasik
* src/entry.c, src/list.c, src/main.c, src/notification.c,
src/option.c, src/util.c, src/yad.h:
2009-11-12 17:57 ananasik
* ChangeLog, Makefile.in, README, THANKS, TODO, config.guess,
configure, configure.ac, data/yad.1, examples/gsu,
examples/logout, po/ru.po, src/Makefile.am, src/Makefile.in,
src/entry.c, src/form.c, src/list.c, src/main.c,
src/notification.c, src/option.c, src/util.c, src/yad.h: add form
dialog, improvements in entry dialog, prepare to release 0.0.6
2009-11-10 06:49 ananasik
* AUTHORS, COPYING, ChangeLog, Makefile.am, Makefile.in, NEWS,
README, THANKS, TODO, aclocal.m4, config.guess, config.h.in,
config.sub, configure, configure.ac, data, data/Makefile.am,
data/Makefile.in, data/yad.1, data/yad.png, depcomp, examples,
examples/Makefile.am, examples/Makefile.in, examples/gsu,
examples/logout, install-sh, m4, m4/gtk-deprecated.m4, missing,
mkinstalldirs, po, po/ChangeLog, po/LINGUAS, po/Makefile.in.in,
po/POTFILES.in, po/ru.po, src, src/Makefile.am, src/Makefile.in,
src/about.c, src/calendar.c, src/color.c, src/entry.c,
src/fileselection.c, src/list.c, src/main.c, src/notification.c,
src/option.c, src/progress.c, src/scale.c, src/text.c,
src/util.c, src/yad.h: initial upload
2009-10-22 04:27
* .: Initial directory structure.