forked from libyui/libyui-qt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
3881 lines (2595 loc) · 119 KB
/
ChangeLog
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
-------------------------------------------------------------------
Tue Apr 8 13:17:38 UTC 2014 - mvidner@suse.com
- Enable wizard title on the left instead of on top (bnc#868859).
- 2.46.5
-------------------------------------------------------------------
Mon Mar 31 14:31:28 CEST 2014 - tgoettlicher@suse.de
- Made BarGraph segment colors stylable (bnc#868268)
- 2.46.4
-------------------------------------------------------------------
Fri Mar 21 11:41:10 UTC 2014 - mvidner@suse.com
- Fixed "QObject::connect: signal not found in YQCheckBox",
aka CheckBox not sending notifications (bnc#868374)
- 2.46.3
-------------------------------------------------------------------
Thu Mar 15 18:33:41 CET 2014 - anaselli@linux.it
- Fixed YQDateField and YQTimeField notification event
- Fixed YTree item selection during items population,
old implementation ignored selected items.
- Fixed YQTable item selected slot, if no items were selected
at creation, first slection was ignored
- 2.46.2
-------------------------------------------------------------------
Wed Mar 12 14:52:56 UTC 2014 - mvidner@suse.com
- Fixed "QFSFileEngine::open: No file name specified" (A Naselli)
- make Qt5 BuildRequires fine-grained with pkgconfig (H Senjan)
- 2.46.1
-------------------------------------------------------------------
Mon Mar 10 12:22:47 UTC 2014 - mvidner@suse.com
- set parent of context menu, to apply style sheets (tgoettlicher)
- 2.46.0
-------------------------------------------------------------------
Mon Mar 10 10:15:34 UTC 2014 - mvidner@suse.com
- make color of help text search result stylable (tgoettlicher)
- 2.45.4
-------------------------------------------------------------------
Mon Mar 3 17:03:32 UTC 2014 - mvidner@suse.com
- fixed tab switching in Qt5, for example during package installation
- declared pclass(ptr) macro to help with compile time type checking
of Qt signals
- 2.45.3
-------------------------------------------------------------------
Thu Feb 27 14:59:54 UTC 2014 - mvidner@suse.com
- Fixed save_y2logs invocation (bnc#866056).
- 2.45.2
-------------------------------------------------------------------
Fri Feb 21 17:06:15 UTC 2014 - mvidner@suse.com
- fontconfig-devel has been a build dependency; something has
stopped pulling it in for us
- 2.45.1
-------------------------------------------------------------------
Tue Jan 7 12:50:04 UTC 2014 - mvidner@suse.com
- Ported to Qt5
- 2.45.0
-------------------------------------------------------------------
Thu Dec 5 16:36:33 UTC 2013 - mvidner@suse.com
- adjusted to libyui so version 6
- 2.44.0
-------------------------------------------------------------------
Mon Nov 11 12:06:24 UTC 2013 - jsrain@suse.cz
- Added handling of release notes using UI-independent handler
(fate#314695)
-------------------------------------------------------------------
Wed Oct 16 09:23:40 UTC 2013 - jsrain@suse.cz
- added possibility to show release notes button in dialog heading
(fate#314695)
-------------------------------------------------------------------
Tue Aug 6 14:46:19 CEST 2013 - tgoettlicher@suse.de
- fixed dependencies
- Version 2.43.5
-------------------------------------------------------------------
Tue Jul 16 16:01:07 CEST 2013 - tgoettlicher@suse.de
- Fix build of libyui-qt-graph
- Version 2.43.4
-------------------------------------------------------------------
Fri May 10 10:40:00 UTC 2013 - bjoern.esser@gmail.com
- use a common toplevel CMakeLists.txt
- fix building *-doc pkgs
- introduce bootstrap.sh
- Version 2.43.3
-------------------------------------------------------------------
Mon May 6 13:30:00 UTC 2013 - bjoern.esser@gmail.com
- fix build issues
- Version 2.43.2
-------------------------------------------------------------------
Mon May 6 11:52:13 UTC 2013 - bjoern.esser@gmail.com
- use SONAME from libyui instead of VERSION.cmake
- Version 2.43.1
-------------------------------------------------------------------
Fri Jan 18 15:19:26 CET 2013 - anaselli@linux.it
- fixed to use new YSettings, theme path can be set by program
-------------------------------------------------------------------
Mon Jan 4 15:48:13 CET 2013 - tgoettlicher@suse.de
- fixed bnc #801311: read locale directory from YSettings
- Version 2.42.5
-------------------------------------------------------------------
Mon Dec 17 11:51:33 CET 2012 - tgoettlicher@suse.de
- fixed bnc #793893: storage graph in yast missing
- Version 2.42.3
-------------------------------------------------------------------
Fri Nov 23 23:05:52 CET 2012 - anaselli@linux.it
- changed to calendar popup instead using spin
-------------------------------------------------------------------
Fri Nov 2 20:34:52 CET 2012 - anaselli@linux.it
- Reimplemented setApplicationTitle from YApplication
- Used YApplication::applicationTitle() and YApplication::applicationIcon()
to set title and icon
-------------------------------------------------------------------
Thu Oct 25 20:53:53 CEST 2012 - anaselli@linux.it
- YQIMage autoScale implementation
- to build a git sha1 versioned package use cmake -DGIT_VERSION=on
-------------------------------------------------------------------
Fri Sep 7 13:52:12 CEST 2012 - tgoettlicher@suse.de
- Version 2.42.2
-------------------------------------------------------------------
Tue Sep 4 14:37:19 CEST 2012 - tgoettlicher@suse.de
- Fixed requirements in doc spec file
-------------------------------------------------------------------
Tue May 15 16:17:21 CEST 2012 - tgoettlicher@suse.de
- renamed package to libyui-qt
- Version: 2.22.6
-------------------------------------------------------------------
Fri May 4 10:22:36 CEST 2012 - tgoettlicher@suse.de
- Sort numeric table columns in numeric order
- Version: 2.22.6
-------------------------------------------------------------------
Tue Apr 10 15:40:58 CEST 2012 - tgoettlicher@suse.de
- BuildRequire libxcrypt-devel only for < 12.2
- Version: 2.22.5
-------------------------------------------------------------------
Thu Feb 23 15:12:05 CET 2012 - tgoettlicher@suse.de
- Fixed selection Table widget (bnc#746156)
- Version: 2.22.4
-------------------------------------------------------------------
Fri Feb 17 16:17:32 CET 2012 - tgoettlicher@suse.de
- Fixed selection and sorting in Table widget (bnc#746156)
- Version: 2.22.3
-------------------------------------------------------------------
Wed Feb 8 14:54:15 CET 2012 - tgoettlicher@suse.de
- Fixed bnc#731540: fixed auto-scroll in LogView
- Version: 2.22.2
-------------------------------------------------------------------
Tue Dec 20 16:30:28 CET 2011 - tgoettlicher@suse.de
- Confirmed license
- V 2.22.1
-------------------------------------------------------------------
Thu Dec 1 17:46:33 CET 2011 - tgoettlicher@suse.de
- Follow links to anchors in YQTextBrowser (bnc #727330)
- V 2.22.0
-------------------------------------------------------------------
Tue Oct 4 10:25:15 CEST 2011 - tgoettlicher@suse.de
- Don't overwrite wizard's dialog title
- V 2.21.7
-------------------------------------------------------------------
Fri Sep 23 11:19:57 CEST 2011 - tgoettlicher@suse.de
- removed unversioned Provides/Obsoletes from spec file
- V 2.21.6
-------------------------------------------------------------------
Thu Sep 22 14:11:45 UTC 2011 - coolo@suse.com
- require yast2-qt-branding
-------------------------------------------------------------------
Tue Sep 20 14:46:27 CEST 2011 - tgoettlicher@suse.de
- respect stylesheets in dialogs
- V 2.21.5
-------------------------------------------------------------------
Wed May 18 17:04:43 CEST 2011 - tgoettlicher@suse.de
- Fixed selection in tree widgets (bnc #680107)
- V 2.21.4
-------------------------------------------------------------------
Thu Apr 28 14:54:04 CEST 2011 - tgoettlicher@suse.de
- Enable shadow for wizard title
- V 2.21.3
-------------------------------------------------------------------
Thu Apr 21 11:05:49 CEST 2011 - tgoettlicher@suse.de
- Cleaned-up fix for line breaks in LogView (bnc #684759)
- V 2.21.2
-------------------------------------------------------------------
Mon Apr 18 16:16:59 CEST 2011 - tgoettlicher@suse.de
- Enable busy cursor for tree widget during time consuming
operations
- V 2.21.1
-------------------------------------------------------------------
Fri Apr 15 16:20:11 CEST 2011 - tgoettlicher@suse.de
- Added support for recursive selection in tree widgets
- V 2.20.8
-------------------------------------------------------------------
Tue Apr 12 16:33:56 CEST 2011 - tgoettlicher@suse.de
- Fixed line breaks in LogView (bnc #684759)
- V 2.20.7
-------------------------------------------------------------------
Wed Mar 16 10:48:50 CET 2011 - tgoettlicher@suse.de
- Fixed dependencies (bnc #667938)
- V 2.20.6
-------------------------------------------------------------------
Tue Mar 8 16:19:49 CET 2011 - tgoettlicher@suse.de
- Show block devices in file selection dialog (bnc #661685)
- V 2.20.5
-------------------------------------------------------------------
Mon Feb 21 17:37:47 CET 2011 - tgoettlicher@suse.de
- Fixed unselecting items for tree widget (bnc #673801)
- V 2.20.4
-------------------------------------------------------------------
Wed Feb 16 11:14:10 CET 2011 - tgoettlicher@suse.de
- Fixed event handling in context menu (bnc #671147)
- V 2.20.3
-------------------------------------------------------------------
Fri Feb 11 14:57:41 CET 2011 - tgoettlicher@suse.de
- Fixed event handling in tree widget
- V 2.20.2
-------------------------------------------------------------------
Tue Feb 8 12:20:04 CET 2011 - tgoettlicher@suse.de
- Added support for currentItem to tree widget
- V 2.20.1
-------------------------------------------------------------------
Thu Feb 3 17:09:08 CET 2011 - tgoettlicher@suse.de
- Added ValueChanged event to TreeWidget
- V 2.20.0
-------------------------------------------------------------------
Mon Jan 17 11:50:38 CET 2011 - tgoettlicher@suse.de
- Fixed LogView's scroller
- V 2.19.8
-------------------------------------------------------------------
Fri Jan 14 11:25:33 CET 2011 - tgoettlicher@suse.de
- Fixed hanging browse dialogs (bnc #580143)
- V 2.19.7
-------------------------------------------------------------------
Wed Jan 12 15:01:20 CET 2011 - tgoettlicher@suse.de
- Fixed LogView's scroller
- V 2.19.6
-------------------------------------------------------------------
Mon Dec 20 16:52:53 CET 2010 - tgoettlicher@suse.de
- Added support for check boxes in tree widgets
- V 2.19.5
-------------------------------------------------------------------
Mon Nov 22 09:40:58 CET 2010 - tgoettlicher@suse.de
- disables native dialogs (bnc #642270)
- V 2.19.4
-------------------------------------------------------------------
Mon Oct 11 10:23:07 CEST 2010 - tgoettlicher@suse.de
- Fixed font dependency (bnc #629892)
- V 2.19.3
-------------------------------------------------------------------
Thu Jun 17 10:43:05 CEST 2010 - tgoettlicher@suse.de
- Fixed left hand to right hand changing (bnc #612030)
- V 2.19.2
-------------------------------------------------------------------
Tue Apr 20 14:36:13 CEST 2010 - tgoettlicher@suse.de
- increased version number
- V 2.19.1
-------------------------------------------------------------------
Tue Apr 20 12:39:57 CEST 2010 - tgoettlicher@suse.de
- Fixed untranslated context menu (bnc #580165)
- V 2.18.12
-------------------------------------------------------------------
Thu Apr 8 15:44:13 CEST 2010 - tgoettlicher@suse.de
- Fixed LogView auto scroll (bnc #463405)
- V 2.18.11
-------------------------------------------------------------------
Thu Mar 18 14:00:01 CET 2010 - tgoettlicher@suse.de
- Added libqt4 dependency (bnc #589104)
-------------------------------------------------------------------
Tue Feb 9 12:02:26 CET 2010 - tgoettlicher@suse.de
- added gpl v2+ license headers
-------------------------------------------------------------------
Tue Dec 8 17:34:42 CET 2009 - tgoettlicher@suse.de
- fixed bnc #542830: mouse cursor is busy in context menu
-------------------------------------------------------------------
Mon Sep 28 10:41:55 CEST 2009 - tgoettlicher@suse.de
- fixed bnc #532518: YaST in translation
- V 2.18.10
-------------------------------------------------------------------
Wed Aug 26 16:57:19 CEST 2009 - aschnell@suse.de
- fixed workaround for shared library reference counting problem
(bnc #530839)
- V 2.18.9
-------------------------------------------------------------------
Mon Aug 17 10:01:34 CEST 2009 - tgoettlicher@suse.de
- Applied patch from Frank Schaefer that fixes resizing columns
in tables (bnc #392056)
- V 2.18.8
-------------------------------------------------------------------
Thu Jul 30 16:44:19 CEST 2009 - tgoettlicher@suse.de
- Fixed translations in disk usage list (bnc #445716)
-------------------------------------------------------------------
Thu Jul 30 15:23:36 CEST 2009 - tgoettlicher@suse.de
- Fixed highlighting in search dialog (bnc #506813)
-------------------------------------------------------------------
Wed Jul 29 12:45:08 CEST 2009 - kmachalkova@suse.cz
- Use YIconLoader to search for icons (add icon search path, use
findIcon in IconButton widget) (FaTe #306356)
- V 2.18.7
-------------------------------------------------------------------
Wed Mar 11 15:30:46 CET 2009 - kmachalkova@suse.cz
- Added tooltips to BarGraph widget (duplicate segment text in
a tooltip should the segment become too small)
-------------------------------------------------------------------
Tue Mar 10 16:40:26 CET 2009 - tgoettlicher@suse.de
- Fixed frame widget min width (bnc #409143)
-------------------------------------------------------------------
Fri Mar 6 10:35:25 CET 2009 - tgoettlicher@suse.de
- Added context menus
- V 2.18.6
-------------------------------------------------------------------
Fri Feb 20 16:18:37 CET 2009 - tgoettlicher@suse.de
- Fixed menubar spacing in wizard (bnc #464088)
-------------------------------------------------------------------
Thu Feb 19 17:21:48 CET 2009 - tgoettlicher@suse.de
- Fixed bnc #464152: save file dialog asks twice to replace file
when the file exists
-------------------------------------------------------------------
Sun Feb 15 12:39:06 CET 2009 - coolo@suse.de
- include stdio to fix compilation with gcc 4.4
-------------------------------------------------------------------
Mon Feb 9 11:52:34 CET 2009 - sh@suse.de
- Require latest libyui in spec file (API change)
- V 2.18.5
-------------------------------------------------------------------
Thu Jan 15 15:30:46 CET 2009 - sh@suse.de
- Workaround for bnc #440101: Double clicks in Oxygen theme
Now no longer using itemActivated signal, but itemDoubleClicked
-------------------------------------------------------------------
Wed Jan 14 14:38:55 CET 2009 - kmachalkova@suse.cz
- Wizard widget is now derived from QSplitter, replacing former
QFrame. This makes steps/tree panel collapsible (bnc#460739,
bnc#445682)
-------------------------------------------------------------------
Wed Jan 14 12:50:27 CET 2009 - aschnell@suse.de
- added graph widget
- V 2.18.4
-------------------------------------------------------------------
Tue Jan 13 13:57:01 CET 2009 - tgoettlicher@suse.de
- Fixed bnc #445951: Help dialog untranslated
-------------------------------------------------------------------
Fri Jan 9 16:59:12 CET 2009 - tgoettlicher@suse.de
- Fixed bnc #458975: Text cropped in treewidget
- V 2.18.3
-------------------------------------------------------------------
Thu Jan 8 18:58:10 CET 2009 - sh@suse.de
- Fixed bnc #464430 - Root tree items always displayed as open
-------------------------------------------------------------------
Wed Jan 7 16:44:41 CET 2009 - sh@suse.de
- Fixed bnc #461617: Glyph ArrowLeft / ArrowRight in Arabic
-------------------------------------------------------------------
Wed Dec 17 15:56:32 CET 2008 - tgoettlicher@suse.de
- Added stylesheet editor
- V 2.18.2
-------------------------------------------------------------------
Thu Dec 11 11:26:24 CET 2008 - tgoettlicher@suse.de
- Fixed bnc #438861: Wizard layout problems for Arabic and Hebrew
- V 2.17.25
-------------------------------------------------------------------
Wed Dec 10 11:54:03 CET 2008 - sh@suse.de
- Fixed bnc #457682: Qt-UI interprets HTML-tags in wizard title
- Fixed bnc #457691: HTML tags in slide show install log
- V 2.17.24
-------------------------------------------------------------------
Fri Nov 28 13:38:04 CET 2008 - sh@suse.de
- Last fix (bnc #449804) breaks yast2 sysconfig editor - use
QHeaderView::ResizeToContents instead of QHeaderView::Stretch
- V 2.17.23
-------------------------------------------------------------------
Fri Nov 28 12:12:01 CET 2008 - sh@suse.de
- Fixed bnc #449804: Wizard navigation tree always cuts off items
- V 2.17.22
-------------------------------------------------------------------
Wed Nov 26 16:36:25 CET 2008 - coolo@suse.de
- convert the image if it does not need scaling (bnc#449150)
- V 2.17.21
-------------------------------------------------------------------
Thu Nov 13 18:19:01 CET 2008 - sh@suse.de
- Updated lang_fonts from mfabian for Hebrew (bnc #444296)
- V 2.17.20
-------------------------------------------------------------------
Wed Nov 12 17:59:17 CET 2008 - sh@suse.de
- Infrastructure for better table column widths (bnc #441828)
- V 2.17.19
-------------------------------------------------------------------
Fri Nov 7 19:18:25 CET 2008 - sh@suse.de
- Updated lang_fonts from mfabian for bnc #438855 (inst fonts)
- V 2.17.18
-------------------------------------------------------------------
Thu Oct 30 11:04:26 CET 2008 - tgoettlicher@suse.de
- Fixed QPainter warnings in YQBusyIndicator
- V 2.17.17
-------------------------------------------------------------------
Tue Oct 28 17:14:07 CET 2008 - sh@suse.de
- (coolo) Fixed bnc #427632: Steps in wizard not updated
-------------------------------------------------------------------
Tue Oct 21 11:51:17 CEST 2008 - tgoettlicher@suse.de
- Fixed default button (bnc #381187)
- V 2.17.16
-------------------------------------------------------------------
Tue Oct 21 09:08:21 CEST 2008 - tgoettlicher@suse.de
- Fixed bnc #436716: horizontal scrollbar for TreeWidget
-------------------------------------------------------------------
Thu Oct 16 19:57:11 CEST 2008 - sh@suse.de
- Fixed bnc #433130: Poor performance in runlevel editor
(Massive performance drop when inserting items into YQTable)
- V 2.17.15
-------------------------------------------------------------------
Thu Oct 16 15:59:19 CEST 2008 - sh@suse.de
- Prevent segfaults: Converted QY2Styler to a real singleton
-------------------------------------------------------------------
Wed Oct 15 15:13:13 CEST 2008 - sh@suse.de
- Beautified symptoms of crash while DBUS restart (bnc #428125)
- Require latest libyui (API change!)
- V 2.17.14
-------------------------------------------------------------------
Thu Oct 9 17:52:08 CEST 2008 - sh@suse.de
- Require latest libyui
- V 2.17.13
-------------------------------------------------------------------
Wed Oct 1 16:12:26 CEST 2008 - tgoettlicher@suse.de
- Write message to log when client is killed due to X server crash
bnc #414292
-------------------------------------------------------------------
Tue Sep 30 16:05:58 CEST 2008 - sh@suse.de
- Move keyboard focus to default button (if there is one) when
a dialog opens
-------------------------------------------------------------------
Fri Sep 26 15:52:16 CEST 2008 - tgoettlicher@suse.de
- Fixed bnc #418443: Yast modules windows have no title
- V 2.17.12
-------------------------------------------------------------------
Wed Sep 24 18:32:11 CEST 2008 - sh@suse.de
- Improved robustness against already-deleted widgets (bnc #421794)
- Require latest libyui
- V 2.17.11
-------------------------------------------------------------------
Wed Sep 17 12:37:32 CEST 2008 - sh@suse.de
- Fixed bnc #399502: Layout for right-to-left languages
- Fixed bnc #396360: Last column in Table widget is too far right
- V 2.17.10
-------------------------------------------------------------------
Fri Sep 12 18:41:26 CEST 2008 - sh@suse.de
- Reduced minimum size of YQTree to reasonable value
-------------------------------------------------------------------
Fri Sep 12 13:52:32 CEST 2008 - sh@suse.de
- More graceful "Can't open display" error handling:
Now probing display before any Qt calls to give clear error msg
- Require latest libyui
- V 2.17.9
-------------------------------------------------------------------
Thu Sep 11 15:46:58 CEST 2008 - sh@suse.de
- Added highlighting of currently selected widget in DialogSpy
- Require latest libyui
- V 2.17.8
-------------------------------------------------------------------
Tue Sep 9 17:07:32 CEST 2008 - sh@suse.de
- Call DialogSpy upon Ctrl-Shift-Alt-Y
for interactive introspection of the topmost dialog
- V 2.17.7
-------------------------------------------------------------------
Tue Sep 9 16:23:12 CEST 2008 - sh@suse.de
- Fixed reentrance problems in event handling:
Moved event handling from YQUI to YQDialog
-------------------------------------------------------------------
Fri Aug 22 18:52:11 CEST 2008 - sh@suse.de
- Check environment variables for button order:
$DESKTOP_SESSION
$WINDOWMANAGER
$Y2_BUTTON_ORDER
- Added command line options (overriding the env vars above):
--gnome-button-order
--kde-button-order
- V 2.17.6
-------------------------------------------------------------------
Thu Aug 21 15:28:14 CEST 2008 - sh@suse.de
- Added YQButtonBox widget (fate #303446)
- Dropped obsolete YFrameBuffer
-------------------------------------------------------------------
Wed Aug 13 17:20:23 CEST 2008 - tgoettlicher@suse.de
- Fixed YQCheckBoxFrame child widget enablement initially wrong (bnc #403126)
-------------------------------------------------------------------
Wed Aug 13 16:02:56 CEST 2008 - tgoettlicher@suse.de
- Fixed wrong icon when using several wizards (#411579)
-------------------------------------------------------------------
Tue Aug 5 11:14:01 CEST 2008 - tgoettlicher@suse.de
- V 2.17.5
-------------------------------------------------------------------
Tue Aug 5 10:54:04 CEST 2008 - tgoettlicher@suse.de
- Fixed bnc #409612: popup menu during installation becomes
hidden because of NULL parent
-------------------------------------------------------------------
Tue Jul 29 11:21:53 CEST 2008 - tgoettlicher@suse.de
- Fixed sorting in Table (bnc #399206)
-------------------------------------------------------------------
Tue Jul 15 19:13:57 CEST 2008 - sh@suse.de
- Implemented fate #303492: Multi selection for table widget
- V 2.17.4
-------------------------------------------------------------------
Fri Jul 11 15:30:23 CEST 2008 - sh@suse.de
- Fixed bnc #403852: MultiLineEdit doesn't take HTML as plain text
-------------------------------------------------------------------
Tue Jul 8 18:59:47 CEST 2008 - sh@suse.de
- Enable keyboard shortcuts for YQDumbTab widgets (fate #304890)
- V 2.17.3
-------------------------------------------------------------------
Tue Jul 8 15:42:54 CEST 2008 - sh@suse.de
- Fixed massive performance drop when inserting many (3000+)
YQSelectionBox items
- V 2.17.2
-------------------------------------------------------------------
Tue Jun 24 11:55:26 CEST 2008 - tgoettlicher@suse.de
- prevent that the user deselects all radiobutton items
-------------------------------------------------------------------
Tue Jun 17 19:00:03 CEST 2008 - sh@suse.de
- Fixed bnc #400477: yast2 runlevel takes 40s to switch view
- V 2.17.1
-------------------------------------------------------------------
Thu Jun 5 13:28:52 CEST 2008 - sh@suse.de
- (coolo) fixed segfault in QY2Styler with secondary wizards during
installation: bnc #381755, bnc #391856, bug #391947
(tgoettlicher fixed bnc #397083: help dialog disappears when
"Help" button is multiple pushed
- V 2.16.54
-------------------------------------------------------------------
Tue Jun 3 13:42:19 CEST 2008 - tgoettlicher@suse.de
- limited bar width in disk usage list to 100%
-------------------------------------------------------------------
Thu May 29 17:57:08 CEST 2008 - sh@suse.de
- Fixed bnc #394525: Proxy settings don't work in installer
- Fixed bnc #379622: CheckBoxFrame( `opt(`invertAutoEnable) )
- V 2.16.53
-------------------------------------------------------------------
Wed May 28 15:47:57 CEST 2008 - sh@suse.de
- Fixed bnc #393040: Keyboard shortcuts in main dialogs broken
- V 2.16.52
-------------------------------------------------------------------
Mon May 26 18:39:31 CEST 2008 - coolo@suse.de
- more font updates from Mike
-------------------------------------------------------------------
Mon May 26 15:45:00 CEST 2008 - sh@suse.de
- Fixed bnc #393848: Missing translations in YQWizard help window
- V 2.16.51
-------------------------------------------------------------------
Fri May 23 17:04:41 CEST 2008 - tgoettlicher@suse.de
- V 2.16.50
-------------------------------------------------------------------
Tue May 20 11:50:53 CEST 2008 - sh@suse.de
- Changed `opt(`warncolor) text color back to black (bnc #384452)
-------------------------------------------------------------------
Sat May 17 18:19:22 CEST 2008 - coolo@suse.de
- fix font handling during installation (bnc#357258)
-----------------------------------------------------------------------
Fri May 16 17:10:03 CEST 2008 - tgoettlicher@suse.de
- Adjust QY2ListView to enable scrolling in wizard (bnc #391048)
-------------------------------------------------------------------
Fri May 16 13:58:11 CEST 2008 - tgoettlicher@suse.de
- Fixed YUINoDialogException caused by popup windows
- V 2.16.48
-------------------------------------------------------------------
Thu May 15 14:48:30 CEST 2008 - sh@suse.de
- Moved most XPM icons and YQIconPool to yast2-qt-pkg:
They are only needed for PackageSelector and related
- V 2.16.47
-------------------------------------------------------------------
Thu May 15 12:55:49 CEST 2008 - tgoettlicher@suse.de
- Fixed focus of popups (#bnc 384905)
-------------------------------------------------------------------
Wed May 14 16:15:19 CEST 2008 - sh@suse.de
- Fixed bnc #386446: Help button still English
- V 2.16.46
-------------------------------------------------------------------
Wed May 14 14:51:29 CEST 2008 - tgoettlicher@suse.de
- Improved help popup's usability (bnc #388592)
-------------------------------------------------------------------
Tue May 13 15:53:53 CEST 2008 - tgoettlicher@suse.de
- Fixed setText of YQComboBox (bnc #384713)
-------------------------------------------------------------------
Thu May 8 17:33:16 CEST 2008 - tgoettlicher@suse.de
- automatically scroll to selected item of YQSelectionBox (bnc #388173)
-------------------------------------------------------------------
Thu May 8 16:23:05 CEST 2008 - tgoettlicher@suse.de
- fixed strange selection behavior of YQTable (bnc #384658)
-------------------------------------------------------------------
Thu May 8 11:59:11 CEST 2008 - sh@suse.de
- Don't let Qt override YSelectionBox selection
-------------------------------------------------------------------
Wed Apr 30 17:43:03 CEST 2008 - sh@suse.de
- Fixed bnc #379904: More than one radio button checked
- V 2.16.45
-------------------------------------------------------------------
Tue Apr 29 17:05:40 CEST 2008 - sh@suse.de
- Fixed bnc #383672 - Busy cursor in file dialogs
- V 2.16.44
-------------------------------------------------------------------
Mon Apr 28 14:22:24 CEST 2008 - dmacvicar@suse.de
- Make transactions concept better visible: use new
set of icons from jimmac
(feature #302003)
- 2.16.43
-------------------------------------------------------------------
Sat Apr 26 07:11:22 CEST 2008 - coolo@suse.de
- resubmit clean tar
-------------------------------------------------------------------
Thu Apr 24 10:57:23 CEST 2008 - kmachalkova@suse.cz
- Make YQWizard menus work again - Qt4 uses triggered() signal
instead of activated() (bnc#367796)
- V 2.16.42
-------------------------------------------------------------------
Fri Apr 18 17:21:53 CEST 2008 - sh@suse.de
- Fixed bnc #374851: YQMultiProgressMeter integer overflow
-------------------------------------------------------------------
Thu Apr 17 10:47:49 CEST 2008 - coolo@suse.de
- update the steps status (bnc#379539)
-------------------------------------------------------------------
Wed Apr 16 14:05:15 CEST 2008 - coolo@suse.de
- reduce steps flickering
- V 2.16.41
-------------------------------------------------------------------
Tue Apr 15 13:35:22 CEST 2008 - coolo@suse.de
- fix wizards in wizards
- V 2.16.40
-------------------------------------------------------------------
Mon Apr 14 16:44:41 CEST 2008 - sh@suse.de
- Added new UI capability YQApplication::hasWizardDialogSupport()
- V 2.16.39
-------------------------------------------------------------------
Sun Apr 13 19:50:21 CEST 2008 - coolo@suse.de
- use only working area on seconday wizards
- V 2.16.38
-------------------------------------------------------------------
Fri Apr 11 18:18:38 CEST 2008 - sh@suse.de
- Reverted sub-wizard changes - seems to be a dead end
- V 2.16.37
-------------------------------------------------------------------
Thu Apr 10 19:53:05 CEST 2008 - sh@suse.de
- Added basic support for docked sub-wizards
-------------------------------------------------------------------
Fri Apr 4 11:10:11 CEST 2008 - tgoettlicher@suse.de
- fixed frame style of rich text widget (bnc #369685)
-------------------------------------------------------------------
Thu Apr 3 18:09:18 CEST 2008 - sh@suse.de
- Build-Require latest libyui
- V 2.16.33
-------------------------------------------------------------------
Wed Apr 2 11:46:12 CEST 2008 - tgoettlicher@suse.de
- fixed table widget sorting (bnc #376046)
-------------------------------------------------------------------
Mon Mar 31 17:21:00 CEST 2008 - tgoettlicher@suse.de
- fixed sort by column for table widget (bnc #374679)
-------------------------------------------------------------------
Mon Mar 31 16:04:59 CEST 2008 - tgoettlicher@suse.de
- fixed right and center for table widget (bnc #357693)
-------------------------------------------------------------------
Tue Mar 25 12:28:53 CET 2008 - jsrain@suse.cz
- changed textdomain to "qt"
-------------------------------------------------------------------
Wed Mar 19 15:52:33 CET 2008 - coolo@suse.de
- fix YTable performance (bnc #372316)
-------------------------------------------------------------------
Wed Mar 19 15:21:01 CET 2008 - dmacvicar@suse.de
- fix taking screenshots (bnc #361995)
-------------------------------------------------------------------
Tue Mar 11 17:20:52 CET 2008 - sh@suse.de
- Fixed bnc #358522: query CurrentItem for DumbTab is broken
-------------------------------------------------------------------
Mon Mar 10 17:15:06 CET 2008 - sh@suse.de
- Implemented bnc #364887: Hotkey to dump widget tree
(It's now Ctrl-Shift-Alt-T)
-------------------------------------------------------------------
Fri Mar 7 12:14:08 CET 2008 - sh@suse.de
- Fixed bnc #357607: OpenItems property of Tree widget is broken