forked from PisiLinuxNew/package-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
executable file
·1924 lines (1424 loc) · 76.5 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
2011-07-07 Gökmen Göksel <[email protected]>
* - If user adds a new repo and press cancel it raises a pisi.db.repodb IOError exception, this patch fixes this.
2011-07-05 Gökmen Göksel <[email protected]>
* - Update ChangeLog
2011-07-04 metin.akdere
* Merge from trunk/kde/package-manager/manager/src/packagedelegate.py
* Calculate update-type string size correctly to fix layout issues in upgrade field in some locales. Fixes pb#17540.
2011-07-04 metin.akdere
* Merge from /trunk/kde/package-manager/manager/src/backend/pisi/iface.py
* Show package files properly which include non-English characters. Fixes pb#17600.
2011-06-29 Gökmen Göksel <[email protected]>
* - Rename me.
2011-06-29 Gökmen Göksel <[email protected]>
* - Update ChangeLog
2011-06-29 Gökmen Göksel <[email protected]>
* - Fix pm-install local package install problem.
2011-02-16 Gökmen Göksel <[email protected]>
* - Use kurumsal2 repos
2011-02-16 Gökmen Göksel <[email protected]>
* - Update version string, last stable release for C2
2011-02-16 Gökmen Göksel <[email protected]>
* - Use icons in tray menu
* - Fix help files path
* - Remove focus rectangle
2011-02-14 Gökmen Göksel <[email protected]>
* - Use Pds Notification
2011-02-11 Gökmen Göksel <[email protected]>
* - Fix MANIFEST.in
2011-02-11 Gökmen Göksel <[email protected]>
* - Update version string
2011-02-11 Gökmen Göksel <[email protected]>
* - Fix setup.py, include ChangeLog and AUTHORS files
2011-02-11 Gökmen Göksel <[email protected]>
* - When switched to install state and repos are not updated, try to update repo at first
2011-02-10 Gökmen Göksel <[email protected]>
* - Update ChangeLog
2011-02-10 Gökmen Göksel <[email protected]>
* - Update locales
2011-02-10 Gökmen Göksel <[email protected]>
* - Merge 35988
* - If user selects not installed packages to remove,
* and all selected packages are not installed it shows
* an information dialog, if at least one of the selected
* packages is installed it just removes the not
* installed selection from the list
* Bug fixed at http://bugs.pardus.org.tr/16780
2011-02-09 Gökmen Göksel <[email protected]>
* - Use alternative icons for other icon themes
* Bug fixed at http://bugs.pardus.org.tr/16814
2011-02-03 Gökmen Göksel <[email protected]>
* - Add forgotten import
2011-02-03 Gökmen Göksel <[email protected]>
* - Update ChangeLog
2011-02-03 Gökmen Göksel <[email protected]>
* - Use same opacity value
2011-02-03 Gökmen Göksel <[email protected]>
* - No need any selectionMode
2011-02-03 Gökmen Göksel <[email protected]>
* - For now disable selection rectangle
2011-02-03 Gökmen Göksel <[email protected]>
* - Cosmetic changes
2011-02-03 Gökmen Göksel <[email protected]>
* - Update ChangeLog, change version string
2011-02-03 Gökmen Göksel <[email protected]>
* - Use data for repo name in system tray
2011-02-03 Gökmen Göksel <[email protected]>
* - Move 3.0 branch as corporate2
2011-02-03 Gökmen Göksel <[email protected]>
* - Set Quit shortcut for Quit Action
2011-02-03 Gökmen Göksel <[email protected]>
* - Add show-mainwindow option
2011-02-03 Gökmen Göksel <[email protected]>
* - Fix locales, add place holder text
2011-02-03 Gökmen Göksel <[email protected]>
* - Fix UI issues in progressDialog
2011-02-02 Gökmen Göksel <[email protected]>
* - Merge Fix changing repository names issue (r35798)
2011-02-02 Gökmen Göksel <[email protected]>
* - Make appinfo support optional; if python-appinfo package is installed you can see the stars otherwise you get package list without stars..
2011-02-02 Gökmen Göksel <[email protected]>
* - Change install dir as /usr/share/package-manager
2011-02-02 Gökmen Göksel <[email protected]>
* - Use Sans instead of Deajvu Sans
2011-02-02 Gökmen Göksel <[email protected]>
* - Use user font settings
2011-02-02 Gökmen Göksel <[email protected]>
* - All icon issues are fixed.
2011-02-02 Gökmen Göksel <[email protected]>
* - Enable pisi.fetcher support
2011-02-02 ozan.caglayan
* Fix another one
2011-02-02 ozan.caglayan
* Update some translations
2011-02-02 ozan.caglayan
* Change overlay and default icon
2011-01-31 Gökmen Göksel <[email protected]>
* - Merge: Take care clear cache method exceptions (r35758)
2011-01-31 Gökmen Göksel <[email protected]>
* - Update locales
2011-01-31 Gökmen Göksel <[email protected]>
* - Merge translations from uludag/trunk
2011-01-31 Gökmen Göksel <[email protected]>
* - Use package-manager domain in automatically generated uis
2011-01-30 Gökmen Göksel <[email protected]>
* - When filtering updates always use PackageDB
2011-01-30 Gökmen Göksel <[email protected]>
* - Its ready to use with C2
* - All KDE dependencies removed
2011-01-29 Gökmen Göksel <[email protected]>
* - Copy 2011 Package Manager to Corporate2
2011-01-29 transifex
* l10n: Updated Swedish (sv) translation to 100% (Patrik Karlsson)
* New status: 197 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-28 transifex
* l10n: Updated Dutch (Flemish) (nl) translation to 100% (Antoon Tolboom)
* New status: 197 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-28 transifex
* l10n: Updated Russian (ru) translation to 97% (Alexey Ivanes)
* New status: 193 messages complete with 3 fuzzies and 1 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-28 Gökmen Göksel <[email protected]>
* - PM is now capable to save auth & domain required proxy settings
* Example:
* http://workgroup\gokmen:[email protected]:3128
* ^ ^ ^^^^^^^ ^^^ ^
* |protocol | | |proxy |port
* |domain |
* |username & password
* It is still possible to use not auth required proxies.
2011-01-28 Gökmen Göksel <[email protected]>
* - Revert ui tab name
2011-01-28 Gökmen Göksel <[email protected]>
* - Update locales
2011-01-28 Gökmen Göksel <[email protected]>
* - Setting proxy application wide causes D-Bus issues
* Instead of this we just use proxy when we need a connection over proxy
* And when connection finished we reset the settings to defaults
2011-01-28 Gökmen Göksel <[email protected]>
* - Set Application wide proxy settings at start if exists
2011-01-28 Gökmen Göksel <[email protected]>
* - Clear all widgets
2011-01-28 Gökmen Göksel <[email protected]>
* - Fix local method
2011-01-28 Gökmen Göksel <[email protected]>
* - Almost done !
2011-01-28 Gökmen Göksel <[email protected]>
* - Draw update type tag next of selected tags
2011-01-28 Gökmen Göksel <[email protected]>
* - Get correct update_type from InstallDB
2011-01-27 Gökmen Göksel <[email protected]>
* - Use pisi.fetcher.Fetcher.test method to test connection with pisi's connection settings
2011-01-27 Gökmen Göksel <[email protected]>
* We need to request update if its not possible to get meta data about the package
* It will fix mysterious crashes on PM :)
2011-01-26 Gökmen Göksel <[email protected]>
* - Fix settingsdialog issues
* - Fix ui issues in settings dialog
* - Make "use kde settings" optional, hide the option if kde does not provides proxy settings
* - Move bandwith settings under the cache tab and rename the cache tab as Limits
2011-01-26 Gökmen Göksel <[email protected]>
* - update settingsdialog, it breaks everything for now.
2011-01-26 Gökmen Göksel <[email protected]>
* - Forgotten import, because of this Proxy Settings from Desktop Environments is not working for now.
2011-01-25 transifex
* l10n: add uk (Коростіль Данило)
* New status: 193 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-25 Gökmen Göksel <[email protected]>
* - Dont forget to switch the state
* Bug fixed at http://bugs.pardus.org.tr/16347
2011-01-23 transifex
* l10n: Updated Polish (pl) translation to 93% (Michał Komasa)
* New status: 180 messages complete with 12 fuzzies and 1 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-23 transifex
* l10n: Initial Polish translation of package-manager, thanks to Michał Komasa. (H. İbrahim Güngör)
* New status: 177 messages complete with 11 fuzzies and 5 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-20 Gökmen Göksel <[email protected]>
* - update ChangeLog
2011-01-20 Gökmen Göksel <[email protected]>
* - Fix stars positions
* Bug fixed at http://bugs.pardus.org.tr/16337
2011-01-19 Gökmen Göksel <[email protected]>
* - Ignore effect
2011-01-17 Gökmen Göksel <[email protected]>
* - Update version string
2011-01-17 Gökmen Göksel <[email protected]>
* - Add more desktop files for Install More Software menu items ...
2011-01-17 Gökmen Göksel <[email protected]>
* - use already translated string
2011-01-17 Gökmen Göksel <[email protected]>
* - If systemTray is not enabled ignore update changes
2011-01-17 Gökmen Göksel <[email protected]>
* - Use KStatusNotifierItem instead of KNotification..
2011-01-17 Gökmen Göksel <[email protected]>
* - Catch settingsDialog exceptions
2011-01-17 Gökmen Göksel <[email protected]>
* - Fix tabs
2011-01-17 Gökmen Göksel <[email protected]>
* - No need for different updateRepo method, we use StateManager's updateRepoAction
2011-01-17 Gökmen Göksel <[email protected]>
* - Even internet connection not availabe, user may use local repositories...
2011-01-17 Gökmen Göksel <[email protected]>
* - Check if repos available before starting to update...
2011-01-17 Gökmen Göksel <[email protected]>
* - Add new repos_available method, Set default socket time...
2011-01-17 igungor
* critical bugfix for ru.po
2011-01-16 Gökmen Göksel <[email protected]>
* - When using unicode pisi.db get nuts. bork.
2011-01-16 Gökmen Göksel <[email protected]>
* - Special request from Gökcen to sort file list of selected packages.
2011-01-16 Gökmen Göksel <[email protected]>
* - Update ChangeLog
2011-01-16 Gökmen Göksel <[email protected]>
* - Do not try to save same settings if already saved before.
2011-01-16 Gökmen Göksel <[email protected]>
* - Much better transition between webdialog and the preview ui ...
2011-01-15 transifex
* l10n: Updated Italian (it) translation to 100% (Ali Işıngör)
* New status: 193 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-15 Gökmen Göksel <[email protected]>
* - Force to use oxygen style for drawing focus rect like Oxygen style :) Qt Guru Part 2.
2011-01-15 Gökmen Göksel <[email protected]>
* - Hide basket if is visible when selectComponent called
2011-01-15 Gökmen Göksel <[email protected]>
* - Update version string
2011-01-15 Gökmen Göksel <[email protected]>
* - Update ChangeLog
2011-01-15 Gökmen Göksel <[email protected]>
* - If operation is not started by PackageManager instance do not show the summary dialog about the operation
2011-01-15 Gökmen Göksel <[email protected]>
* - In details page if package has screenshot and if user click the screenshot it will load the original image in another pds instance, yay.
2011-01-15 Gökmen Göksel <[email protected]>
* - much better transition
2011-01-15 Gökmen Göksel <[email protected]>
* - Faster first run...
2011-01-14 Gökmen Göksel <[email protected]>
* - Use FrameButtonBevel Primitive Element of selected theme for selected items, it just draws a selection rectangle on selected item.. More readable..
2011-01-14 Gökmen Göksel <[email protected]>
* - Disable install button after one clicked
2011-01-14 Gökmen Göksel <[email protected]>
* - Add command line option to select given component in install section
* For example;
* $ package-manager --select-component science
* It opens Pm, switches to Install section and selects the science component.
* Rules:
* ------
* - If Pm is already running it will raise the running window and selects the
* given component.
* - If some operation in progress in running instance of pm, it just raise the
* window.
* - If given component is not available it just switch to the install section.
2011-01-14 Gökmen Göksel <[email protected]>
* - add forgotten import traceback
2011-01-14 Gökmen Göksel <[email protected]>
* - No need to switch the lastState.
2011-01-14 Gökmen Göksel <[email protected]>
* - Handle package error as just pisi error when no package given
2011-01-14 Gökmen Göksel <[email protected]>
* - Use HighlightedText if item is active, otherwise just use the Text color
2011-01-14 Gökmen Göksel <[email protected]>
* - add forgotten import
2011-01-14 Gökmen Göksel <[email protected]>
* - Block mainloop in pm-install, when an error occured we dont need pm-install anymore
2011-01-14 Gökmen Göksel <[email protected]>
* - Do not block the mainloop as default, it will cause to freeze PM itself..
* Bug fixed at http://bugs.pardus.org.tr/15998
2011-01-14 Gökmen Göksel <[email protected]>
* - Fix whitespace
2011-01-14 Gökmen Göksel <[email protected]>
* - No need these, QPainter handles all operation..
2011-01-14 Gökmen Göksel <[email protected]>
* - Do not check conflicts while package removing..
2011-01-14 Gökmen Göksel <[email protected]>
* - Use dialog-close icon
* - Fix titlebar issues
2011-01-13 Gökmen Göksel <[email protected]>
* - Use an icon for webdialog close button
* Bug fixed at http://bugs.pardus.org.tr/15908
2011-01-12 Gökmen Göksel <[email protected]>
* - Use TextElide mode as Middle
* - Add tooltip for each group item
* Bug fixed at http://bugs.pardus.org.tr/16178
2011-01-11 transifex
* l10n: Updated Hungarian (hu) translation to 100% (Attila Siposs)
* New status: 193 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-11 Gökmen Göksel <[email protected]>
* - At first calculate all dependencies for given packages and add
* them to the package list.
* - If all given packages and their dependencies are local packages
* ignore checking internet connection status
* Bug fixed at http://bugs.pardus.org.tr/16164
2011-01-10 transifex
* l10n: Updated Italian (it) translation to 98% (Ali Işıngör)
* New status: 190 messages complete with 0 fuzzies and 3 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-10 Gökmen Göksel <[email protected]>
* Ignore .desktop files which has not exec line.
* Bug fixed at http://bugs.pardus.org.tr/16122
2011-01-09 transifex
* l10n: Updated Russian (ru) translation to 100% (Alexey Ivanes)
* New status: 193 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-08 transifex
* l10n: Updated Italian (it) translation to 97% (Ali Işıngör)
* New status: 189 messages complete with 0 fuzzies and 4 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-03 transifex
* l10n: Updated Italian (it) translation to 96% (Ali Işıngör)
* New status: 187 messages complete with 0 fuzzies and 6 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-03 transifex
* l10n: Updated Italian (it) translation to 96% (Ali Işıngör)
* New status: 186 messages complete with 0 fuzzies and 7 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-03 Gökmen Göksel <[email protected]>
* - Do not count packages which are not in any repository.
2011-01-03 transifex
* l10n: Updated Spanish (Castilian) (es) translation to 94% (Klemens Häckel)
* New status: 182 messages complete with 0 fuzzies and 11 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-02 transifex
* l10n: Updated Italian (it) translation to 93% (Ali Işıngör)
* New status: 180 messages complete with 3 fuzzies and 10 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-02 Gökmen Göksel <[email protected]>
* - make percentage widget fixed
2011-01-02 transifex
* l10n: Updated Italian (it) translation to 90% (Ali Işıngör)
* New status: 174 messages complete with 8 fuzzies and 11 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-02 transifex
* l10n: Updated Italian (it) translation to 84% (Ali Işıngör)
* New status: 164 messages complete with 15 fuzzies and 14 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2011-01-02 transifex
* l10n: Updated Italian (it) translation to 82% (Ali Işıngör)
* New status: 159 messages complete with 19 fuzzies and 15 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-30 Gökmen Göksel <[email protected]>
* - Update ChangeLog
2010-12-30 Gökmen Göksel <[email protected]>
* - Fix webdialog close button issue on other styles
* - Force to use enabled button from active style for details button
* - Fix tabbar issue
* Bug fixed at http://bugs.pardus.org.tr/15908
2010-12-30 Gökmen Göksel <[email protected]>
* - Ready to ship ! v 3.0.0
2010-12-30 Gökmen Göksel <[email protected]>
* - small fixes
2010-12-30 Gökmen Göksel <[email protected]>
* - UI, Cosmetic fixes
2010-12-30 transifex
* l10n: Updated Hungarian (hu) translation to 100% (Attila Siposs)
* New status: 193 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-30 Gökmen Göksel <[email protected]>
* - Fix System Tray issues
2010-12-29 Gökmen Göksel <[email protected]>
* - Show focus rectangle in packages, (I'm Qt Guru :p)
* - Fix a bug from history..
* Bug fixed at http://bugs.pardus.org.tr/3894
2010-12-29 transifex
* l10n: Updated Russian (ru) translation to 100% (Nikolay Semenov)
* New status: 193 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-29 transifex
* l10n: Updated French (fr) translation to 100% (Philippe Svetoslavsky)
* New status: 193 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-29 transifex
* l10n: Updated French (fr) translation to 100% (Philippe Svetoslavsky)
* New status: 193 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-29 transifex
* l10n: Updated French (fr) translation to 100% (Philippe Svetoslavsky)
* New status: 193 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-29 transifex
* l10n: Updated Swedish (sv) translation to 100% (Patrik Karlsson)
* New status: 193 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-29 transifex
* l10n: Updated Swedish (sv) translation to 99% (Patrik Karlsson)
* New status: 192 messages complete with 1 fuzzy and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-29 transifex
* l10n: Updated French (fr) translation to 100% (Philippe Svetoslavsky)
* New status: 193 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-29 transifex
* l10n: Updated German (de) translation to 100% (Stefan Wilhelm)
* New status: 193 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-29 transifex
* l10n: Updated German (de) translation to 100% (Stefan Wilhelm)
* New status: 193 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-29 transifex
* l10n: Updated Dutch (Flemish) (nl) translation to 100% (Antoon Tolboom)
* New status: 193 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-29 Gökmen Göksel <[email protected]>
* - update ChangeLog, TODO, remove BUGS
2010-12-29 Gökmen Göksel <[email protected]>
* - Add option to show isa tags in package list
* Bug fixed at http://bugs.pardus.org.tr/15387
2010-12-29 Gökmen Göksel <[email protected]>
* - Add shortcut button to open cache directory
* Bug fixed at http://bugs.pardus.org.tr/14189
2010-12-29 Gökmen Göksel <[email protected]>
* - Use pre/post exception method for exceptionHandler
2010-12-29 Gökmen Göksel <[email protected]>
* Comment added to http://bugs.pardus.org.tr/13950
2010-12-29 Gökmen Göksel <[email protected]>
* - Use correct kB symbol
* Bug fixed at http://bugs.pardus.org.tr/13950
2010-12-29 Gökmen Göksel <[email protected]>
* - Disable action button after action accepted
* Bug fixed at http://bugs.pardus.org.tr/15731
2010-12-29 Gökmen Göksel <[email protected]>
* - Fix i18n issues in pm-install
* - Fix progressdialog hide issue when it is not available
* - Check if comar.link is running for pisi before starting the operation
* - Show progress, disable cancel;
* if another pisi instance starts the package installation
* - Po updated and available strings merged from pisi.pot
2010-12-29 Gökmen Göksel <[email protected]>
* - 34500
2010-12-28 transifex
* l10n: Updated German (de) translation to 100% (Stefan Wilhelm)
* New status: 190 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-28 Gökmen Göksel <[email protected]>
* - correct version string
2010-12-28 Gökmen Göksel <[email protected]>
* - ready for RC
2010-12-28 Gökmen Göksel <[email protected]>
* - In upgrade state force to use PackageDB instead of InstallDB
* Bug fixed at http://bugs.pardus.org.tr/15292
2010-12-28 transifex
* l10n: Updated Russian (ru) translation to 100% (Alexey Ivanes)
* New status: 190 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-28 Gökmen Göksel <[email protected]>
* - Take care number of extra packages for progress.
2010-12-28 transifex
* l10n: Updated Swedish (sv) translation to 100% (Patrik Karlsson)
* New status: 190 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-28 transifex
* l10n: Updated Dutch (Flemish) (nl) translation to 100% (Antoon Tolboom)
* New status: 190 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-28 Gökmen Göksel <[email protected]>
* - Update PO
2010-12-28 Gökmen Göksel <[email protected]>
* - No need this
2010-12-28 Gökmen Göksel <[email protected]>
* - cleanup unused uis
2010-12-28 Gökmen Göksel <[email protected]>
* - Fix PMinstall issues
* - Add file exists controls
* - Use absolute paths for local packages
* - Avoid to mix package_names and package_files which are not supported by Pisi
2010-12-27 transifex
* l10n: Updated German (de) translation to 100% (Stefan Wilhelm)
* New status: 196 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-27 Gökmen Göksel <[email protected]>
* - Ignore reject requests while pm-install working..
2010-12-27 Gökmen Göksel <[email protected]>
* - Fix option parser
* - Add hide-summary option
* - Use following return codes for pm-install:
* - Returns 0 if packages installed successfully
* - Returns 1 if some kind of error was occured
* - Returns 3 if user cancelled the operation
2010-12-26 Gökmen Göksel <[email protected]>
* - Pm install is almost done.
* - Group commonly used methods under PM Class
* - Clear old method which was used for pm-install
* - Use pm's progressdialog in pm-install
* - Use pm's summarydialog in pm-install
* - Pm-install's basic pisi ui event actions are done
* - Pm-install's ui fixed
2010-12-26 Gökmen Göksel <[email protected]>
* - Use Empty Package object for given remote packages
* - Hide checkboxes from pm-install list
* - Fix basketdialog packagelist for new packagelist
2010-12-26 Gökmen Göksel <[email protected]>
* - use pisi.api.info_file method for local packages
2010-12-26 Gökmen Göksel <[email protected]>
* - Use same delegate with pm, for selected packages list
* - Hide details button in list
* - Fix ui
2010-12-24 transifex
* l10n: Updated Russian (ru) translation to 100% (Alexey Ivanes)
* New status: 196 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-24 Gökmen Göksel <[email protected]>
* - continue at home ..
2010-12-24 Gökmen Göksel <[email protected]>
* - Pm-installer from scratch, it just installs for now
2010-12-23 Gökmen Göksel <[email protected]>
* - rename, cleanup
2010-12-23 transifex
* l10n: Updated Russian (ru) translation to 100% (Alexey Ivanes)
* New status: 196 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-23 transifex
* l10n: Updated Russian (ru) translation to 100% (Alexey Ivanes)
* New status: 196 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-23 transifex
* l10n: Updated Russian (ru) translation to 98% (Alexey Ivanes)
* New status: 193 messages complete with 3 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-22 transifex
* l10n: Updated German (de) translation to 98% (Stefan Wilhelm)
* New status: 194 messages complete with 1 fuzzy and 1 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-22 transifex
* l10n: Updated German (de) translation to 98% (Stefan Wilhelm)
* New status: 194 messages complete with 1 fuzzy and 1 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-22 transifex
* l10n: Updated German (de) translation to 97% (Stefan Wilhelm)
* New status: 192 messages complete with 4 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-20 transifex
* l10n: Updated Spanish (Castilian) (es) translation to 93% (Klemens Häckel)
* New status: 183 messages complete with 0 fuzzies and 13 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-19 transifex
* l10n: Updated Italian (it) translation to 86% (Ali Işıngör)
* New status: 169 messages complete with 18 fuzzies and 9 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-17 transifex
* l10n: Updated Swedish (sv) translation to 100% (Patrik Karlsson)
* New status: 196 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-17 transifex
* l10n: Updated Spanish (Castilian) (es) translation to 93% (Klemens Häckel)
* New status: 183 messages complete with 0 fuzzies and 13 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-17 transifex
* l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 97% (José Afonso da Silva Carvalho)
* New status: 192 messages complete with 4 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-17 transifex
* l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 89% (José Afonso da Silva Carvalho)
* New status: 176 messages complete with 12 fuzzies and 8 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-13 transifex
* l10n: Updated Swedish (sv) translation to 97% (Patrik Karlsson)
* New status: 192 messages complete with 4 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-12-08 Gökmen Göksel <[email protected]>
* - Dont check dependencies
2010-12-01 Gökmen Göksel <[email protected]>
* - Update ChangeLog
2010-12-01 Gökmen Göksel <[email protected]>
* - Hide message box even mainwindow is not visible
* Bug fixed at http://bugs.pardus.org.tr/15283
2010-12-01 Gökmen Göksel <[email protected]>
* Beta 2
2010-11-29 transifex
* l10n: Updated Spanish (Castilian) (es) translation to 92% (Klemens Häckel)
* New status: 182 messages complete with 1 fuzzy and 13 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-11-28 transifex
* l10n: Updated Spanish (Castilian) (es) translation to 89% (Klemens Häckel)
* New status: 176 messages complete with 6 fuzzies and 14 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-11-28 transifex
* l10n: Updated Spanish (Castilian) (es) translation to 89% (Klemens Häckel)
* New status: 175 messages complete with 6 fuzzies and 15 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-11-28 transifex
* l10n: Updated Hungarian (hu) translation to 100% (Attila Siposs)
* New status: 196 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-11-26 Gökmen Göksel <[email protected]>
* - Set minimum size
* Bug fixed at http://bugs.pardus.org.tr/15352
2010-11-24 Gökmen Göksel <[email protected]>
* Paranoia
2010-11-24 Gökmen Göksel <[email protected]>
* Fix updating repo progress, thanks to Hakan.
2010-11-24 Gökmen Göksel <[email protected]>
* Fix network check
2010-11-22 Gökmen Göksel <[email protected]>
* Sync TODO with redmine
2010-11-21 transifex
* l10n: Updated German (de) translation to 97% (Stefan Wilhelm)
* New status: 192 messages complete with 0 fuzzies and 4 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-11-16 transifex
* l10n: Updated French (fr) translation to 100% (Philippe Svetoslavsky)
* New status: 196 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-11-15 Gökmen Göksel <[email protected]>
* Use network_check where available in package-manager.. Thanks to urllib gods..
2010-11-13 transifex
* l10n: Updated Russian (ru) translation to 100% (Yasirov Vasiliy)
* New status: 196 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-11-12 Gökmen Göksel <[email protected]>
* dont forget to import
2010-11-11 Gökmen Göksel <[email protected]>
* Use pds.thread
2010-11-11 Gökmen Göksel <[email protected]>
* Fix empty basket issues
2010-11-11 transifex
* l10n: Updated Dutch (Flemish) (nl) translation to 100% (Antoon Tolboom)
* New status: 196 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-11-11 Gökmen Göksel <[email protected]>
* Icon, Po, UI updates ~ all cosmetic.
2010-11-11 Gökmen Göksel <[email protected]>
* Fix search in updates
2010-11-10 Gökmen Göksel <[email protected]>
* Fix memory leak, deleteLater is your friend.
2010-11-10 transifex
* l10n: Updated French (fr) translation to 100% (Philippe Svetoslavsky)
* New status: 198 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-11-09 Gökmen Göksel <[email protected]>
* Fix default package repos
2010-11-09 Gökmen Göksel <[email protected]>
* Fix version string
2010-11-09 Gökmen Göksel <[email protected]>
* Fix settings dialog UI, kudos to ibrahim
2010-11-09 Gökmen Göksel <[email protected]>
* typo
2010-11-09 transifex
* l10n: Updated Russian (ru) translation to 100% (Yasirov Vasiliy)
* New status: 198 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-11-09 transifex
* l10n: Updated Russian (ru) translation to 99% (Yasirov Vasiliy)
* New status: 197 messages complete with 1 fuzzy and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-11-09 transifex
* l10n: Updated Russian (ru) translation to 98% (Yasirov Vasiliy)
* New status: 196 messages complete with 2 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-11-09 transifex
* l10n: Updated Russian (ru) translation to 98% (Yasirov Vasiliy)
* New status: 195 messages complete with 3 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-11-09 transifex
* l10n: Updated Russian (ru) translation to 95% (Yasirov Vasiliy)
* New status: 189 messages complete with 9 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-11-09 transifex
* l10n: Updated Russian (ru) translation to 93% (Yasirov Vasiliy)
* New status: 186 messages complete with 12 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-11-09 transifex
* l10n: Updated Russian (ru) translation to 91% (Yasirov Vasiliy)
* New status: 181 messages complete with 17 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-11-08 Gökmen Göksel <[email protected]>
* Check connection status before trying to get package details from AppInfo server
2010-11-08 Gökmen Göksel <[email protected]>
* Solid Networking check added
* Show proper message about updates
* Check for updates button added
* Just once update repo when user switched to updates
* After this user should click the check for updates button
2010-11-08 transifex
* l10n: Updated Dutch (Flemish) (nl) translation to 100% (Antoon Tolboom)
* New status: 197 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-11-08 Gökmen Göksel <[email protected]>
* fix state status, and css
2010-11-08 Gökmen Göksel <[email protected]>
* Clear basket option
* v 3.0 Beta \o/
2010-11-08 Gökmen Göksel <[email protected]>
* Show busy indicator and basket popup button
2010-11-08 Gökmen Göksel <[email protected]>
* Qt Assistant: 'Warning: This function is only effective before the QApplication constructor is called.'
2010-11-08 transifex
* l10n: Updated Dutch (Flemish) (nl) translation to 100% (Antoon Tolboom)
* New status: 193 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-11-08 Gökmen Göksel <[email protected]>
* Fix Message Boxes, update po
2010-11-08 Gökmen Göksel <[email protected]>
* If its already running dont do it :)
2010-11-07 Gökmen Göksel <[email protected]>
* Much better animation ;)
2010-11-07 Gökmen Göksel <[email protected]>
* Use raster default, it is faster.
2010-11-05 transifex
* l10n: Updated French (fr) translation to 100% (Philippe Svetoslavsky)
* New status: 188 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-11-05 Gökmen Göksel <[email protected]>
* Reinstall Package option
* (If already installed package selected to install, PM will ask you ! 5th.Nov.)
* Bug fixed at http://bugs.pardus.org.tr/8545
2010-11-05 Gökmen Göksel <[email protected]>
* Show Package Files (if installed)
* Fix Sip issues
* Show Details
* Bug fixed at http://bugs.pardus.org.tr/1537
* Bug fixed at http://bugs.pardus.org.tr/14400
* Bug fixed at http://bugs.pardus.org.tr/14172
* Bug fixed at http://bugs.pardus.org.tr/13840
* Bug fixed at http://bugs.pardus.org.tr/13544
* These are duplicate..
* Bug fixed at http://bugs.pardus.org.tr/15004
* Bug fixed at http://bugs.pardus.org.tr/15021
* Bug fixed at http://bugs.pardus.org.tr/15024
* Bug fixed at http://bugs.pardus.org.tr/15043
2010-11-05 transifex
* l10n: Updated Dutch (Flemish) (nl) translation to 100% (Antoon Tolboom)
* New status: 188 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-11-05 Gökmen Göksel <[email protected]>
* Po update
2010-11-05 Gökmen Göksel <[email protected]>
* Show busy indicator while package details loading..
2010-11-04 Gökmen Göksel <[email protected]>
* Make enough time to show notifications
2010-11-04 Gökmen Göksel <[email protected]>
* remove old stuff
2010-11-04 Gökmen Göksel <[email protected]>
* Search is now threaded.
2010-11-04 transifex
* l10n: Updated French (fr) translation to 100% (Philippe Svetoslavsky)
* New status: 187 messages complete with 0 fuzzies and 0 untranslated.
* Transmitted-via: Transifex (translate.pardus.org.tr).
2010-11-04 Gökmen Göksel <[email protected]>
* Threaded search support, not finished.
2010-11-04 transifex
* l10n: Updated Dutch (Flemish) (nl) translation to 100% (Antoon Tolboom)