-
Notifications
You must be signed in to change notification settings - Fork 56
/
ChangeLog
1416 lines (994 loc) · 46.9 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
2003-01-21 12:47 mvogt
* po/: zh_CN.po, zh_HK.po, zh_TW.po: * some po updates from Anthony
Fok
2003-01-21 12:41 mvogt
* gtk/rgfetchprogress.cc: * progress bar uses the same font as the
rest of the window now
2003-01-21 12:28 mvogt
* TODO, common/rpackage.cc, common/rpackage.h,
gtk/rgconfigwindow.cc, gtk/rgmainwindow.cc, gtk/rgmainwindow.h,
gtk/rgwindow.cc, gtk/window_main.glade,
gtk/window_main.glade.strings, po/cat-id-tbl.c: * toolbar can now
be: pixmap, text, both, hide * some minor bugfixes
2003-01-21 11:03 svd
* gtk/rgwindow.cc: Fixed segfault in RGWindow::RGWindow on
gfree(filename)
2003-01-20 17:47 yeupou
* ChangeLog, po/fr.po: update french i18n
2003-01-20 14:40 svd
* common/rpackagecache.cc, common/rpackagelister.cc,
common/rpackagelister.h, gtk/gsynaptic.cc, gtk/rgmainwindow.cc,
gtk/rgmainwindow.h: Fixed behaviour when pkglist broken on
rpm-based systems
2003-01-20 13:44 mvogt
* po/: zh_CN.po, zh_HK.po, zh_TW.po: * updated po files
2003-01-20 13:28 svd
* common/: rpackagecache.cc, rpackagecache.h, rpackagelister.cc:
Fix segfault in operations with sourcelist on rpm-based systems
2003-01-20 13:24 svd
* gtk/rgmainwindow.cc: Allow use RGZvtInstallProgress for rpm
systems
2003-01-20 12:14 mvogt
* configure.in, po/cat-id-tbl.c, po/de.po, po/es.po, po/fr.po,
po/pt_BR.po, po/ru.po, po/tr.po, po/zh_CN.po, po/zh_HK.po,
po/zh_TW.po: * added libpango to configure.in test
2003-01-19 21:55 mvogt
* gtk/: rgfetchprogress.cc, rgfetchprogress.h: * fixed a small
resource leak with the new pango code
2003-01-19 21:40 mvogt
* gtk/: rgaboutpanel.cc, rgfetchprogress.cc, rgmainwindow.cc,
window_options.glade, window_options.glade.strings: * removed some
dead code from rgaboutpanel * converted some code from
gdk_draw_string to pango * fixed a typo (thanks Anthony Fok)
2003-01-17 23:55 mvogt
* gtk/: synaptic.glade, synaptic.glade.strings, synaptic.gladep: *
big synaptic.glade is replaced with multiple small glade files
2003-01-17 23:50 mvogt
* NEWS, common/rpackage.cc, common/rpackage.h, gtk/Makefile.am,
gtk/rgmainwindow.cc, gtk/rgsummarywindow.cc, gtk/rgwindow.cc,
gtk/window_about.glade, gtk/window_about.glade.strings,
gtk/window_about.gladep, gtk/window_fetch.glade,
gtk/window_fetch.glade.strings, gtk/window_fetch.gladep,
gtk/window_find.glade, gtk/window_find.glade.strings,
gtk/window_find.gladep, gtk/window_install_progress.glade,
gtk/window_install_progress.glade.strings,
gtk/window_install_progress.gladep, gtk/window_main.glade,
gtk/window_main.glade.strings, gtk/window_main.gladep,
gtk/window_options.glade, gtk/window_options.glade.strings,
gtk/window_options.gladep, gtk/window_procceed.glade,
gtk/window_procceed.glade.strings, gtk/window_procceed.gladep,
po/POTFILES.in, po/cat-id-tbl.c, po/de.po, po/es.po, po/fr.po,
po/pt_BR.po, po/tr.po, po/zh_CN.po, po/zh_HK.po, po/zh_TW.po: *
split up the glade file into multiple ones (should be nicer for the
translators) * fixed a resize bug in RGSummaryWindow
2003-01-15 15:16 svd
* po/ru.po: Updated russian translation
2003-01-13 12:41 mvogt
* po/README: * added README that explains some problems with glade
2003-01-12 23:19 yeupou
* ChangeLog, po/cat-id-tbl.c, po/de.po, po/es.po, po/fr.po,
po/pt_BR.po, po/ru.po, po/tr.po, po/zh_CN.po, po/zh_HK.po,
po/zh_TW.po: make update-po + update french strings
2003-01-10 23:33 mvogt
* configure.in, common/rpackagefilter.cc, gtk/rgfiltermanager.cc,
gtk/rgfiltermanager.h, gtk/rgfilterwindow.cc, gtk/rgfilterwindow.h,
gtk/rgmainwindow.cc, gtk/synaptic.glade,
gtk/synaptic.glade.strings, po/cat-id-tbl.c: * fixed some small
bugs * removed some dead code (was #if 0) left from pre glade days
2003-01-10 15:25 mvogt
* NEWS: * updated NEWS file
2003-01-10 15:21 mvogt
* README: * removed the commets about gksu for now
2003-01-10 15:19 mvogt
* data/synaptic.desktop, po/de.po, po/es.po, po/fr.po, po/pt_BR.po,
po/ru.po, po/tr.po, po/zh_CN.po, po/zh_HK.po, po/zh_TW.po: *
changed back to xsu as default way to do su, because gksu has some
flaws
2003-01-10 15:01 mvogt
* common/rpackagefilter.cc, po/cat-id-tbl.c, po/de.po, po/es.po,
po/fr.po, po/pt_BR.po, po/ru.po, po/tr.po, po/zh_CN.po,
po/zh_HK.po, po/zh_TW.po: * fixed a bug in rpackagefilter, now all
patternfilters are used, not only the first one :)
2003-01-09 22:34 mvogt
* po/ru.po: * updates to the russian translation
2003-01-09 18:20 mvogt
* gtk/synaptic.glade, gtk/synaptic.glade.strings,
gtk/synaptic.gladep, po/cat-id-tbl.c, po/de.po, po/es.po, po/fr.po,
po/pt_BR.po, po/ru.po, po/tr.po, po/zh_CN.po, po/zh_HK.po,
po/zh_TW.po: * updated turkish translation (thanks to Rail Aliev)
2003-01-09 05:18 mvogt
* gtk/rgfindwindow.cc: * fixed a minor bug in findwindow
2003-01-08 20:16 mvogt
* NEWS, TODO, po/cat-id-tbl.c, po/de.po, po/es.po, po/fr.po,
po/pt_BR.po, po/tr.po, po/zh_CN.po, po/zh_HK.po, po/zh_TW.po: *
small documentation updates
2003-01-08 19:39 mvogt
* gtk/: rgfindwindow.cc, rgfindwindow.h, rgmainwindow.cc,
synaptic.glade: * small fixes for the new search windo
2003-01-08 16:30 mvogt
* configure.in, common/i18n.h, gtk/synaptic.glade, po/ru.po: *
added russian translation
2003-01-08 12:48 mvogt
* po/: cat-id-tbl.c, de.po, es.po, fr.po, pt_BR.po, tr.po,
zh_CN.po, zh_HK.po, zh_TW.po: * some minor corrections (missing "
at end of line etc)
2003-01-08 03:32 mvogt
* config.h.in, configure.in, gtk/rgmainwindow.cc, po/cat-id-tbl.c:
* removed --with-dwww-help, this is autodetected at runtime
2003-01-08 03:27 mvogt
* common/rpackagefilter.h, gtk/Makefile.am, gtk/rgfindwindow.cc,
gtk/rgfindwindow.h, gtk/rgmainwindow.cc, gtk/rgmainwindow.h,
gtk/rgwindow.cc, gtk/synaptic.glade, po/cat-id-tbl.c: * added find
menu for easy searching for name/description
2003-01-07 22:33 yeupou
* ChangeLog, po/fr.po: update french i18n strings
2003-01-07 14:39 mvogt
* README, config.h.in, configure.in, common/rpackagefilter.cc,
data/synaptic.desktop, gtk/Makefile.am, gtk/rgfiltereditor.cc,
gtk/rgfiltermanager.cc, gtk/rgmainwindow.cc, gtk/rgmainwindow.h,
gtk/rgsummarywindow.cc, gtk/synaptic.glade, po/cat-id-tbl.c,
po/de.po, po/es.po, po/fr.po, po/pt_BR.po, po/tr.po, po/zh_CN.po,
po/zh_HK.po, po/zh_TW.po: * added (crude) purge and search pkg
description support * added --with-dwww-help configure switch
(enables Pkg Help button) * some resizing fixes
2003-01-04 17:08 mvogt
* NEWS, TODO, configure.in, common/raptoptions.h,
common/rpackage.cc, common/rpackage.h, common/rpackagefilter.cc,
common/rpackagefilter.h, common/rpackagelister.cc, gtk/Makefile.am,
gtk/gsynaptic.cc, gtk/rgfiltereditor.cc, gtk/rgfiltereditor.h,
gtk/rgmainwindow.cc, gtk/rgmainwindow.h, gtk/synaptic.glade,
po/POTFILES.in, po/cat-id-tbl.c, po/de.po, po/es.po, po/fr.po,
po/pt_BR.po, po/tr.po, po/zh_CN.po, po/zh_HK.po, po/zh_TW.po: *
added residual config filter * added chinese translation
2002-12-27 13:28 mvogt
* gtk/rgmainwindow.cc: * fixed a problem with the new filters menu
2002-12-27 02:37 mvogt
* NEWS, README, README.scripting, TODO, common/rpackage.cc,
common/rpackage.h, gtk/rgmainwindow.cc, gtk/synaptic.glade,
po/cat-id-tbl.c, po/de.po, po/es.po, po/fr.po, po/pt_BR.po,
po/tr.po: * small gui + documentation updates
2002-12-26 23:20 mvogt
* TODO, gtk/rgaboutpanel.cc, gtk/rgmainwindow.cc,
gtk/rgmainwindow.h, gtk/synaptic.glade: * added filters menu
2002-12-20 00:48 mvogt
* TODO, common/rpackage.h, common/rpackagefilter.cc,
common/rpackagefilter.h, gtk/rgaboutpanel.cc,
gtk/rgfiltereditor.cc, gtk/rgwindow.cc, gtk/rgwindow.h,
gtk/synaptic.glade, pixmaps/Makefile.am, po/cat-id-tbl.c, po/de.po,
po/es.po, po/fr.po, po/pt_BR.po, po/tr.po: * some more filter like
depends on, reverse depends on, conflicts work now
2002-12-17 19:46 mvogt
* gtk/: rgmainwindow.cc, synaptic.glade: * a fix for _depListL
handling
2002-12-16 16:11 mvogt
* TODO, gtk/rgmainwindow.cc, gtk/rgmainwindow.h,
gtk/synaptic.glade: * save windows size and vpaned position between
sessions * (re)added tooltips to all buttons (there is a bug in
libglade2 for toolbar buttons, a patch to the maintainer is
submited)
2002-12-15 11:36 mvogt
* common/rpackage.cc, gtk/Makefile.am, gtk/rgmainwindow.cc,
gtk/synaptic.glade, pixmaps/Makefile.am,
pixmaps/distupgrade_small.xpm, pixmaps/proceed_small.xpm,
pixmaps/update_small.xpm, pixmaps/upgrade_small.xpm: * more fixes
for the new gui. should be complette now
2002-12-13 22:38 mvogt
* gtk/rgmainwindow.cc, gtk/rgmainwindow.h, gtk/rgwindow.cc,
gtk/synaptic.glade, po/cat-id-tbl.c: * more fixes for the new gui
2002-12-12 18:37 mvogt
* Makefile.am, acconfig.h, config.h.in, configure.in,
common/rrepositoryfile.cc, common/rrepositoryfile.h,
common/rsources.cc, gtk/Makefile.am, gtk/rgmainwindow.cc,
gtk/rgmainwindow.h, gtk/rgsourceswindow.cc, gtk/rgsourceswindow.h,
gtk/rgsrcwindow.cc, gtk/rgwindow.cc, gtk/rgwindow.h,
gtk/synaptic.glade, gtk/synaptic.glade.strings,
gtk/synaptic.gladep, po/cat-id-tbl.c: * switched to the new gui
(should basicly work, but lots of rough edges) * removed unused
files
2002-12-06 09:16 mvogt
* NEWS, TODO, configure.in, common/rpackagelister.cc,
common/rpackagelister.h, gtk/Makefile.am, gtk/galertpanel.c,
gtk/rgfetchprogress.cc, gtk/rgfetchprogress.h,
gtk/rgfiltermanager.cc, gtk/rgmainwindow.cc, gtk/rgmainwindow.h,
gtk/rgsrcwindow.cc, gtk/rgsummarywindow.cc, gtk/rgsummarywindow.h,
gtk/rgvendorswindow.cc, gtk/rgzvtinstallprogress.cc,
gtk/rgzvtinstallprogress.h, pixmaps/synaptic_mini.xpm,
po/cat-id-tbl.c: * complette port to gtk2
2002-12-03 12:13 mvogt
* gtk/rgzvtinstallprogress.cc: * always set TERM to xterm
2002-11-29 21:08 mvogt
* pixmaps/Makefile.am, po/de.po, po/es.po, po/fr.po, po/pt_BR.po,
po/tr.po: * minor makefile fix
2002-11-29 13:15 mvogt
* gtk/rgmainwindow.cc, man/Makefile.am: * rgmainwindow.cc: small
setIcon() fix * man/Makefile.am: add french and turkish man page to
tgz
2002-11-29 13:02 mvogt
* NEWS: * credits
2002-11-29 03:35 mvogt
* Makefile.am, NEWS, README, configure.in, data/Makefile.am,
data/synaptic.desktop, gtk/rgmainwindow.cc, gtk/rgmainwindow.h,
pixmaps/Makefile.am, pixmaps/synaptic_48x48.png,
pixmaps/synaptic_mini.xpm, po/de.po, po/es.po, po/fr.po,
po/pt_BR.po, po/tr.po: * some icons * a desktop entry for gnome
(uses xsu for now) * a wm icon (should work for both gnome/kde)
2002-11-28 10:54 mvogt
* common/rpackagefilter.cc, gtk/rgfetchprogress.cc,
gtk/rgfiltereditor.cc, gtk/rgfiltermanager.cc, gtk/rgmainwindow.cc,
gtk/rgsrcwindow.cc, gtk/rgsummarywindow.cc, gtk/rgvendorswindow.cc,
po/cat-id-tbl.c: * applied a i18n patch from Rail Aliev (thanks!)
2002-11-25 23:26 mvogt
* man/synaptic.tr.8: * added turkish man-page (thanks to Rail
Aliev)
2002-11-25 23:06 mvogt
* configure.in, po/tr.po: * added turkish translation (thanks to
Rail Aliev)
2002-11-25 14:40 mvogt
* gtk/rgfiltereditor.h: * fixed a filter bug in rgfiltereditor
(thanks to Sviatoslav Sviridov)
2002-11-23 19:19 mvogt
* gtk/gsynaptic.cc: * commited setlocale->gtk_set_locale() patch
from Sviatoslav Sviridou (thanks!)
2002-11-19 17:34 mvogt
* man/Makefile.am: * added Makefile.am
2002-11-19 17:26 yeupou
* ChangeLog, man/synaptic.fr.8: Add french man page
2002-11-12 12:53 mvogt
* common/raptoptions.cc: * improved the popen() call to deborphan a
bit
2002-11-10 15:03 mvogt
* NEWS, common/rpackagelister.cc, gtk/rgsrcwindow.h,
gtk/rgvendorswindow.h, po/de.po, po/es.po, po/fr.po, po/pt_BR.po: *
minor build fixes (for make distcheck)
2002-11-09 14:09 mvogt
* configure.in, common/rpackage.cc, common/rpackagelister.cc: *
fixed a nasty memory leak in openCache()
2002-11-09 01:45 mvogt
* NEWS, TODO, common/raptoptions.cc, common/raptoptions.h,
common/rpackage.cc, common/rpackage.h, common/rpackagefilter.cc,
common/rpackagefilter.h, common/rpackagelister.cc,
gtk/rgfiltereditor.cc, gtk/rgfiltereditor.h, gtk/rgmainwindow.cc,
gtk/rgsummarywindow.cc, gtk/rgsummarywindow.h, po/cat-id-tbl.c,
po/de.po, po/es.po, po/fr.po, po/pt_BR.po: * reworked the
rgsummarywindow dialog, added a gtktree for the "to be removed,
to be installed" etc packages * added deborphan functionalty
(debian only)
2002-11-06 16:40 mvogt
* Makefile.am, TODO, configure.in: * added the makefile for the
man-page
2002-11-04 00:59 mvogt
* gtk/: gsynaptic.cc, rgmainwindow.cc: * added some more
translateable strings
2002-11-04 00:51 mvogt
* TODO, configure.in, common/rconfiguration.cc, common/rpackage.cc,
common/rpackage.h, common/rpackagefilter.cc,
common/rpackagefilter.h, common/rpackagelister.cc,
gtk/rgconfigwindow.h, gtk/rgfiltereditor.cc,
gtk/rgfiltermanager.cc, gtk/rgmainwindow.cc, gtk/rgmainwindow.h,
pixmaps/holdM.xpm, po/cat-id-tbl.c: * cleanups
2002-11-02 22:11 yeupou
* po/: fr.po, fr.po: fix minor typo
2002-11-02 21:57 yeupou
* ChangeLog, po/fr.po: fix typo
2002-11-02 21:51 yeupou
* ChangeLog, po/de.po, po/es.po, po/fr.po, po/pt_BR.po: upgrade
french i18n (typo + new stings)
2002-10-30 11:55 mvogt
* gtk/rgconfigwindow.cc: * removed another gtk_set_usize() :)
2002-10-28 14:41 mvogt
* gtk/rgmainwindow.cc: * and another small ui thing
2002-10-28 14:37 mvogt
* gtk/rgmainwindow.cc, man/synaptic.8: * another minor resizing fix
2002-10-28 14:11 mvogt
* TODO, gtk/rgmainwindow.cc: * fixed a nasty UI resizing problem *
small improvement for the GtkCList
2002-10-28 12:47 mvogt
* NEWS, TODO, configure.in, gtk/rgconfigwindow.cc,
gtk/rgmainwindow.cc, gtk/rgmainwindow.h, gtk/synapticinterface.cc,
man/synaptic.8, po/cat-id-tbl.c, po/de.po, po/es.po, po/fr.po,
po/pt_BR.po: * added a manpage * added ColorStatus in the main
GtkCList * added option to switch colors on/off
2002-10-27 10:56 mvogt
* gtk/rgsummarywindow.cc: * small ui improvements
2002-10-09 18:27 mvogt
* TODO, gtk/rgmainwindow.cc: * minor documentation updates
2002-10-09 10:18 mvogt
* gtk/rgmainwindow.cc: * some more usize fixes (still far from
perfect)
2002-10-09 01:55 mvogt
* acconfig.h, config.h.in, configure.in, gtk/Makefile.am,
gtk/rgfetchprogress.cc, gtk/rgmainwindow.cc, po/de.po, po/es.po,
po/fr.po, po/pt_BR.po: * gtk/Makefile.am should work now with both
automake1.4 and automake1.6 * removed --new-gui (never quite there
anyway)
2002-10-09 00:43 mvogt
* po/: de.po, fr.po: * fixed a bug for 8bit charackters
2002-10-09 00:30 mvogt
* po/de.po: * added a german "umlaut"
2002-10-06 17:03 mvogt
* configure.in: * fixed a bug in swig test
2002-10-04 03:12 niemeyer
* gtk/: Makefile.am, rgmainwindow.cc, rgmainwindow.h,
synapticinterface.cc: - Do not expose internal interface of
RGMainWindow. - Minor changes for automake 1.6 conformance.
2002-10-04 02:40 niemeyer
* README.scripting: Minor typo fixes.
2002-10-03 22:52 mvogt
* Makefile.am, NEWS, po/de.po, po/es.po, po/fr.po, po/pt_BR.po: *
minor cleanups * documentation update
2002-10-03 21:56 mvogt
* README.scripting, gtk/synapticinterface.cc,
gtk/synapticinterface.h: * some more code for the scripting
interface * added a basic README for the scripting stuff along with
a simple example
2002-10-03 18:39 mvogt
* TODO, gtk/Makefile.am, po/de.po, po/es.po, po/fr.po, po/pt_BR.po:
* fixed the makefile for building the python module
2002-10-03 15:28 mvogt
* macros/Makefile.am: * python.m4 file is removed from
macros/Makefile.am (it never worked)
2002-10-03 15:25 mvogt
* Makefile.am, NEWS, TODO, acinclude.m4, configure.in,
gtk/Makefile.am, gtk/rgmainwindow.h, gtk/synapticinterface.cc,
gtk/synapticinterface.h, gtk/synapticinterface.i,
macros/Makefile.am, macros/Makefile.in: * added python interface
for synaptic
2002-10-02 15:29 mvogt
* NEWS, gtk/rgmainwindow.cc, gtk/rgmainwindow.h,
gtk/rgvendorswindow.cc: * cleanups * removed _tempKludge as it's
not needed with the current code * reworked "installSelected"
Suggestions/Recommandation
2002-10-02 11:34 mvogt
* README, gtk/gsynaptic.cc, gtk/rgmainwindow.cc: * removed some
debug messages * changed the names of the command line arguments
(initialFilter -> initial-filter / filterFile -> filter-file) to
match it with apt
2002-10-01 16:18 mvogt
* README: * added some info about the multiple selection feature
2002-10-01 15:53 mvogt
* NEWS, TODO, gtk/gsynaptic.cc, gtk/rgmainwindow.cc,
gtk/rgmainwindow.h, po/cat-id-tbl.c: * multiple selection of
packages is possible now (use SHIFT/CTRL in the clist)
2002-10-01 13:41 mvogt
* gtk/rgaboutpanel.cc: * added Gustavo to authors
2002-09-30 22:48 mvogt
* NEWS, README, common/rconfiguration.cc, gtk/rgmainwindow.cc,
gtk/rgmainwindow.h: * cosmetic stuff * fixed a bug in save/restore
state ("synaptic::" -> "Synaptic::", I wonder why this ever
worked (: ) * updated the README file. It now point to the savannah
page
2002-09-30 16:57 mvogt
* common/rconfiguration.cc, gtk/gsynaptic.cc: * fixed warnings if
files in /root/.synaptic are not there (the files are just
created)
2002-09-30 15:44 mvogt
* NEWS, README, TODO, configure.in, common/raptoptions.cc,
common/rconfiguration.cc, common/rpackage.h,
common/rpackagelister.cc, common/rpackagelister.h,
gtk/gsynaptic.cc, gtk/rgmainwindow.cc, gtk/rgmainwindow.h: *
reworked the "new" packages in list detection (much saner now) *
added some commandline options (alternative filterFile,
inititalFilter)
2002-09-27 10:54 mvogt
* configure.in, common/raptoptions.cc: * version is now 0.24.1 *
the non-existance of /etc/apt/preferences is now ignored
2002-09-27 01:05 mvogt
* Makefile.am, configure.in, common/raptoptions.cc: * two small
fixes (thanks to Richard Bos)
2002-09-26 16:27 mvogt
* common/raptoptions.h, po/de.po, po/es.po, po/fr.po, po/pt_BR.po:
* fixed a g++-3.2 problem
2002-09-26 16:06 mvogt
* gtk/rgsrcwindow.cc, po/de.po, po/es.po, po/fr.po, po/pt_BR.po: *
changed "none" to "no vendor" in rgsrcwindow option menu
2002-09-26 15:37 mvogt
* README, gtk/rgmainwindow.cc, pixmaps/Makefile.am,
po/cat-id-tbl.c: * keybinding for "update" is CTRL-u * added the
new pixmaps to extra_dist in pixmaps/Makefile.am
2002-09-26 15:00 niemeyer
* AUTHORS, NEWS, gtk/rgvendorswindow.cc, gtk/rgvendorswindow.h: -
Oops, forgot to add vendors.list specific files. - Included myself
in the AUTHORS file. - 2 new entries for NEWS file.
2002-09-25 22:20 niemeyer
* common/rsources.cc, common/rsources.h, gtk/Makefile.am,
gtk/rgsrcwindow.cc, gtk/rgsrcwindow.h: - Implemented full vendors
support. - Fixed some minor bugs. - Reworked sources list
interface (again).
2002-09-25 16:09 niemeyer
* gtk/: rgsrcwindow.cc, rgsrcwindow.h: Reworked sources window.
2002-09-25 14:54 niemeyer
* gtk/galertpanel.c: Fixed warning issued when first parameter of
gtk_run_alert_panel() was NULL (e.g. when running as a non-root
user).
2002-09-25 14:48 niemeyer
* gtk/rgmainwindow.cc: Rolling back text changes introduced in
revision 1.37.
2002-09-25 11:43 mvogt
* TODO: * some radom ideas
2002-09-24 13:53 mvogt
* gtk/rgmainwindow.cc, po/cat-id-tbl.c: * minor correction for the
new/hold icons
2002-09-24 13:48 mvogt
* gtk/rgmainwindow.cc, pixmaps/holdM.xpm, pixmaps/newM.xpm: * "new"
and "hold" packages have icons now * added pixmaps/newM.xpm and
pixmaps/holdM.xpm (ugly!)
2002-09-24 12:29 mvogt
* gtk/galertpanel.c: * gtk/galertpanel.c: make the dialog transtent
to the parent
2002-09-24 12:13 mvogt
* NEWS, acconfig.h, config.h.in, configure.in, gtk/rgmainwindow.cc:
* hold feature is enabled with "--with-pkg-hold" and the #define is
changed to SYNAPTIC_PKG_HOLD. so the meaning is clearer IMHO.
2002-09-24 11:52 mvogt
* INSTALL, NEWS, README, acconfig.h, config.h.in, configure.in,
gtk/Makefile.am, gtk/rgmainwindow.cc, wings/Makefile.am: * WINGs
version no longer build by default and renamed to "wsynaptic" *
Gtk+ version renamed to "synaptic" * added configure switch
"--with-hold" that enables a "hold" package feature * some
documentation updates regarding the changes to configure
2002-09-24 00:47 mvogt
* common/rinstallprogress.cc, common/rpackagelister.cc,
gtk/rgzvtinstallprogress.cc, gtk/rgzvtinstallprogress.h,
po/cat-id-tbl.c: * keep RGZvtInstallProgress window open if
something goes wrong with the installation so that the user can
inspect it
2002-09-23 23:49 niemeyer
* common/: indexcopy.cc, rcdscanner.h, rconfiguration.cc,
rconfiguration.h, rpackagefilter.h, rpackagelister.cc: Minor
changes fixing compilation with GCC 3.2.
2002-09-19 23:41 mvogt
* gtk/rgfetchprogress.cc, po/cat-id-tbl.c: * fixed a memory leask
in RGFetchProgress::refreshTable()
2002-09-19 11:37 mvogt
* gtk/rgmainwindow.cc: * minor text changes (cosmetic)
2002-09-19 00:48 mvogt
* common/rpackage.cc: * change permissions of the updateed
/etc/apt/preferences to 644
2002-09-06 20:59 mvogt
* gtk/rgsrcwindow.cc, po/cat-id-tbl.c: * minor fix for the dialog
2002-09-05 23:26 niemeyer
* common/rsources.cc, common/rsources.h, gtk/rgsrcwindow.cc,
gtk/rgsrcwindow.h: Added basic vendor support.
2002-09-05 17:07 niemeyer
* gtk/rgmainwindow.cc: - Minor text changes. - Reordered entries
in dependency combo box.
2002-09-05 02:32 mvogt
* gtk/rgmainwindow.cc, po/cat-id-tbl.c: * more cosmetic fixes for
the hold feature
2002-09-05 00:14 mvogt
* gtk/rgmainwindow.cc, po/cat-id-tbl.c: * the _holdB button has a
new home, I hope it looks better now
2002-09-05 00:06 mvogt
* gtk/rgmainwindow.cc: minor cleanups
2002-09-04 23:46 mvogt
* common/raptoptions.h, common/rpackagefilter.cc,
common/rpackagefilter.h, common/rpackagelister.cc,
gtk/rgmainwindow.cc, po/cat-id-tbl.c: * fixed some Hold related
bugs
2002-08-29 00:21 mvogt
* gtk/rgmainwindow.cc: * fixed a bug in "Dependecies of available
package"
2002-08-29 00:06 mvogt
* NEWS: * new for version 0.24
2002-08-28 22:38 mvogt
* gtk/rgfilterwindow.cc, po/cat-id-tbl.c: * changed order of
buttons in rgfilterwindow
2002-08-28 22:26 mvogt
* gtk/rgmainwindow.cc: * removed a debug statement
2002-08-28 22:21 mvogt
* common/raptoptions.cc, common/raptoptions.h, common/rpackage.cc,
common/rpackage.h, common/rpackagefilter.cc,
common/rpackagefilter.h, common/rpackagelister.cc,
gtk/gsynaptic.cc, gtk/rgfiltereditor.cc, gtk/rgfiltereditor.h,
gtk/rgmainwindow.cc, po/cat-id-tbl.c, po/de.po, po/es.po, po/fr.po,
po/pt_BR.po: * implemented "Hold" feature using apt "pin"
2002-08-26 14:34 mvogt
* common/rconfiguration.cc, gtk/rgmainwindow.cc, po/cat-id-tbl.c: *
windowsize is now saved/restored
2002-08-26 14:03 mvogt
* TODO, configure.in, common/raptoptions.cc, common/raptoptions.h,
common/rconfiguration.cc, common/rconfiguration.h,
common/rpackage.h, gtk/rgmainwindow.cc, gtk/rgmainwindow.h,
po/cat-id-tbl.c: * raptoptions is now persistent and saves/restores
the "Locked" and "New" Packages * "New" Packages are saved until
the next succesfull update * "Hold" is enabled in GUI, but still
not working. It's enabled for testing the raptoptions
store/restore functions
2002-08-25 13:32 mvogt
* po/: POTFILES.in, de.po, es.po, fr.po, pt_BR.po: * rgsrcwindow is
now in POTFILES
2002-08-24 17:35 mvogt
* TODO: * nothing really
2002-08-24 13:17 mvogt
* gtk/: rgfiltermanager.cc, rgfiltermanager.h, rgfilterwindow.cc,
rgfilterwindow.h, rgwindow.cc: * fixed a bug in delete-event of
rgfiltermanager/rgfilterwindow
2002-08-23 20:08 mvogt
* TODO, common/rpackagelister.cc, gtk/rgfiltereditor.cc,
gtk/rgfiltermanager.cc, gtk/rgfiltermanager.h,
gtk/rgfilterwindow.cc, gtk/rgmainwindow.cc: * trying to fix a bug
in rgfiltermanager (unsuccessfull so far)
2002-08-23 15:12 mvogt
* common/rpackage.cc, gtk/rgsrcwindow.cc: * -Wall cleanups
2002-08-23 13:40 mvogt
* gtk/rgsrcwindow.cc: * cleanups/ui improvements for the GTK_CLIST
2002-08-22 22:03 mvogt
* common/: raptoptions.h, rsources.h: * g++-3.0 fixes
2002-08-22 18:18 mvogt
* NEWS, TODO: * documentation updates
2002-08-22 13:57 mvogt
* common/rsources.cc, common/rsources.h, gtk/rgsrcwindow.cc,
gtk/rgsrcwindow.h: * cleaned up rsource.{cc,h} it now uses a STL
list * small ui improvement for rgsrcwindow.cc
2002-08-21 02:59 mvogt
* common/rsources.cc: * added a FIXME for the rsource class. I will
rewrite it with a STL list instead of the crappy (and buggy)
hand-coded one
2002-08-20 21:20 niemeyer
* common/rsources.cc, common/rsources.h, gtk/rgsrcwindow.cc: -
Added rpm/rpm-src support in repositories dialog - Fixed bug which
was crashing repository updates (s/delete/delete []/).
2002-08-20 01:03 mvogt
* common/rsources.cc, gtk/rgmainwindow.cc, gtk/rgsrcwindow.cc: *
some bugfixes in the new edit sources.list stuff
2002-08-20 00:33 mvogt
* NEWS, configure.in, common/Makefile.am, common/rpackage.cc,
common/rsources.cc, common/rsources.h, gtk/Makefile.am,
gtk/rgmainwindow.cc, gtk/rgsourceswindow.cc, gtk/rgsourceswindow.h,
gtk/rgsrcwindow.cc, gtk/rgsrcwindow.h, po/cat-id-tbl.c: * added
sourceslist dialog (ported from deity)
2002-07-27 16:07 mvogt
* common/Makefile.am, po/de.po, po/es.po, po/fr.po, po/pt_BR.po: *
ups, bug in common/Makefile.am
2002-07-27 15:57 mvogt
* configure.in, common/Makefile.am, common/rpackage.cc,
common/rpackagelister.cc, gtk/rgmainwindow.cc, gtk/rgmainwindow.h,
gtk/rgzvtinstallprogress.cc: * some work on the new held feature,
but unfinished, because there are some problems. I think I will
give the apt Pin feature a try
2002-07-27 05:45 mvogt
* README, TODO, gtk/rgmainwindow.cc: * added CTRL-q keybinding to
quit and documented it * some updates to the TODO file
2002-07-27 05:27 mvogt
* gtk/rgconfigwindow.cc: * no real changes
2002-07-27 05:25 mvogt
* gtk/: rgconfigwindow.cc, rgzvtinstallprogress.cc: * the state of
"closeZvtOnFinish" is now saved
2002-07-27 01:33 mvogt
* gtk/: rgzvtinstallprogress.cc, rgzvtinstallprogress.h: * more
fixes to rgzvtinstallprogress
2002-07-27 01:17 mvogt
* common/rinstallprogress.cc, common/rinstallprogress.h,
gtk/rgconfigwindow.cc, gtk/rgdummyinstallprogress.h,
gtk/rgmainwindow.cc, gtk/rgzvtinstallprogress.cc,
gtk/rgzvtinstallprogress.h, po/cat-id-tbl.c: * improved the
tgzvtinstallwindow
2002-07-26 03:33 mvogt
* common/indexcopy.cc, gtk/rgzvtinstallprogress.cc,
wings/rwaboutpanel.h, wings/rwconfigwindow.cc,
wings/rwconfigwindow.h, wings/rwfetchprogress.cc,
wings/rwfiltereditor.cc, wings/rwfiltermanager.cc,
wings/rwfiltermanager.h, wings/rwinstallprogress.cc,
wings/rwinstallprogress.h, wings/rwmainwindow.cc,
wings/rwmainwindow.h, wings/rwsourceswindow.h,
wings/rwsummarywindow.h, wings/rwwindow.h: * more work to make
synaptic g++-3.0 and "-Wall" clean
2002-07-25 22:47 mvogt
* configure.in, common/indexcopy.cc, common/rconfiguration.cc,
common/rinstallprogress.cc, common/rinstallprogress.h,
common/rpackage.cc, common/rpackagecache.cc,
common/rpackagecache.h, common/rpackagefilter.cc,
common/rpackagelister.cc, gtk/gsynaptic.cc, gtk/rgmainwindow.cc,
po/cat-id-tbl.c, po/de.po, po/es.po, po/fr.po, po/pt_BR.po,
wings/Makefile.am, wings/synaptic.cc: * applied a APT-RPM patch
from Gustavo Niemeyer <[email protected]> * increased version
to 0.23
2002-07-24 22:19 mvogt
* configure.in: * bumped version to 0.22
2002-07-24 20:22 mvogt
* NEWS, gtk/rgfiltermanager.cc: * fixed a bug in the
rgfiltermanager
2002-07-24 11:31 mvogt
* common/rcdscanner.cc, common/rpackagefilter.cc,
gtk/rgzvtinstallprogress.cc: * made synaptic g++-3.0 clean (again)
2002-07-23 16:42 mvogt
* TODO, gtk/rgmainwindow.cc: * cosmetic change in rgmainwindow
2002-07-23 11:32 mvogt
* NEWS, TODO, configure.in, common/rcdscanner.cc,
common/rpackage.cc, common/rpackagecache.cc,
common/rpackagefilter.cc, common/rpackagefilter.h,
common/rpackagelister.cc, common/rpackagelister.h,
gtk/rgaboutpanel.h, gtk/rgconfigwindow.cc, gtk/rgconfigwindow.h,
gtk/rgfetchprogress.cc, gtk/rgfiltereditor.cc,
gtk/rgfiltermanager.cc, gtk/rgfiltermanager.h,
gtk/rginstallprogress.cc, gtk/rgmainwindow.cc, gtk/rgmainwindow.h,
gtk/rgwindow.h, gtk/rgzvtinstallprogress.cc, po/de.po, po/es.po,
po/fr.po, po/pt_BR.po: * increased version to 0.22pre1 * made
synaptic (mostly) -Wall clean * fixed bugs in the new
"Recommends/Suggests" menu
2002-07-22 14:24 mvogt
* TODO, common/rpackage.cc, common/rpackage.h, gtk/rgmainwindow.cc,
gtk/rgmainwindow.h, po/cat-id-tbl.c: * fixed suggests/recommends
tab * added new "Dependencies of available package" * added
"install recommended", "install suggested", "install selected"
commands
2002-07-19 13:18 mvogt
* README, configure.in: * bumped version to 0.21 * added a small
section about filters in the README
2002-07-19 13:13 mvogt
* README, TODO: * better documentation, more TODO items
2002-07-19 01:56 mvogt
* common/rpackagelister.cc, gtk/rgfiltermanager.cc: * fixed a
segfault in rgfiltermanager.cc
2002-07-17 12:49 mvogt
* po/de.po, po/es.po, po/fr.po, po/pt_BR.po,
wings/rwfetchprogress.cc: * another cosmetic fix in rwfetchprogress
2002-07-17 12:22 mvogt
* gtk/rgsummarywindow.cc: * cosemtic fix for rgsummarywindow (left
align a label)
2002-07-16 15:30 mvogt
* po/de.po, po/es.po, po/fr.po, po/pt_BR.po,
wings/rwfetchprogress.cc: * cosmetic change in
wings/rwfetchprogress.cc
2002-07-16 14:59 mvogt
* configure.in, po/de.po, po/es.po, po/fr.po, po/pt_BR.po: *
version is now 0.20 * no real changes since 0.20pre8, I think it's
ready now!
2002-07-15 13:41 mvogt
* gtk/rgfetchprogress.cc, po/de.po, po/es.po, po/fr.po,
po/pt_BR.po: * cosmetic change in rgfetchprogress (label now left
alligned)
2002-07-15 00:06 mvogt
* TODO: * minor todo update
2002-07-15 00:05 mvogt
* INSTALL, README, TODO: * more documentation
2002-07-14 23:52 mvogt
* configure.in: * no real change
2002-07-14 23:49 mvogt
* NEWS, README: * added some documentation in preparation of the
0.20 version
2002-07-14 23:41 mvogt
* README, gtk/rgmainwindow.cc: * added some keyboard shortcuts *
documented keyboard shortcuts in README * _statusL is now left
allignent
2002-07-14 16:27 mvogt
* gtk/rgfetchprogress.cc: * fixed minor bug in rgfetchprogress
2002-07-14 12:47 mvogt
* common/rinstallprogress.cc, common/rinstallprogress.h,
gtk/rgzvtinstallprogress.cc: * added my copyright on some files I
worked on