forked from yast/yast-control-center
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyast2-control-center.changes
1218 lines (805 loc) · 37.5 KB
/
yast2-control-center.changes
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 Jul 7 09:49:24 UTC 2020 - Callum Farmer <[email protected]>
- Fixes for %_libexecdir changing to /usr/libexec
-------------------------------------------------------------------
Tue Dec 22 21:27:38 UTC 2019 - Stasiek Michalski <[email protected]>
- Fix theming icons again (boo#1159283)
- 4.2.3
-------------------------------------------------------------------
Tue Sep 10 22:23:37 UTC 2019 - Stasiek Michalski <[email protected]>
- Fix appdata for new spec (fate#319035)
- 4.2.2
-------------------------------------------------------------------
Fri May 31 13:34:19 UTC 2019 - Noah Davis <[email protected]>
- Display GenericName and Comment, not Name (boo#1084864)
- 4.2.1
-------------------------------------------------------------------
Mon May 20 18:52:00 UTC 2019 - Stasiek Michalski <[email protected]>
- Change location of appdataa and fix it up (fate#319035)
- 4.2.0
-------------------------------------------------------------------
Mon Apr 8 15:05:04 UTC 2019 - Stefan Hundhammer <[email protected]>
- Require libQt5Svg5 to support SVG icons (bsc#1127245)
- 4.1.8
-------------------------------------------------------------------
Thu Feb 28 16:04:39 UTC 2019 - Stasiek Michalski <[email protected]>
- Introduce very effective fallback for icons (boo#1127245)
- 4.1.7
-------------------------------------------------------------------
Thu Feb 14 10:42:58 UTC 2019 - Stasiek Michalski <[email protected]>
- Fix icon display to new libyui-qt function (boo#1125424)
- 4.1.6
-------------------------------------------------------------------
Mon Jan 28 12:47:56 UTC 2019 - Fabian Vogt <[email protected]>
- Enable HiDPI pixmaps (bsc#1109602)
- 4.1.5
-------------------------------------------------------------------
Wed Nov 28 12:56:19 UTC 2018 - Stasiek Michalski <[email protected]>
- Use yast-control-center icon for desktop files (boo#1109310)
-------------------------------------------------------------------
Sun Nov 25 01:53:03 UTC 2018 - Stasiek Michalski <[email protected]>
- Provide icon with module (boo#1109310)
- 4.1.3
-------------------------------------------------------------------
Wed Sep 19 10:18:32 UTC 2018 - Stefan Hundhammer <[email protected]>
- Enable HiDPI (bsc#1089886)
- 4.1.2
-------------------------------------------------------------------
Mon Aug 20 13:51:27 CEST 2018 - [email protected]
- Switched license in spec file from SPDX2 to SPDX3 format.
- Changed dir of COPYING file.
-------------------------------------------------------------------
Tue Jun 26 10:21:29 CEST 2018 - [email protected]
- Searching for translated keywords (fate#321043).
- 4.1.1
-------------------------------------------------------------------
Mon May 14 13:36:00 UTC 2018 - [email protected]
- Fixed crash when reading an invalid or incomplete .desktop file
(bsc#1090843)
- 4.1.0
-------------------------------------------------------------------
Fri May 11 00:03:28 UTC 2018 - [email protected]
- Fix Gnome's display of titles/icons (boo#1092845)
- 4.0.3
-------------------------------------------------------------------
Fri Mar 2 08:04:29 UTC 2018 - [email protected]
- Use yast2-control-center as replacement for dropped
yast2-control-center-gnome (bsc#1081788)
- 4.0.2
-------------------------------------------------------------------
Wed Feb 21 16:30:37 UTC 2018 - [email protected]
- Fixes to way icons are displayed (boo#1081517)
- 4.0.1
-------------------------------------------------------------------
Mon Nov 13 12:44:08 UTC 2017 - [email protected]
- Do not included unused RPC headers (boo#1081118).
- 4.0.0
-------------------------------------------------------------------
Wed Aug 9 12:01:20 UTC 2017 - [email protected]
- Adjusted to increased so version of the libyui library;
an unversioned dependency is OK (bsc#1052217)
- 3.3.0
-------------------------------------------------------------------
Tue May 2 13:20:35 UTC 2017 - [email protected]
- Added support for 128x128 sized X11 window icon
- 3.2.0
-------------------------------------------------------------------
Thu Dec 10 16:43:44 UTC 2015 - [email protected]
- Change the yast2-control-center-qt dependency on libyui-qt7
from Recommensd to Requires (bnc#958650)
- Added support for KDE5 (added Supplements plasma5-session dependency)
- 3.1.6
-------------------------------------------------------------------
Wed Nov 4 17:27:44 CET 2015 - [email protected]
- Recommend latest libyui-qt7, not obsolete libyui-qt5 in .spec
file (bsc#952249)
-------------------------------------------------------------------
Wed Apr 8 10:26:53 UTC 2015 - [email protected]
- Install appdata.xml file in order to show up in AppStream based
software centers (currently only GNOME Software).
-------------------------------------------------------------------
Thu Oct 30 21:22:52 UTC 2014 - [email protected]
- Install YaST-systemsettings.desktop also to KF5 services directory,
so it is also shown in Plasma5 session
- 3.1.5
-------------------------------------------------------------------
Thu Oct 30 16:15:42 UTC 2014 - [email protected]
- ignore desktop files whose Hidden attribute is set to "true"
- 3.1.4
-------------------------------------------------------------------
Fri Apr 4 14:44:54 UTC 2014 - [email protected]
- CMakeFile: QT5_USE_MODULES is deprecated in Qt5.3 (H Senjan)
- Use pkgconfig BuildRequires to reduce build deps.
- 3.1.3
-------------------------------------------------------------------
Thu Feb 27 14:50:21 UTC 2014 - [email protected]
- Fixed save_y2logs invocation (bnc#866056).
- 3.1.2
-------------------------------------------------------------------
Thu Nov 14 13:11:28 UTC 2013 - [email protected]
- ported to Qt5
- 3.1.1
-------------------------------------------------------------------
Mon Oct 14 16:10:40 UTC 2013 - [email protected]
- do not use *.spec.in template, use *.spec file with RPM macros
instead
- 3.1.0
-------------------------------------------------------------------
Tue Jul 30 08:02:01 UTC 2013 - [email protected]
- version 3.0.0
-------------------------------------------------------------------
Fri Jul 5 15:39:03 CEST 2013 - [email protected]
- fixed inconsistency, double vs single click (bnc#780349)
- Version: 2.22.6
-------------------------------------------------------------------
Wed May 22 15:10:27 CEST 2013 - [email protected]
- Adapted requirement for libyui-qt5
- Version: 2.22.5
-------------------------------------------------------------------
Sat Mar 30 14:54:01 UTC 2013 - [email protected]
- Add X-GNOME-SystemSettings as category to YaST.desktop: allows
YaST to be seen by gnome-control-center and to be added
transparently.
-------------------------------------------------------------------
Tue Feb 26 15:20:07 CET 2013 - [email protected]
- Adapted requirement for libyui-qt4
- Version: 2.22.4
-------------------------------------------------------------------
Tue Feb 26 15:09:31 CET 2013 - [email protected]
- Added requirement for yast2-theme
- Version: 2.22.3
-------------------------------------------------------------------
Fri Apr 27 15:25:14 CEST 2012 - [email protected]
- workaround for gcc 4.7
- Version: 2.22.2
-------------------------------------------------------------------
Thu Mar 15 18:29:56 CET 2012 - [email protected]
- added missing include for gcc 4.7
-------------------------------------------------------------------
Mon Jan 30 16:46:38 CET 2012 - [email protected]
- Fixed bnc#742748: selected groups with keyboard
- Version: 2.22.1
-------------------------------------------------------------------
Wed Dec 21 17:52:53 CET 2011 - [email protected]
- Confirmed license
- Version: 2.22.0
-------------------------------------------------------------------
Thu Oct 13 13:47:26 CEST 2011 - [email protected]
- Fixed bnc#723396: added comment desktop file
- Version: 2.21.7
-------------------------------------------------------------------
Fri Aug 19 14:49:03 CEST 2011 - [email protected]
- Fixed bnc#553189: yast2 control center (qt) does not print commands anymore
- Version: 2.21.6
-------------------------------------------------------------------
Fri Aug 19 12:01:25 CEST 2011 - [email protected]
- Fixed bnc#549863: useless context menu in category-dock-widget
- Version: 2.21.5
-------------------------------------------------------------------
Fri Aug 5 14:48:57 CEST 2011 - [email protected]
- Added application icon (bnc #621010)
- 2.21.4
-------------------------------------------------------------------
Fri Aug 5 12:31:14 CEST 2011 - [email protected]
- fixed .desktop file (bnc #681249)
- 2.21.3
-------------------------------------------------------------------
Thu May 5 15:57:43 CEST 2011 - [email protected]
- Fixed module highlighting when window is scrolled (bnc #685446)
- 2.21.2
-------------------------------------------------------------------
Wed Apr 27 17:22:24 CEST 2011 - [email protected]
- Removed useless warning message (bnc #620617)
- 2.21.1
-------------------------------------------------------------------
Wed Feb 23 13:06:01 CET 2011 - [email protected]
- remember panel width (bnc #613352)
- 2.20.2
-------------------------------------------------------------------
Tue Feb 22 17:36:58 CET 2011 - [email protected]
- fixed bnc #650907: yast2 shrinks module selector item on search
- 2.20.1
-------------------------------------------------------------------
Tue Feb 22 14:20:36 CET 2011 - [email protected]
- bnc #661109: Layout of icons gets mixed after using search
- 2.20.0
-------------------------------------------------------------------
Mon Oct 11 11:17:55 CEST 2010 - [email protected]
- Adapted license format
- 2.19.3
-------------------------------------------------------------------
Fri Oct 8 12:32:21 CEST 2010 - [email protected]
- fixed: bnc #644856: wrong systemsetting category
- 2.19.2
-------------------------------------------------------------------
Thu Mar 11 13:51:41 CET 2010 - [email protected]
- Integrate YaST with new KControl - it is ExternaApp, not KCModule
(bnc#574864)
- 2.19.1
-------------------------------------------------------------------
Thu Jan 7 14:24:15 CET 2010 - [email protected]
- added yast2-control-center-qt Recommends yast2-qt (bnc#545331)
-------------------------------------------------------------------
Thu Dec 10 13:03:24 CET 2009 - [email protected]
- Correctly show GenericNames containing comma (convert QStringList
to QString) (bnc#550085)
- Show Name from .desktop (instead of client name) in status line
(bnc#544167)
- Enable closing the main window with Ctrl+Q (bnc#551737)
- Re-activated y2log saving (port of original Qt3 code - bnc#548520)
- 2.19.0
-------------------------------------------------------------------
Mon Nov 23 16:30:53 CET 2009 - [email protected]
- Use 'YaST' instead of 'YaST2' in messages and window titlebars
(bnc#532518)
-------------------------------------------------------------------
Tue Oct 20 11:59:43 CEST 2009 - [email protected]
- The same module order for every language (to prevent broken sync
between left and right pane for non-English locale - bnc#525288)
- .desktop file split into system-wide and KDE-specific one for
kcontrol (do not use xdg-su from within kcontrol - bnc#544313)
- 2.18.12
-------------------------------------------------------------------
Tue Sep 1 17:56:45 CEST 2009 - [email protected]
- Use more contrast colours for highlighted items in icon view
(bnc#531528)
- Pre-select 1st module category (partly bnc#531529)
- 2.18.11
-------------------------------------------------------------------
Mon Aug 24 15:51:45 CEST 2009 - [email protected]
- Scroll icon view so that category header is in the topmost
position (if possible) - bnc#525288
- 2.18.10
-------------------------------------------------------------------
Wed Aug 19 16:21:09 UTC 2009 - [email protected]
- Don't allow the group dock widget to be closed
-------------------------------------------------------------------
Tue Aug 18 17:57:48 CEST 2009 - [email protected]
- Use left mouse single click (bnc#525287) and/or 'Enter' key
(bnc#528631) to launch the modules
- 2.18.9
-------------------------------------------------------------------
Tue Aug 11 15:47:04 CEST 2009 - [email protected]
- Two X-KDE-* keys added to .desktop to enable launching of YaST
from within KDE System Settings (bnc#526911)
- Removed X-KDE-SubstituteUID from .desktop, using Exec=xdg-su ..
instead. Thus, OnlyShowIn key is not needed anymore (bnc#525876)
- 2.18.8
-------------------------------------------------------------------
Thu Jul 30 15:02:04 CEST 2009 - [email protected]
- Support search in module keywords (X-SuSE-YaST-Keywords)
(FaTE#305845)
- 2.18.7
-------------------------------------------------------------------
Fri Jul 17 13:38:07 CEST 2009 - [email protected]
- Show warning (user is not root) at startup
- Process CLI options
- Put $YAST_DESKTOP_DIR support back again
- Enable translating strings in 'control-center' textdomain +
generating pot files by y2tools
- 2.18.6
-------------------------------------------------------------------
Tue Jul 7 12:43:23 CEST 2009 - [email protected]
- Replaced not expanding @ybindir@ in spec.in by something sensible
- Few minor fixes
* Show no groups if no module matches the query
* Remember window position
* Use some system of fallback icons for groups and modules
- 2.18.5
-------------------------------------------------------------------
Fri Jun 26 18:05:48 CEST 2009 - [email protected]
- Initial version of Qt4 port (FaTE #305550)
- 2.18.4
-------------------------------------------------------------------
Thu Jun 4 17:16:19 CEST 2009 - [email protected]
- Changed $XDG_CONFIG_HOME to $YAST2_DESKTOP_DIR (bnc #509891)
- V 2.18.3
-------------------------------------------------------------------
Thu Jun 4 16:55:49 CEST 2009 - [email protected]
- Added support for $XDG_CONFIG_HOME (bnc #509891)
- V 2.18.2
-------------------------------------------------------------------
Wed Nov 19 13:05:31 CET 2008 - [email protected]
- Fixed bnc #445781: Module groups not translated
- V 2.17.3
-------------------------------------------------------------------
Tue Nov 11 17:13:33 CET 2008 - [email protected]
- drop bogus prereq (there is no pre or postinstall script here)
-------------------------------------------------------------------
Wed Oct 29 15:20:18 CET 2008 - [email protected]
- Fixed bnc #438197: Need to scroll categories
- V 2.17.2
-------------------------------------------------------------------
Fri May 16 16:40:22 CEST 2008 - [email protected]
- added categories Settings and System into desktop file
(bnc #382778)
-------------------------------------------------------------------
Wed Apr 30 13:57:34 CEST 2008 - [email protected]
- Added "supplements: kdebase4-session" to .spec (bnc #385110)
-------------------------------------------------------------------
Tue Apr 29 16:44:03 CEST 2008 - [email protected]
- Fixed bnc #144694: Too low resolution for control center app icon
- V 2.16.1
-------------------------------------------------------------------
Tue Nov 27 13:40:59 CET 2007 - [email protected]
- Make it build in a prefix different from /usr.
-------------------------------------------------------------------
Tue Nov 27 13:39:45 CET 2007 - [email protected]
- V 2.16.0
-------------------------------------------------------------------
Fri Oct 26 15:48:39 CEST 2007 - [email protected]
- launch yast modules only when LMB is clicked (#332476)
- V 2.15.7
-------------------------------------------------------------------
Wed Oct 24 14:16:28 CEST 2007 - [email protected]
- fixed YaST control center shows empty section (#309452)
- V 2.15.6
-------------------------------------------------------------------
Wed Oct 24 11:48:20 CEST 2007 - [email protected]
- fixed pixelated icons in YaST navigation (left pane) (#308641)
- V 2.15.5
-------------------------------------------------------------------
Wed Aug 29 14:41:07 CEST 2007 - [email protected]
- controlcenter shows titlebar depending on existence of title-bar-gradient.png
- r40572
- V 2.15.4
-------------------------------------------------------------------
Fri Aug 24 16:41:49 CEST 2007 - [email protected]
- Added borders around group icons (bug #295712)
- V 2.15.3
-------------------------------------------------------------------
Fri Aug 24 14:10:08 CEST 2007 - [email protected]
- Don't show menu entry in desktops other than KDE or GNOME
(won't run properly anyway without root permission which is a
non-standard extension of the desktop file format)
- V 2.15.2
-------------------------------------------------------------------
Fri Aug 3 13:03:31 CEST 2007 - [email protected]
- V 2.15.1
- Fixed bug #274326: yast2-control-center-* needs PreReq: yast2-control-center
-------------------------------------------------------------------
Fri May 25 13:30:04 CEST 2007 - [email protected]
- removed outdated translations from .desktop-files (#271209)
-------------------------------------------------------------------
Wed Apr 25 14:21:39 CEST 2007 - [email protected]
- Fixed desktop-file-validate complaints in YaST.desktop:
- Added 'Encoding=UTF-8'
- Removed duplicate X-KDE-SustituteUID
-------------------------------------------------------------------
Thu Mar 29 14:26:47 CEST 2007 - [email protected]
- Use correct textdomain for warning popup if started as non-root
-------------------------------------------------------------------
Mon Mar 19 14:26:28 CET 2007 - [email protected]
- Added split-provides (bug #255368)
- V 2.15.5
-------------------------------------------------------------------
Mon Mar 19 14:00:00 CET 2007 - [email protected]
- Added support for saving log files via Shift-F8 (#225707)
-------------------------------------------------------------------
Mon Mar 5 17:22:37 CET 2007 - [email protected]
- Package split (fix for bug #240240):
- yast2-control-center with .desktop file and icon
- yast2-control-center-qt with binary
- V 2.14.4
-------------------------------------------------------------------
Tue Feb 27 12:30:29 CET 2007 - [email protected]
- No longer using "NotShowIn=GNOME"
See also bug #247812: No YaST2 control center in GNOME
- V 2.14.3
-------------------------------------------------------------------
Fri Feb 16 14:07:58 CET 2007 - [email protected]
- Fixed bug #246018: Typo in msg
-------------------------------------------------------------------
Tue Feb 13 15:03:06 CET 2007 - [email protected]
- Fixed bug #240240: Added "NotShowIn=GNOME" to .desktop file
- V 2.14.2
-------------------------------------------------------------------
Fri Nov 10 13:46:41 CET 2006 - [email protected]
- Merged SLE-10-SP1-Branch to trunk (-r31627:34246)
- V 2.14.1
-------------------------------------------------------------------
Mon Nov 6 16:06:55 CET 2006 - [email protected]
- Fixed bug #217247: No contrast in categories list box
- V 2.13.5
-------------------------------------------------------------------
Thu Oct 26 17:33:08 CEST 2006 - [email protected]
- Fixed bug #213869: Missing ellipsis on "Search" button
- V 2.13.4
-------------------------------------------------------------------
Wed Oct 18 18:31:41 CEST 2006 - [email protected]
- Implemented feature #300460: Use gettext for module names
- V 2.13.3
-------------------------------------------------------------------
Wed Oct 18 16:50:04 CEST 2006 - [email protected]
- Implemented feature #300915: Increase Visibility of Search Function
-------------------------------------------------------------------
Tue May 2 17:54:19 CEST 2006 - [email protected]
- Fix for #170702 - add to Control Center.
-------------------------------------------------------------------
Wed Jan 25 21:43:34 CET 2006 - [email protected]
- converted neededforbuild to BuildRequires
-------------------------------------------------------------------
Mon Nov 21 16:37:45 CET 2005 - [email protected]
- V 2.13.2
- Reduced initial window size (less empty space)
-------------------------------------------------------------------
Mon Nov 14 17:40:04 CET 2005 - [email protected]
- V 2.13.1
- Fixed bug #105481: Missing ellipsis in "Search..." menu entry
-------------------------------------------------------------------
Thu Sep 1 16:20:04 CEST 2005 - [email protected]
- V 2.12.4
- Fixed bug #114707: Added missing translation markers
-------------------------------------------------------------------
Fri Jun 10 16:50:58 CEST 2005 - [email protected]
- Fixed icon name in .desktop file
- V 2.12.3
-------------------------------------------------------------------
Thu May 19 17:22:43 CEST 2005 - [email protected]
- Made y2cc look more like a normal Qt application
(upon eanderson's request):
- Removed graphical title bar
- Removed all buttons
- Added menus
- V 2.12.2
-------------------------------------------------------------------
Tue Apr 5 14:43:26 CEST 2005 - [email protected]
- Merged 9.3-branch 21937:22910 to trunk
- V 2.12.1
-------------------------------------------------------------------
Wed Mar 16 18:13:37 CET 2005 - [email protected]
- Fixed bug #71816: date-time module doesn't start after setting localtime
- V 2.11.4
-------------------------------------------------------------------
Fri Feb 18 13:21:43 CET 2005 - [email protected]
- Follow "Hidden" attribute in the desktop files
- V 2.11.3
-------------------------------------------------------------------
Mon Nov 29 12:23:54 CET 2004 - [email protected]
- Fixed autobuild error: No icon installed
- V 2.11.2
-------------------------------------------------------------------
Tue Nov 2 15:14:27 CET 2004 - [email protected]
- Added pkgconfig to neededforbuild.
- 2.11.1
-------------------------------------------------------------------
Wed Oct 27 13:59:31 CEST 2004 - [email protected]
- Added support for LANG with country code (de_DE, zh_CN, ...),
fall back to LANG without country (de, zh), then defaults
(bug #47668)
-------------------------------------------------------------------
Thu Aug 26 16:08:58 CEST 2004 - [email protected]
- Bumped version to 2.10.1
-------------------------------------------------------------------
Tue May 4 16:21:55 CEST 2004 - [email protected]
- messages from proof reading merged back
-------------------------------------------------------------------
Fri Apr 2 16:22:52 CEST 2004 - [email protected]
- License change to GPL
-------------------------------------------------------------------
Thu Apr 1 18:36:57 CEST 2004 - [email protected]
- V 2.9.10
- Added black horizontal line below title bar
-------------------------------------------------------------------
Thu Mar 25 17:13:50 CET 2004 - [email protected]
- V 2.9.9
- Stole title bar layout from YQWizard (3 pics, not only 1)
-------------------------------------------------------------------
Tue Mar 23 18:39:53 CET 2004 - [email protected]
- V 2.9.8
- Moved icons to yast2-theme
- Changed icon paths to new yast2-theme paths
-------------------------------------------------------------------
Sat Mar 06 12:41:27 CET 2004 - [email protected]
- added icon for uml installation
-------------------------------------------------------------------
Fri Mar 05 17:42:10 CET 2004 - [email protected]
- added icon for installation into directory
-------------------------------------------------------------------
Mon Mar 1 11:18:09 CET 2004 - [email protected]
- (adrian) added symlink for icons
-------------------------------------------------------------------
Thu Feb 26 17:23:32 CET 2004 - [email protected]
- added power management icon (#35067)
- 2.9.4
-------------------------------------------------------------------
Thu Feb 5 19:02:53 CET 2004 - [email protected]
- V 2.9.3
- Migration to multiple .desktop files for module groups, too
(reading /usr/share/applications/YaST2/groups/*.desktop)
-------------------------------------------------------------------
Wed Jan 14 18:32:04 CET 2004 - [email protected]
- V 2.9.2
- Migrated to .desktop files
.y2cc files are now obsolete for YaST2 modules,
the y2cc only needs y2cc.groups and the .desktop files
-------------------------------------------------------------------
Thu Jan 08 16:56:08 CET 2004 - [email protected]
- dropped broken pre-start feature (bug #33860)
-------------------------------------------------------------------
Fri Sep 19 14:24:36 CEST 2003 - [email protected]
- V 2.8.10
- update babelfish icon and ldap_client icon
-------------------------------------------------------------------
Wed Sep 17 15:29:50 CEST 2003 - [email protected]
- V 2.8.9
- Fixed bug #30236: Bad fullscreen geometry for some window
managers
-------------------------------------------------------------------
Thu Sep 11 21:18:33 CEST 2003 - [email protected]
- V 2.8.8
- update icons
- call YaST with root password in menu
-------------------------------------------------------------------
Mon Sep 08 16:50:37 CEST 2003 - [email protected]
- updated icons
-------------------------------------------------------------------
Mon Sep 08 15:02:40 CEST 2003 - [email protected]
- updated icons
-------------------------------------------------------------------
Wed Sep 3 13:52:14 CEST 2003 - [email protected]
- V 2.8.5
- Added .desktop file
-------------------------------------------------------------------
Tue Aug 19 16:31:26 CEST 2003 - [email protected]
- added yast2-phone-services icons
- 2.8.4
-------------------------------------------------------------------
Tue Jun 17 12:15:54 CEST 2003 - [email protected]
- added directories to file list
-------------------------------------------------------------------
Thu Jun 12 11:45:06 CEST 2003 - [email protected]
- V 2.8.2
- Removed obsolete logcontrol (unpackaged anyway)
-------------------------------------------------------------------
Fri Mar 14 17:14:00 CET 2003 - [email protected]
- New kerberos icon by Ken
-------------------------------------------------------------------
Wed Feb 19 15:35:39 CET 2003 - [email protected]
- Fixed bug #23654: Window partially invisible
-------------------------------------------------------------------
Thu Feb 6 16:42:45 CET 2003 - [email protected]
- V 2.7.1
- Added new command line options --fullscreen --noborder
- Propagate those options to child processes
-------------------------------------------------------------------
Mon Jan 13 14:48:49 CET 2003 - [email protected]
- remotechooser.ycp and remoteinstall.ycp move to yast2 package
- use icon dsl.png for adsl and dsl
-------------------------------------------------------------------
Wed Sep 4 16:55:56 CEST 2002 - [email protected]
- added new backup.png and restore.png icon
- version 2.6.14
-------------------------------------------------------------------
Tue Sep 3 09:21:16 CEST 2002 - [email protected]
- new headline icon again
- version 2.6.13
-------------------------------------------------------------------
Mon Sep 2 17:17:16 CEST 2002 - [email protected]
- added new powertweak.png icon
- version 2.6.12
-------------------------------------------------------------------
Thu Aug 29 18:51:00 CEST 2002 - [email protected]
- new headline icon
-------------------------------------------------------------------
Tue Aug 27 16:15:30 CEST 2002 - [email protected]
- proxy icon
- 2.6.9
-------------------------------------------------------------------
Mon Aug 26 11:56:45 CEST 2002 - [email protected]
- new icon joystick.png for yast2-sound (joystick configuration)
- version 2.6.8
-------------------------------------------------------------------
Fri Aug 23 08:25:07 CEST 2002 - [email protected]
- new icon for yast2-profile-manager
-------------------------------------------------------------------
Fri Aug 16 17:24:43 CEST 2002 - [email protected]
- bind to correct textdomain
-------------------------------------------------------------------
Thu Aug 15 11:37:27 CEST 2002 - [email protected]
- Merged proofread texts for the second translation round.
-------------------------------------------------------------------
Thu Jul 25 17:34:23 CEST 2002 - [email protected]
- also extract texts from C++ source files (bug #17216)
-------------------------------------------------------------------
Fri Jul 12 16:11:01 CEST 2002 - [email protected]
- use proper namespace for Args and CallFunction (#16776)
-------------------------------------------------------------------
Thu Jul 04 13:24:57 CEST 2002 - [email protected]
- move non binary file from /usr/lib/YaST2 to /usr/share/YaST2
-------------------------------------------------------------------
Mon Jun 24 15:54:55 CEST 2002 - [email protected]
- renamed to yast2-control-center from yast2-menu
-------------------------------------------------------------------
Wed Jun 12 11:34:37 CEST 2002 - [email protected]
- adapted to new command line of yast2
-------------------------------------------------------------------
Fri Apr 26 16:40:36 CEST 2002 - [email protected]
- fixed linking with qt for x86-64
-------------------------------------------------------------------
Sun Apr 14 00:21:48 CEST 2002 - [email protected]
- fixes for gcc 3.1
-------------------------------------------------------------------
Thu Mar 21 15:09:49 CET 2002 - [email protected]
- remove quickstart popup (#15231,#14382)
-------------------------------------------------------------------
Thu Mar 14 09:16:18 CET 2002 - [email protected]
- added the lost new title graphics again, this time with a
different name (#14920)
-------------------------------------------------------------------
Fri Mar 8 18:05:07 CET 2002 - [email protected]
- new icons made by tackat
-------------------------------------------------------------------
Mon Mar 4 17:32:13 CET 2002 - [email protected]
- added simplifyWhiteSpace to remove LF from helptexts (#14337)
- removed some debug output (#14318)
-------------------------------------------------------------------
Wed Feb 27 15:28:23 CET 2002 - [email protected]
- V 2.5.11
- Exchanged title graphics to match new YaST2 design
-------------------------------------------------------------------
Mon Feb 25 16:39:42 CET 2002 - [email protected]
- Fixed wish #13876: Host name in window title bar
-------------------------------------------------------------------
Fri Feb 22 17:24:49 CET 2002 - [email protected]
- removed MountAllAgents from pre-start.ycp
- added -Q commandline switch to disable quickstart
-------------------------------------------------------------------
Mon Feb 18 10:02:43 CET 2002 - [email protected]
- filter out empty strings as arguments, fixes bug #13360
-------------------------------------------------------------------
Fri Feb 8 17:45:41 CET 2002 - [email protected]
- module arguments possible with quick start
- only strings are allowed as arguments
-------------------------------------------------------------------
Tue Feb 5 20:42:49 CET 2002 - [email protected]
- fast YaST2 start
-------------------------------------------------------------------
Fri Jan 25 14:21:55 CET 2002 - [email protected]
- use buildroot
-------------------------------------------------------------------
Tue Jan 15 18:21:07 CET 2002 - [email protected]
- use multi threaded qt library if detected by configure
-------------------------------------------------------------------
Thu Jan 10 11:41:41 CET 2002 - [email protected]
- use qt3 if available
- auto arrange icons on window resize
-------------------------------------------------------------------
Wed Oct 10 14:31:02 CEST 2001 - [email protected]