-
Notifications
You must be signed in to change notification settings - Fork 0
/
pisi-index.xml
executable file
·12318 lines (12303 loc) · 574 KB
/
pisi-index.xml
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
<PISI>
<Package>
<Name>bind-libs</Name>
<Summary xml:lang="en">bind-libs contains the libraries used by both the bind server package and the tools package</Summary>
<Summary xml:lang="tr">bind kitaplık dosyaları</Summary>
<Description xml:lang="en">bind is an implementation of the DNS protocols, bind includes a DNS server (named), a resolver library and tools for verifying that the DNS server is operating properly.</Description>
<Description xml:lang="tr">bind, DNS protokollerinin gerçeklenimidir. DNS sunucu (named) ve bu sunucunun düzgün çalışması ve doğrulamasını yapılması için gerekli çözümleyici kitaplık ve araçları içerir.</Description>
<IsA>library</IsA>
<IsA>service</IsA>
<PartOf>server.library</PartOf>
<License>as-is</License>
<History>
<Update release="36">
<Date>2012-10-14</Date>
<Version>9.9.2</Version>
<Comment>Güncellendi.</Comment>
<Name>Osman Erkan</Name>
<Email>[email protected]</Email>
</Update>
<Update release="35">
<Date>2011-08-12</Date>
<Version>9.7.3</Version>
<Comment>Catch the exception while configuring chroot subpackage, and do some cosmetic stuff.</Comment>
<Name>H. İbrahim Güngör</Name>
<Email>[email protected]</Email>
</Update>
<Update release="34" type="security">
<Date>2011-07-08</Date>
<Version>9.7.3</Version>
<Comment>Fix specially constructed packet will cause named to exit(CVE-2011-2464) (pb#18613).</Comment>
<Name>H. İbrahim Güngör</Name>
<Email>[email protected]</Email>
</Update>
<Update release="33">
<Date>2011-06-23</Date>
<Version>9.7.3</Version>
<Comment>Fix permissions of various directories and files inside /var/named (pb#18475).</Comment>
<Name>H. İbrahim Güngör</Name>
<Email>[email protected]</Email>
</Update>
<Update release="32">
<Date>2011-04-12</Date>
<Version>9.7.3</Version>
<Comment>Fix chroot package</Comment>
<Name>Erdem Bayer</Name>
<Email>[email protected]</Email>
</Update>
<Update release="31" type="security">
<Date>2011-03-21</Date>
<Version>9.7.3</Version>
<Comment>Version bump to fix named lockup with IXFR or DDNS update and a high query rate, CVE-2011-0414 (#17269)</Comment>
<Name>H. İbrahim Güngör</Name>
<Email>[email protected]</Email>
</Update>
<Update release="30" type="security">
<Date>2010-12-10</Date>
<Version>9.7.2_p3</Version>
<Comment>* Version bump to fix CVE-2010-{3613,3614,3615},
* Enable exportlib.</Comment>
<Name>H. İbrahim Güngör</Name>
<Email>[email protected]</Email>
</Update>
<Update release="29">
<Date>2010-10-13</Date>
<Version>9.7.1_p2</Version>
<Comment>Mass rebuild for Pardus 2011 Beta</Comment>
<Name>Gökçen Eraslan</Name>
<Email>[email protected]</Email>
</Update>
<Update release="28">
<Date>2010-09-16</Date>
<Version>9.7.1_p2</Version>
<Comment>Version bump.</Comment>
<Name>H. İbrahim Güngör</Name>
<Email>[email protected]</Email>
</Update>
<Update release="27">
<Date>2010-03-31</Date>
<Version>9.7.0_p1</Version>
<Comment>Version bump, add libcap dependency</Comment>
<Name>Ozan Çağlayan</Name>
<Email>[email protected]</Email>
</Update>
<Update release="26">
<Date>2010-03-12</Date>
<Version>9.7.0</Version>
<Comment>Version bump.</Comment>
<Name>Ozan Çağlayan</Name>
<Email>[email protected]</Email>
</Update>
<Update release="25" type="security">
<Date>2010-01-21</Date>
<Version>9.6.1_p3</Version>
<Comment>Version bump to fix bogus NXDOMAIN response caused by NSEC/NSEC3 validation code. CVE-2010-0097, #12105</Comment>
<Name>Eren Türkay</Name>
<Email>[email protected]</Email>
</Update>
<Update release="24">
<Date>2009-12-17</Date>
<Version>9.6.1_p2</Version>
<Comment>Fix wrong bind-tools PartOf</Comment>
<Name>Onur Küçük</Name>
<Email>[email protected]</Email>
</Update>
<Update release="23" type="security">
<Date>2009-12-03</Date>
<Version>9.6.1_p2</Version>
<Comment>Security patch release (Bug#11620)</Comment>
<Name>Taner Taş</Name>
<Email>[email protected]</Email>
</Update>
<Update release="22">
<Date>2009-05-05</Date>
<Version>9.6.0_p1</Version>
<Comment>First 9.6 release</Comment>
<Name>Taner Taş</Name>
<Email>[email protected]</Email>
</Update>
<Update release="21" type="security">
<Date>2009-04-13</Date>
<Version>9.4.3_p2</Version>
<Comment>Security patch release</Comment>
<Name>Taner Taş</Name>
<Email>[email protected]</Email>
</Update>
<Update release="20" type="security">
<Date>2009-01-07</Date>
<Version>9.4.3_p1</Version>
<Comment>Version bump to fix incorrect checks for malformed signatures (CVE-2009-0025)</Comment>
<Name>Pınar Yanardağ</Name>
<Email>[email protected]</Email>
</Update>
<Update release="19">
<Date>2008-08-16</Date>
<Version>9.4.2_p2</Version>
<Comment>Fix bug 7801 by modifying libbind-9.3.1rc1-fix_h_errno.patch</Comment>
<Name>Onur Küçük</Name>
<Email>[email protected]</Email>
</Update>
<Update release="18" type="security">
<Date>2008-08-02</Date>
<Version>9.4.2_p2</Version>
<Comment>Security bump to new patchset:
+ significantly remedying the port allocation issues
+ allowing TCP queries and zone transfers while issuing as many outstanding UDP queries as possible
+ additional security of port randomization at the same level as P1</Comment>
<Name>Gökçen Eraslan</Name>
<Email>[email protected]</Email>
</Update>
<Update release="17" type="security">
<Date>2008-07-09</Date>
<Version>9.4.2_p1</Version>
<Comment>Security bump for CVE-2008-1447</Comment>
<Name>Gökçen Eraslan</Name>
<Email>[email protected]</Email>
</Update>
<Update release="16" type="security">
<Date>2008-03-23</Date>
<Version>9.4.1_p1</Version>
<Comment>Take in CVE-2008-0122.patch</Comment>
<Name>Eren Türkay</Name>
<Email>[email protected]</Email>
</Update>
<Update release="15" type="security">
<Date>2008-01-25</Date>
<Version>9.4.1_p1</Version>
<Comment>Revert to 9.4.1_p1</Comment>
<Name>İsmail Dönmez</Name>
<Email>[email protected]</Email>
</Update>
<Update release="14" type="security">
<Date>2008-01-18</Date>
<Version>9.4.2</Version>
<Comment>Fix CVE-2008-0122</Comment>
<Name>İsmail Dönmez</Name>
<Email>[email protected]</Email>
</Update>
<Update release="13">
<Date>2007-11-28</Date>
<Version>9.4.2</Version>
<Comment>Version bump</Comment>
<Name>Ali Erdinç Köroğlu</Name>
<Email>[email protected]</Email>
</Update>
<Update release="12">
<Date>2007-11-05</Date>
<Version>9.4.1_p1</Version>
<Comment>Update named.ca to reflect IP changes</Comment>
<Name>İsmail Dönmez</Name>
<Email>[email protected]</Email>
</Update>
<Update release="11" type="security">
<Date>2007-07-24</Date>
<Version>9.4.1_p1</Version>
<Comment>Stable update to fix CVE-2007-2925 and CVE-2007-2926</Comment>
<Name>İsmail Dönmez</Name>
<Email>[email protected]</Email>
</Update>
<Update release="10">
<Date>2007-05-23</Date>
<Version>9.4.1</Version>
<Comment>Updated Service script.</Comment>
<Name>Bahadır Kandemir</Name>
<Email>[email protected]</Email>
</Update>
<Update release="9">
<Date>2007-05-09</Date>
<Version>9.4.1</Version>
<Comment>Stable update</Comment>
<Name>İsmail Dönmez</Name>
<Email>[email protected]</Email>
</Update>
<Update release="8">
<Date>2007-01-26</Date>
<Version>9.3.4</Version>
<Comment>Version bump to stable and bugfix #4731</Comment>
<Name>Ali Erdinç Köroğlu</Name>
<Email>[email protected]</Email>
</Update>
<Update release="7">
<Date>2006-12-23</Date>
<Version>9.3.3</Version>
<Comment>Version bump to stable</Comment>
<Name>Ali Erdinç Köroğlu</Name>
<Email>[email protected]</Email>
</Update>
<Update release="6">
<Date>2006-11-04</Date>
<Version>9.3.2_p2</Version>
<Comment>Stable update to fix OpenSSL RSA forgery vulnerability</Comment>
<Name>İsmail Dönmez</Name>
<Email>[email protected]</Email>
</Update>
<Update release="5">
<Date>2006-09-17</Date>
<Version>9.3.2</Version>
<Comment>Revert last</Comment>
<Name>S.Çağlar Onur</Name>
<Email>[email protected]</Email>
</Update>
<Update release="4" type="security">
<Date>2006-09-13</Date>
<Version>9.3.2_p1</Version>
<Comment>Version bump</Comment>
<Name>Ali Erdinç Köroğlu</Name>
<Email>[email protected]</Email>
</Update>
<Update release="3">
<Date>2006-04-09</Date>
<Version>9.3.2</Version>
<Comment>New release</Comment>
<Name>Bahadır Kandemir</Name>
<Email>[email protected]</Email>
</Update>
<Update release="2">
<Date>2005-11-12</Date>
<Version>9.3.1</Version>
<Comment>Version Upgrade</Comment>
<Name>Timu EREN</Name>
<Email>[email protected]</Email>
</Update>
<Update release="1">
<Date>2005-09-30</Date>
<Version>9.2.3</Version>
<Comment>First release.</Comment>
<Name>Timu EREN</Name>
<Email>[email protected]</Email>
</Update>
</History>
<BuildHost>localhost</BuildHost>
<Distribution>Pardus</Distribution>
<DistributionRelease>2011</DistributionRelease>
<Architecture>x86_64</Architecture>
<InstalledSize>4026496</InstalledSize>
<PackageSize>1514332</PackageSize>
<PackageHash>afc0f285efa53ff5af3518b7447ca5285525133b</PackageHash>
<PackageURI>bind-libs-9.9.2-36-p11-x86_64.pisi</PackageURI>
<PackageFormat>1.2</PackageFormat>
<Source>
<Name>bind</Name>
<Homepage>http://www.isc.org/products/BIND/bind9.html</Homepage>
<Packager>
<Name>Pardus ANKA Admins</Name>
<Email>[email protected]</Email>
</Packager>
</Source>
</Package>
<Package>
<Name>gnubg</Name>
<Summary xml:lang="en">GNU Backgammon</Summary>
<Summary xml:lang="tr">GNU Tavla oyunu</Summary>
<Description xml:lang="en">GNU Backgammon (gnubg) plays and analyses backgammon games and matches.</Description>
<Description xml:lang="tr">gnubg, tavla maçları yapıp ardından maçlarınızı analiz edebileceğiniz bir tavla oyunudur.</Description>
<IsA>app:gui</IsA>
<PartOf>game.board</PartOf>
<License>GPLv2</License>
<Icon>gnubg</Icon>
<RuntimeDependencies>
<Dependency>gtk2</Dependency>
<Dependency>libcanberra</Dependency>
<Dependency>pango</Dependency>
<Dependency>cairo</Dependency>
</RuntimeDependencies>
<History>
<Update release="3">
<Date>2012-12-05</Date>
<Version>20121205</Version>
<Comment>Version Bump.</Comment>
<Name>Baran Kılıç</Name>
<Email>[email protected]</Email>
</Update>
<Update release="2">
<Date>2009-10-16</Date>
<Version>20121016</Version>
<Comment>Version Bump.</Comment>
<Name>Baran Kılıç</Name>
<Email>[email protected]</Email>
</Update>
<Update release="1">
<Date>2009-09-14</Date>
<Version>20090817</Version>
<Comment>First release.</Comment>
<Name>Cihan Okyay</Name>
<Email>[email protected]</Email>
</Update>
</History>
<BuildHost>localhost</BuildHost>
<Distribution>Pardus</Distribution>
<DistributionRelease>2011</DistributionRelease>
<Architecture>x86_64</Architecture>
<InstalledSize>19127555</InstalledSize>
<PackageSize>14019781</PackageSize>
<PackageHash>fb482be6db974f71d472fcf5ac9b2ec0f06ee16c</PackageHash>
<PackageURI>gnubg-20121205-3-p11-x86_64.pisi</PackageURI>
<PackageFormat>1.2</PackageFormat>
<Source>
<Name>gnubg</Name>
<Homepage>http://www.gnubg.org</Homepage>
<Packager>
<Name>Cihan Okyay</Name>
<Email>[email protected]</Email>
</Packager>
</Source>
</Package>
<Package>
<Name>filezilla</Name>
<Summary xml:lang="en">Simple FTP Client</Summary>
<Summary xml:lang="tr">FTP ve SFTP istemcisi</Summary>
<Description xml:lang="en">Easy-to-use FTP Client which also supports SFTP.</Description>
<Description xml:lang="tr">Filezilla; dosyalarınızı ftp, sftp, ftps ile göndermenize ve indirmenize yarar</Description>
<IsA>app:gui</IsA>
<PartOf>network.ftp</PartOf>
<License>GPLv2</License>
<Icon>filezilla</Icon>
<RuntimeDependencies>
<Dependency versionFrom="2.8.9">wxGTK</Dependency>
<Dependency versionFrom="2.8.3">gnutls</Dependency>
</RuntimeDependencies>
<History>
<Update release="43">
<Date>2012-09-01</Date>
<Version>3.5.3</Version>
<Comment>v.bump</Comment>
<Name>Osman Erkan</Name>
<Email>[email protected]</Email>
</Update>
<Update release="42">
<Date>2011-11-21</Date>
<Version>3.5.2</Version>
<Comment>Version bump. Changes in this release:
* The "Don't save passwords" option is saved now on
* Save the queue correctly when having items from multiple servers
* Queue items with the lowest priority setting are now being restored again
* Drag/Drop works with all saved sites now on if saving of passwords is disabled
* Add option to open site manager on startup to the settings dialog</Comment>
<Name>Gökhan Özbulak</Name>
<Email>[email protected]</Email>
</Update>
<Update release="41">
<Date>2011-09-16</Date>
<Version>3.5.1</Version>
<Comment>Version bump. Changes in this release:
* Add support for another rate variant of MVS style directory listings
* Add menu item to hide toolbar
* Don't save server list in kiosk mode 2
* Fix for predefined sites not appearing in all circumstances
* Fix typo in build script in detection of SQLite3
* MSW: Small installer improvements
* Fix character set conversion in desktop notification code
* Update built-in TinyXML</Comment>
<Name>Gökhan Özbulak</Name>
<Email>[email protected]</Email>
</Update>
<Update release="40">
<Date>2011-06-14</Date>
<Version>3.5.0</Version>
<Comment>Add missing build-time dependency, gtk2-devel (pb#18401)</Comment>
<Name>Gökhan Özbulak</Name>
<Email>[email protected]</Email>
</Update>
<Update release="39">
<Date>2011-06-06</Date>
<Version>3.5.0</Version>
<Comment>Version bump:
- String shortened to avoid line-break in menu item
- Fix display of site list menu if there are predefined sites but sitemanager.xml does not exist
- Add version information to installer
- Update strings for debug information
- Translations update
- Detect libtool wrappers and copy the real thing instead
- Detect theme change and update header height accordingly
- Fix a division by zero if benchmarking an empty coalescer</Comment>
<Name>Gökhan Özbulak</Name>
<Email>[email protected]</Email>
</Update>
<Update release="38">
<Date>2011-04-25</Date>
<Version>3.4.0</Version>
<Comment>Version bump</Comment>
<Name>Gökhan Özbulak</Name>
<Email>[email protected]</Email>
</Update>
<Update release="37">
<Date>2011-01-19</Date>
<Version>3.3.5.1</Version>
<Comment>Version bump</Comment>
<Name>Gökhan Özbulak</Name>
<Email>[email protected]</Email>
</Update>
<Update release="36">
<Date>2010-11-20</Date>
<Version>3.3.5</Version>
<Comment>Version bump.
3.3.5 (2010-11-14)
- Updated language files, otherwise identical with rc1
3.3.5-rc1 (2010-11-07)
- FTP over TLS certificate store is now host-specific
- MSW: Large-DPI awareness
- Improved SFTP transfer speeds
- FTP over TLS should prefer ciphers with longer key sizes, updated contained GnuTLS library in precompiled binaries
- Add context menu entry to re-queue all files on the successful and failed queue tabs
- Resuming of uploads was not working correctly in all cases
- Correct remaining time calculation in queue
- Do not show welcome dialog in kiosk mode 2
- Do not offer option to permanently accept certificate in kiosk mode 2
- Fix sorting by size in filelists with directory sort behavior set to inline
- MSW: Fix memory corruption when changing language
- OS X: Include license and documentation files in application bundle
- Directly save settings after importing from file
3.3.4.1 (2010-08-15)
- Set a minimum size for column widths in directory lists and transfer queue
- Fix build-time check for system TinyXML
3.3.4 (2010-08-12)
- Correctly handle symbolic links pointing to files in search dialog
- Fix crash in options initialization
3.3.4-rc2 (2010-08-07)
- Fix issues with path names not properly terminated by separator
- Fix loading of settings with empty values
- Update status bar icons if changing theme
3.3.4-rc1 (2010-08-02)
- Filter/search by modification date
- Add "does not equal" option to size filter
- Reduced memory consumption when working with very large queues and directory hierarchies
- Fix bug in TinyXML that could lead to corrupt XML documents
- Abort directory listing parsing if encountering a line with more than 10k characters
- Fix stalling recursive operations if FileZilla gets disconnected
- Set correct initial control state in site manager if there are no sites</Comment>
<Name>Renan Çakırerk</Name>
<Email>[email protected]</Email>
</Update>
<Update release="35">
<Date>2010-10-29</Date>
<Version>3.3.3</Version>
<Comment>Mass rebuild for Pardus Corporate 2 Alpha 3</Comment>
<Name>Ozan Çağlayan</Name>
<Email>[email protected]</Email>
</Update>
<Update release="34">
<Date>2010-06-16</Date>
<Version>3.3.3</Version>
<Comment>Version bump.</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="33">
<Date>2010-03-24</Date>
<Version>3.3.2.1</Version>
<Comment>New features:
* Remember location of update download directory.
Bugfixes and minor changes:
* Cancel file renaming on actions that change the file list, such as changing sort order or performing a refresh.
* Cancel file renaming if starting a drag-drop operation.
* Filter invalid characters if downloading through double-clicking files or if adding from the search dialog.
* Fix site-specific bookmarks menu.
* The menu did not reflect initial value of preserve timestamp option properly.
* MSW: Keep FileZilla subdirectory in startmenu when updating, preserves custom order.</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="32">
<Date>2010-02-22</Date>
<Version>3.3.2</Version>
<Comment>New features:
* *nix: Add support for forward and backward mouse buttons.
* Speed limits can be quickly set using the menu and a new indicator in the status bar.
* Display number of bytes transferred and duration of transfer in log.
* MSW: React to back button of mouse in file lists.
* Updated blukis icon set.
Bugfixes and minor changes:
* Speed limits can be re-enabled on SFTP connections.
* Changed settings did not come into effect unless FileZilla was restarted.
* Small performance improvements.
* Spelling fixes.
* Rebuilt due to timer problems.
* Refactored large parts of the toolbar and menubar code.
* A race condition in the socket code could lead to crashes.
* Fix connecting to addresses longer than 15 characters if using SOCKS proxy.
* Get add to queue in local directory tree context menu working again.
* Do not open request dialogs if user is holding a mouse button.
* Forward all Ctrl+Tab key events to tab bar.
* Do not report SFTP exitcodes that do not originate from the server.</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="31">
<Date>2010-01-05</Date>
<Version>3.3.1</Version>
<Comment>New features:
* New tab context menu, can be used to close or refresh current tab or to close all but the current tab.
* *nix, OS X: Display sort indicators in filelist header control.
* Remember size of dialog showing all files opened for editing.
* Add refresh item to filelist context menus.
* Scroll treeview horizontally if needed to keep item in view on changing directories.
Bugfixes and minor changes:
* Fix crash of fzsftp if server closes connection.
* Successfully downloaded update file is no longer deleted if user cancels the finish page of the update check wizard.
* Do not retry connecting if not trusting certificate on FTP over TLS connections.
* Better reporting of handshake failures on FTP over TLS connections.
* *nix: Check for xdg-open. This program from the xdg-utils is an indirect runtime dependency. It is used by wxWidgets to open URLs in the default browser.
* Refactored most of the tabbing code.
* Use proper address type on SOCKS proxies.
* Add missing default button in bookmarks dialog.
* Implement missing tab creation from context menu.
* *nix: Reduce flicker on tab creation.
* Set initial focus in chmod dialog to input box for numeric value.
* Correct handling of unexpected closure of SFTP connection.</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="30">
<Date>2009-11-17</Date>
<Version>3.3.0.1</Version>
<Comment>New features:
Ctrl-Tab and Ctrl-Shift-Tab to cycle tabs now loop around if reaching the end of the tab list.
Bugfixes and minor changes:
Fix crash on showing/hiding of directory trees after closing a tab.
Tabs no longer become unresponsive if not approving to close a busy tab.
Directory comparison did not work properly on all but the first tab.
Fix spurious error messages if connecting to a new site while synchronized browsing is enabled.
*nix: Work around a bug in KDE preventing restore from minimize to notification area.
Do not show update dialog if there is already some other dialog open.
Fix synchronized browsing option on site-specific bookmarks.</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="29">
<Date>2009-11-10</Date>
<Version>3.3.0</Version>
<Comment>Version bump.</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="28">
<Date>2009-10-12</Date>
<Version>3.2.8.1</Version>
<Comment>Version bump.</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="27">
<Date>2009-10-04</Date>
<Version>3.2.8</Version>
<Comment>Version bump.</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="26">
<Date>2009-08-28</Date>
<Version>3.2.7.1</Version>
<Comment>Version bump. Minimum required GnuTLS version to 2.8.3</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="25">
<Date>2009-07-03</Date>
<Version>3.2.6.1</Version>
<Comment>Version bump.</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="24">
<Date>2009-06-29</Date>
<Version>3.2.6</Version>
<Comment>Version bump.</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="23">
<Date>2009-06-16</Date>
<Version>3.2.5</Version>
<Comment>Version bump.</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="22">
<Date>2009-06-05</Date>
<Version>3.2.4.1</Version>
<Comment>Build dep rename wxGTK</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="21">
<Date>2009-04-30</Date>
<Version>3.2.4.1</Version>
<Comment>Version bump.</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="20">
<Date>2009-04-22</Date>
<Version>3.2.4</Version>
<Comment>Version bump and add translations.xml</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="19">
<Date>2009-03-29</Date>
<Version>3.2.3.1</Version>
<Comment>Version bump</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="18">
<Date>2009-03-22</Date>
<Version>3.2.3</Version>
<Comment>Version bump</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="17">
<Date>2009-02-25</Date>
<Version>3.2.2.1</Version>
<Comment>Version bump</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="16">
<Date>2009-02-20</Date>
<Version>3.2.2</Version>
<Comment>Version bump</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="15">
<Date>2009-02-07</Date>
<Version>3.2.1</Version>
<Comment>Version bump</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="14">
<Date>2009-01-08</Date>
<Version>3.2.0</Version>
<Comment>Version bump</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="13">
<Date>2008-12-02</Date>
<Version>3.1.6</Version>
<Comment>Version bump</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="12">
<Date>2008-10-27</Date>
<Version>3.1.5</Version>
<Comment>Version bump</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="11">
<Date>2008-10-05</Date>
<Version>3.1.3.1</Version>
<Comment>Fix dep</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="10">
<Date>2008-10-04</Date>
<Version>3.1.3.1</Version>
<Comment>Version bump</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="9">
<Date>2008-09-01</Date>
<Version>3.1.2</Version>
<Comment>Version bump</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="8">
<Date>2008-08-26</Date>
<Version>3.1.1.1</Version>
<Comment>Fixes the problem of undisplayed icons reported in #7669.</Comment>
<Name>Ozan Çağlayan</Name>
<Email>[email protected]</Email>
</Update>
<Update release="7">
<Date>2008-08-23</Date>
<Version>3.1.1.1</Version>
<Comment>Version bump</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="6" type="security">
<Date>2008-07-28</Date>
<Version>3.1.0.1</Version>
<Comment>Version bump</Comment>
<Name>Gökçen Eraslan</Name>
<Email>[email protected]</Email>
</Update>
<Update release="5">
<Date>2008-06-16</Date>
<Version>3.0.11</Version>
<Comment>Version bump</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="4">
<Date>2008-05-20</Date>
<Version>3.0.10</Version>
<Comment>Version bump</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="3">
<Date>2007-11-07</Date>
<Version>3.0.3</Version>
<Comment>Version bump</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
<Update release="2">
<Date>2007-10-29</Date>
<Version>3.0.2.1</Version>
<Comment>Version bump</Comment>
<Name>Ville Nieminen</Name>
<Email>[email protected]</Email>
</Update>
<Update release="1">
<Date>2007-09-11</Date>
<Version>3.0.0</Version>
<Comment>First release.</Comment>
<Name>Ertan Argüden</Name>
<Email>[email protected]</Email>
</Update>
</History>
<BuildHost>localhost</BuildHost>
<Distribution>Pardus</Distribution>
<DistributionRelease>2011</DistributionRelease>
<Architecture>x86_64</Architecture>
<InstalledSize>11406439</InstalledSize>
<PackageSize>3886942</PackageSize>
<PackageHash>ea307f22e6825f4170fbb9696c790e29d93bee40</PackageHash>
<PackageURI>filezilla-3.5.3-43-p11-x86_64.pisi</PackageURI>
<PackageFormat>1.2</PackageFormat>
<Source>
<Name>filezilla</Name>
<Homepage>http://filezilla-project.org/</Homepage>
<Packager>
<Name>Pardus ANKA Admins</Name>
<Email>[email protected]</Email>
</Packager>
</Source>
</Package>
<Package>
<Name>libvncserver</Name>
<Summary xml:lang="en">Library for creating VNC (Virtual Network Computing) servers</Summary>
<Summary xml:lang="tr">VNC sunucu oluşturmak için kütüphane</Summary>
<Summary xml:lang="pl">Biblioteka do łatwego implementowania serwera VNC</Summary>
<Description xml:lang="en">libvncserver provides a C library to create VNC servers.</Description>
<Description xml:lang="tr">VNC sunucu benzeri kendi VNC (Virtual Network Computing) sunucunuzu oluşturmak isterseniz gerekli kütüphane</Description>
<Description xml:lang="pl">Wieloplatformowa biblioteka C, pozwalającą na łatwą implementację trybu serwera lub klienta VNC (Virtual Network Computing) we własnym programie.</Description>
<IsA>app:console</IsA>
<PartOf>server.misc</PartOf>
<License>GPLv2</License>
<History>
<Update release="7">
<Date>2012-10-17</Date>
<Version>0.9.9</Version>
<Comment>Version bump</Comment>
<Name>Marcin Bojara</Name>
<Email>[email protected]</Email>
</Update>
<Update release="6">
<Date>2010-10-13</Date>
<Version>0.9.7</Version>
<Comment>Mass rebuild for Pardus 2011 Beta</Comment>
<Name>Gökçen Eraslan</Name>
<Email>[email protected]</Email>
</Update>
<Update release="5">
<Date>2010-08-25</Date>
<Version>0.9.7</Version>
<Comment>Split devel package.</Comment>
<Name>Fatih Aşıcı</Name>
<Email>[email protected]</Email>
</Update>
<Update release="4">
<Date>2009-04-29</Date>
<Version>0.9.7</Version>
<Comment>Stable update</Comment>
<Name>Ozan Çağlayan</Name>
<Email>[email protected]</Email>
</Update>
<Update release="3">
<Date>2008-01-06</Date>
<Version>0.9.1</Version>
<Comment>Stable update</Comment>
<Name>İsmail Dönmez</Name>
<Email>[email protected]</Email>
</Update>
<Update release="2">
<Date>2007-04-01</Date>
<Version>0.8.2</Version>
<Comment>Dep. fix</Comment>
<Name>S.Çağlar Onur</Name>
<Email>[email protected]</Email>
</Update>
<Update release="1">
<Date>2006-08-25</Date>
<Version>0.8.2</Version>
<Comment>First release.</Comment>
<Name>S.Çağlar Onur</Name>
<Email>[email protected]</Email>
</Update>
</History>
<BuildHost>localhost</BuildHost>
<Distribution>Pardus</Distribution>
<DistributionRelease>2011</DistributionRelease>
<Architecture>x86_64</Architecture>
<InstalledSize>398572</InstalledSize>
<PackageSize>149136</PackageSize>
<PackageHash>a5b7595172ef0c615666ed615e6a8fe7f94a2960</PackageHash>
<PackageURI>libvncserver-0.9.9-7-p11-x86_64.pisi</PackageURI>
<PackageFormat>1.2</PackageFormat>
<Source>
<Name>libvncserver</Name>
<Homepage>http://libvncserver.sourceforge.net/</Homepage>
<Packager>
<Name>Pardus ANKA Admins</Name>
<Email>[email protected]</Email>
</Packager>
</Source>
</Package>
<Package>
<Name>postgresql-pl</Name>
<Summary xml:lang="en">A powerful, open source relational database system</Summary>
<Summary xml:lang="tr">Güçlü bir açık kaynaklı ilişkisel veritabanı sistemi</Summary>
<Description xml:lang="en">PostgreSQL is a powerful, open source relational database system.</Description>
<Description xml:lang="tr">PostgreSQL, açık kaynak kodlu, güçlü bir ilişkisel veritabanıdır</Description>
<IsA>service</IsA>
<PartOf>server.database</PartOf>
<License>GPLv2</License>
<RuntimeDependencies>
<Dependency versionFrom="8.4">postgresql-lib</Dependency>
<Dependency>tcl</Dependency>
</RuntimeDependencies>
<History>
<Update release="30">
<Date>2012-10-04</Date>
<Version>9.2.0</Version>
<Comment>Version bump</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir</Email>
</Update>
<Update release="29" type="security">
<Date>2011-02-04</Date>
<Version>8.4.7</Version>
<Comment>Version bump to fix CVE-2010-4015 (#16690).</Comment>
<Name>H. İbrahim Güngör</Name>
<Email>[email protected]</Email>
</Update>
<Update release="28">
<Date>2010-10-13</Date>
<Version>8.4.5</Version>
<Comment>Mass rebuild for Pardus 2011 Beta</Comment>
<Name>Gökçen Eraslan</Name>
<Email>[email protected]</Email>
</Update>
<Update release="27" type="security">
<Date>2010-10-06</Date>
<Version>8.4.5</Version>
<Comment>Version bump to security bugfix release, CVE-2010-3433 (#14544).</Comment>
<Name>H. İbrahim Güngör</Name>
<Email>[email protected]</Email>
</Update>
<Update release="26" type="security">
<Date>2010-05-24</Date>
<Version>8.4.4</Version>
<Comment>- Update to fix multiple vulnerabilities. (CVE-2010-{1169,1170,1447,1975}, #13129)</Comment>
<Name>Eren Türkay</Name>
<Email>[email protected]</Email>
</Update>
<Update release="25">
<Date>2010-01-18</Date>
<Version>8.4.2</Version>
<Comment>- New branch</Comment>
<Name>Bahadır Kandemir</Name>
<Email>[email protected]</Email>
</Update>
<Update release="24" type="security">
<Date>2009-12-25</Date>
<Version>8.3.9</Version>
<Comment>- Protect against indirect security threats caused by index functions changing session-local state (CVE-2009-4136),
- Reject SSL certificates containing an embedded null byte in the common name (CN) field (CVE-2009-4034).</Comment>
<Name>Ozan Çağlayan</Name>
<Email>[email protected]</Email>
</Update>
<Update release="23" type="security">
<Date>2009-09-10</Date>
<Version>8.3.8</Version>
<Comment>Security update for multiple vulnerabilities, (Bug#11145)</Comment>
<Name>Taner Taş</Name>
<Email>[email protected]</Email>
</Update>
<Update release="22">
<Date>2009-04-27</Date>
<Version>8.3.7</Version>
<Comment>Stable update</Comment>
<Name>Taner Taş</Name>
<Email>[email protected]</Email>
</Update>
<Update release="21">
<Date>2009-04-26</Date>
<Version>8.1.17</Version>
<Comment>Move pg_config from server package to lib package, add missing mit-kerberos dependency to server.</Comment>
<Name>Ozan Çağlayan</Name>
<Email>[email protected]</Email>
</Update>
<Update release="20" type="security">
<Date>2009-03-18</Date>
<Version>8.1.17</Version>
<Comment>Stable update to fix Denial of Service (stack consumption) vulnerability, (CVE-2009-0922), (bug#9356).</Comment>
<Name>Pınar Yanardağ</Name>
<Email>[email protected]</Email>
</Update>
<Update release="19" type="security">
<Date>2008-01-07</Date>
<Version>8.1.11</Version>
<Comment>Stable update to fix CVE-2007-{4769,4772,6067,6600,6601}</Comment>
<Name>İsmail Dönmez</Name>
<Email>[email protected]</Email>
</Update>
<Update release="18">
<Date>2008-01-06</Date>
<Version>8.1.10</Version>
<Comment>Stable update</Comment>
<Name>İsmail Dönmez</Name>
<Email>[email protected]</Email>
</Update>
<Update release="17" type="security">
<Date>2007-06-27</Date>
<Version>8.1.9</Version>
<Comment>Disable dblink to fix CVE-2007-3278 and CVE-2007-32780</Comment>
<Name>İsmail Dönmez</Name>
<Email>[email protected]</Email>
</Update>
<Update release="16">
<Date>2007-05-23</Date>
<Version>8.1.9</Version>
<Comment>Updated Service script.</Comment>
<Name>Bahadır Kandemir</Name>
<Email>[email protected]</Email>
</Update>
<Update release="15" type="security">
<Date>2007-04-23</Date>