forked from v1cont/yad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.old
4750 lines (2642 loc) · 102 KB
/
ChangeLog.old
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
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