-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathChangeLog-20020212
2587 lines (1707 loc) · 78.7 KB
/
ChangeLog-20020212
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
2002-02-12 Alfons Hoogervorst <[email protected]>
reviewed by: Mark McLoughlin <[email protected]>
* configure.in: add -lz to png check.
2002-02-12 Gediminas Paulauskas <[email protected]>
* configure.in: removed GNOME_COMMON_INIT,
GNOME_PLATFORM_GNOME_2 -- obsolete.
GNOME_COMPILE_WARNINGS does not take arguments.
* TRANSLATABLE_FILES: removed, intltool handles all of them.
2002-02-11 Mark McLoughlin <[email protected]>
* configure.in: Version 1.5.8
* configure.in: update required versions to
recent versions. Check version of gtk-doc.
2002-02-11 Mark McLoughlin <[email protected]>
* Makefile.am: add man directory.
* configure.in: remove gnome-terminal.
2002-02-11 Mark McLoughlin <[email protected]>
* Makefile.am: (SUBDIRS): remove gnome-terminal. See
the profterm module for the Gnome 2.0 terminal.
2002-02-11 Mark McLoughlin <[email protected]>
* Netscape.desktop.in: just point at netscape. We don't
ship gnome-moz-remote anymore.
2002-02-10 John Fleck <[email protected]>
* applets/gen_util/help/C/mailcheck:
* added mailcheck-C.omf, legal.xml
* removed mailcheck.sgml, mailcheck_applet.sgml,
mailcheck_applet-C.omf
modified:
* configure.in, applets/gen_util/help/C/Makefile.am,
mailcheck.xml, Makefile.am
adding build stuff for mailcheck docs
2002-02-11 Jorn Baayen <[email protected]>
* applets/gen_util/pager.c:
* applets/gen_util/tasklist.c: replace the "pressed" signal on the Done
buttons in the preference dialogs with the "clicked" signal. Fixes an
odd bug where the button would be pressed on hover the next time you
opened the dialog.
2002-02-11 Kjartan Maraas <[email protected]>
* man/*: Added man pages from Christian Marillat.
* configure.in: Create Makefile in man/
2002-02-10 John Fleck <[email protected]>
* applets/gen_util/help/C/clock/clock.xml, clock/figures/*.png
update figures and text of clock applet
2002-02-09 John Fleck <[email protected]>
* configure.in
* applets/gen_util/help/Makefile.am
* applets/gen_util/help/C/Makefile.am
* applets/gen_util/help/C/clock/Makefile.am, clock.xml
added
* applets/gen_util/help/C/legal.xml, clock-C.omf
removed
* clock_applet.xml clock_applet.sgml clock.sgml clock_applet-C.omf
updated
adding clock applet docs build stuff
2002-02-04 John Fleck <[email protected]>
* configure.in
* applets/gen_util/help/C/Makefile.am
added:
* applets/gen_util/help/C/tasklist/legal.xml
* applets/gen_util/help/C/tasklist/Makefile.am
* applets/gen_util/help/C/tasklist/tasklist.xml
* applets/gen_util/help/C/tasklist/tasklist-C.omf
adding initial documentation for tasklist applet
2002-02-04 Mark McLoughlin <[email protected]>
* Version 1.5.7
2002-02-03 John Fleck <[email protected]>
* configure.in
* applets/gen_util/Makefile.am
* applets/gen_util/help/Makefile.am
* applets/gen_util/help/C/Makefile.am
added:
* applets/gen_util/help/C/pager/legal.xml
* applets/gen_util/help/C/pager/Makefile.am
* applets/gen_util/help/C/pager/pager.xml
* applets/gen_util/help/C/pager/pager-C.omf
adding initial documentation for pager applet
2002-02-02 Seth Nickell <[email protected]>
* pixmaps/gnome-globe.png:
Use a more photorealistic, colourful
globe.
* pixmaps/gnome-settings.png:
Use the Control Center icon.
2002-02-02 The Icon Butcher <[email protected]>
* pixmaps/gnome-multimedia.png:
Butcher a few jimmac/tigert icons and slap
'em together to get what I'm looking for :-)
2002-01-30 Mark McLoughlin <[email protected]>
* Version 1.5.6
2002-01-30 Mark McLoughlin <[email protected]>
* configure.in: use AM_GCONF_SOURCE_2.
2002-01-29 Glynn Foster <[email protected]>
* Version 1.5.5
2002-01-28 Glynn Foster <[email protected]>
* configure.in: Add new pkg-config check for libpanel_applet.
2002-01-20 John Fleck
* Makefile.am
* configure.in
* applets/Makefile.am
* core-docs/Makefile.am
* core-docs/fdl/C/Makefile.am
* core-docs/fdl/C/fdl-C.omf
* core-docs/gpl/C/Makefile.am
* core-docs/gpl/C/gpl-C.omf
* core-docs/lgpl/C/Makefile.am
* core-docs/lgpl/C/lgpl-C.omf
add core-docs into the build with xml versions of gpl, fdl and
lgpl, remove the old tasklist applet from the build as it was
screwing up distcheck
2002-01-19 Seth Nickell <[email protected]>
* pixmaps/Makefile.am:
* pixmaps/gnome-panel-type-corner.png:
* pixmaps/gnome-panel-type-edge.png:
* pixmaps/gnome-panel-type-floating.png:
* pixmaps/gnome-panel-type-menu.png:
* pixmaps/gnome-panel-type-sliding.png:
Add new icons for the "Create panel->"
items of the panel context menu.
2002-01-19 Seth Nickell <[email protected]>
* pixmaps/Makefile.am:
* pixmaps/gnome-workspace.png:
Add a new icon for the "Workspace List" applet.
2002-01-16 John Fleck <[email protected]>
* core-docs - update lgpl.xml, gpl.xml and fdl.xml
so the xml validates - they're not yet in the build
2002-01-14 Mark McLoughlin <[email protected]>
* Version 1.5.4
2002-01-12 Glynn Foster <[email protected]>
* configure.in: Add libglade dependancy on wncklet applets. Thanks to
MCArkan for pointing this out.
2002-01-03 Glynn Foster <[email protected]>
* configure.in: Make gnome-core build on Solaris again. Don't know
how this was left out. Thanks to Laca for patch.
2001-12-24 Seth Nickell <[email protected]>
* pixmaps/gnome-panel.png:
Off with the hand!
2001-12-21 Anders Carlsson <[email protected]>
* configure.in: Add libpng check.
Wed Dec 19 20:18:53 2001 George Lebl <[email protected]>
* pixmaps/Makefile.am, pixmaps/gnome-day.png, pixmaps/gnome-month.png,
pixmaps/gnome-set-time.png, pixmaps/gnome-week.png: add some
icons from "Dennis M. Cranston" <[email protected]>
Sun Dec 09 2001 Miles Lane <[email protected]>
* configure.in: Add gnome-vfs-module-2.0 to the
PANELCONFIG definition so that the panel code builds
again. There are new dependencies on gnome-vfs-mime.h.
Approved by seth.
Sun Dec 09 02:19:46 2001 George Lebl <[email protected]>
* configure.in: require libwnck for the panel also
2001-12-08 Alex Larsson <[email protected]>
* doc/panel-session-handling.txt:
* doc/Makefile.am:
Added the new panel session handling proposal.
2001-12-08 Gediminas Paulauskas <[email protected]>
* Makefile.am: (SUBDIRS): remove intl
* various other Makefile.am: (INCLUDES): remove intl
(*_LDADD): remove INTLLIBS
2001-12-07 Glynn Foster <[email protected]>
* configure.in: Bump up version number to
1.5.3
2001-12-07 Glynn Foster <[email protected]>
* panel/Makefile.am:
Fix stuff..again.
2001-12-07 Glynn Foster <[email protected]>
* gnome-terminal/Makefile.am:
* panel/Makefile.am:
Fix up stuff for distcheck.
Sun Dec 2 13:14:22 2001 Owen Taylor <[email protected]>
* configure.in: Add .pc file for gnome-desktop-2.0.
2001-11-29 Stephen Browne <[email protected]>
*configure.in
Added pkgcheck for gnome-panel-properties
Got rid of LIBCAPPLET stuff - no more libcapplet
2001-11-29 Mark McLoughlin <[email protected]>
* configure.in: version 1.5.2.
2001-11-28 Seth Nickell <[email protected]>
* Makefile.am:
* configure.in:
Generate desktop-links/Makefile, and recurse into it.
2001-11-27 Alexander Larsson <[email protected]>
* configure.in:
Added WNCKLET_CFLAGS/LIBS for applets that link against libwnck.
* applets/gen_util/pager.[ch]:
New files, implement a pager using libwnck.
* applets/gen_util/GNOME_GenUtilApplet_Factory.server.in.in:
* applets/gen_util/Makefile.am:
* applets/gen_util/main.c:
Add Pager applet
2001-11-27 Mark McLoughlin <[email protected]>
* configure.in: version 1.5.1.
2001-11-27 Mark McLoughlin <[email protected]>
* configure.in: generate libpanel-applet/Makefile and
libpanel-applet/libpanelapplet-2.0.pc
* Makefile.am (SUBDIRS): add libpanel-applet.
2001-11-27 Gediminas Paulauskas <[email protected]>
* all files containing main(): always get translated messages in
UTF-8.
2001-11-26 Mark McLoughlin <[email protected]>
* doc/reference/panel-applet/Makefile.am: fixup.
2001-11-26 Mark McLoughlin <[email protected]>
* AUTHORS, BUGS, NEWS, README, DEPENDS, HACKING: try to bring
some way up to date.
* COPYING.LIB: add LGPL file.
* Makefile.am: add doc to SUNDIRS.
* configure.in: build doc/ Makefiles
* doc/Makefile.am, doc/reference/Makefile.am: new files.
2001-11-25 Sander Vesik <[email protected]>
* panel/quick-desktop-reader.c,
gnome-desktop/gnome-desktop-item.c:
Remove libgnomevfs/gnome-vfs-mime-utils.h that neither
exists nor is needed any more.
2001-11-23 Mark McLoughlin <[email protected]>
* configure.in: enable gnome-core/panel/doc/Makefile.am,
gnome-core/panel/doc/reference/Makefile.am.
2001-11-21 Mark McLoughlin <[email protected]>
* configure.in: re-enable applets/Makefile and
applets/fish/Makefile.
* applet/Makefile.am: enable fish/ subdir.
Mon, 19 Nov 2001 02:06:20 -0500 Frank Belew <[email protected]>
* Makefile.am: replaced xml-i18n-* with intltool-*
cleaned up EXTRA_SUBDIRS
* configure.in: removed AM_PROG_XML_I18N_TOOLS
added GETTEXT_PACKAGE definition, and added AC_SUBST
and AC_DEFINE_UNQUOTED to complete the change
* acconfig.h: added #undef GETTEXT_PACKAGE
2001-11-09 Fatih Demir <[email protected]>
* configure.in: Added "ms" to the languages list.
2001-11-08 Mark McLoughlin <[email protected]>
* configure.in: add gconf stuff.
2001-11-05 Mark McLoughlin <[email protected]>
* configure.in: pull in gnome-vfs-module-2.0 for
gnome-desktop-item.
2001-10-25 Joe Shaw <[email protected]>
* configure.in: Remove the bonobo-conf dependency.
2001-10-24 Mark McLoughlin <[email protected]>
* configure.in: add maximum compile warnings.
2001-10-20 Seth Nickell <[email protected]>
* configure.in:
Invoke INTLTOOL since we use INTLTOOL_SERVER_RULE
for the Panel's .server file.
2001-10-20 Seth Nickell <[email protected]>
* configure.in:
Fetch the IDL flags for Bonobo Activation for use
with orbit-idl2 on GNOME_Panel.idl.
* panel/main.c:
Remove inclusion of "panel-unique-factory.h" which
Jacob probably forgot to cvs add. Fixes the build.
2001-10-19 Mark McLoughlin <[email protected]>
* Makefile.am, configure.in, pixmaps/Makefile.am:
install pixmaps again. Don't install tiles, though.
2001-10-13 Seth Nickell <[email protected]>
* configure.in:
And actually generate gnome-about/Makefile so there's
something for make to do when it reaches gnome-about ;-)
2001-10-12 Alex Larsson <[email protected]>
* configure.in:
Added GNOME_ABOUT_CFLAGS/LIBS.
* Makefile.am:
build gnome-about
2001-10-05 Mark McLoughlin <[email protected]>
* configure.in: removed lots of unused cruft.
* gnome-terminal/Makefile.am, gsm/Makefile.am,
panel/Makefile.am: cleaned up generated file handling.
2001-09-27 Mark McLoughlin <[email protected]>
* configure.in: add -lm to libpng check for non-glibc systems.
2001-09-20 Wang Jian <[email protected]>
* configure.in(ALL_LINGUAS): Renamed zh_CN.GB2312 to zh_CN.
2001-09-14 jacob berkman <[email protected]>
* configure.in: look for libglade-convert, and error out if it
isn't present
2001-09-12 jacob berkman <[email protected]>
* configure.in:
* Makefile.am (SUBDIRS): build gsm/ and smproxy/
2001-09-04 Abel Cheung <[email protected]>
* (recursive)*.desktop, *.directory, *.soundlist, *.hint: Rename zh_TW.Big5 to zh_TW .
2001-09-01 Darin Adler <[email protected]>
* Makefile.am:
* configure.in:
Don't bother with intl directory.
2001-08-30 jacob berkman <[email protected]>
* Makefile.am (SUBDIRS):
* configure.in: build gnome-terminal
: update things to not need gnome1-compat - at least until the
libgnome* thing is more stabilized
: check if libgnomeui was linked against -lSM (for gnome-session,
which i won't be comimtting yet)
2001-08-22 Abel Cheung <[email protected]>
* configure.in (ALL_LINGUAS): zh_TW.Big5 -> zh_TW .
2001-08-18 Martin Baulig <[email protected]>
* configure.in (MAINT): Define and AC_SUBST this.
2001-08-17 Martin Baulig <[email protected]>
* configure.in (GNOME_DESKTOP): Require bonobo-config.
2001-08-09 Martin Baulig <[email protected]>
* configure.in (PANEL): Require libgnome1-compat.
2001-08-06 Gregory Leblanc <[email protected]>
* gnome-core.spec.in: a few tiny updates, preparing for a
flamewar, err, discussion, about this strategy.
2001-08-06 Martin Baulig <[email protected]>
* configure.in (GNOME_DESKTOP): Added pkg-config checks for the
gnome-desktop directory.
2001-08-06 Martin Baulig <[email protected]>
* configure.in, autogen.sh: Updated for the GNOME 2 platform.
* Makefile.am: Disabled all subdirs except idl, gnome-ditem and panel.
2001-08-06 Martin Baulig <[email protected]>
* gnome-desktop/: New directory. This is the ditem code which was
in libgnome/monikers and libgnome/libgnome/gnome-ditem.[ch].
2001-08-06 Martin Baulig <[email protected]>
gnome-core has been branched for GNOME 1.4 - please use the gnome-core-1-4
branch for GNOME 1.4 - the HEAD is for GNOME 2.0.
If you have a checked out copy of gnome-core, do a
cvs update -r gnome-core-1-4
To check out the gnome-core-1-4 branch, do a
cvs co -r gnome-core-1-4 gnome-core
* README.STABLE_BRANCH: Updated to point to gnome-core-1.4.
2001-07-31 Malcolm Tredinnick <[email protected]>
* applets/gen_util/help/es/printer/figures/*:
* applets/gen_util/help/es/printer/printer.sgml: moved PNG
files here from the parent directory for consistency with other
doc dirs. Changed sgml file to use the right images.
* applets/gen_util/help/es/mailcheck/figures/mailcheck-applet.png:
Added. Required to make build work (and no translation required).
* help-browser/help/es/Makefile.am, default-page.html: use the
gnome foot image from the 'C' subdir. No need to put a copy in
each translation dir.
* app-docs.am.template, app-docs.make, applet-docs.make, Makefile.am:
Remove these old ways of buiding docs. They have been obsoleted by
sgmldocs.make.
* Updated various .cvsignore files to ignore generated
documentation related files.
2001-07-29 Manuel de Vega Barreiro <[email protected]>
Some Spanish translation updates and bug fixes
* */help/es/*
* configure.in
2001-07-28 Dan Mueth <[email protected]>
Updating doc build stuff to use jw on RH 7.1 and any other dist which
has moved to docbook-utils.
* configure.in:
* sgmldocs.make:
2001-07-28 Dan Mueth <[email protected]>
Moving a couple screenshots and removing one from a Makefile
which doesn't actually exist so that make dist will work.
* applets/gen_util/help/es/mailcheck/Makefile.am:
* applets/gen_util/help/es/mailcheck/figures/mailcheck-properties-m
ailbox.png:
* applets/gen_util/help/es/mailcheck/figures/mailcheck-properties-m
ailcheck.png:
* applets/gen_util/help/es/mailcheck/mailcheck-properties-mailbox.p
ng:
* applets/gen_util/help/es/mailcheck/mailcheck-properties-mailcheck
.png:
2001-07-15 Manuel de Vega Barreiro <[email protected]>
New Sanish translation.
* applets/tasklist/help/es/*
* applets/tasklist/help/Makefile.am
* configure.in
2001-07-05 Manuel de Vega Barreiro <[email protected]>
* panel/help: New Sanish translation.
* configure.in: add panel/help/es/Makefile
2001-07-06 Marius Andreiana <[email protected]>
* gnome-about/contributors.h: Added myself (with Dan's blessing)
2001-06-23 Manuel de Vega Barreiro <[email protected]>
* confifure.in : Included es for mailcheck
* applets/gen_util/help/Makefile.am: Included es for mailcheck
Spanish Translation.
* applets/gen_util/help/es/mailcheck: Spanish Translation
Tue Jun 05 02:21:42 2001 George Lebl <[email protected]>
* configure.in, acconfig.h: Optionally check for gnome-print (we
already sort of did). If found we'll compile the print code
in the screenshooter thinige in the panel.
Wed May 30 22:53:47 2001 George Lebl <[email protected]>
* configure.in: check for libpng (PNG_LIBS) and setup GLADE_LIBS/CFLAGS
Wed May 30 04:09:10 2001 George Lebl <[email protected]>
* configure.in, gnome-core.spec.in: By the fact that no one yelled
when I forgot to commit this it seems not many people actually
build gnome-core HEAD :) This adds the config dir in the panel
makefile
2001-05-27 Stanislav Brabec <[email protected]>
* applets/*/*.directory, */*/*.desktop, */*/*/*.desktop,
*/*/*/*.soundlist: Updated from 1-2 branch and completed
Czech. Alphabetical resort of languages, removed duplicated
translations.
Sat May 19 16:54:24 2001 George Lebl <[email protected]>
* configure.in, acconfig.h: add xinerama check (if it ain't installed,
nothing happens) and niceify the help output
2001-05-15 Jacob "Ulysses" Berkman <[email protected]>
* configure.in: disable libice check since it's probably
unnecessary
2001-05-04 Dan Mueth <[email protected]>
Fixed URL for help document. Before it was broken because it
used "launcher.html" instead of "launchers.html".
* panel/launcher.c: (window_clicked):
2001-04-26 Dan Mueth <[email protected]>
Adding a few contributors who were missing.
* gnome-about/contributors.h:
2001-04-19 Dan Mueth <[email protected]>
Adding Sasha's doc, "Reporting GNOME bugs and other feedback"
Alexander Kirillov <[email protected]>
* configure.in:
* core-docs/Makefile.am:
* core-docs/gnome-feedback/C/Makefile.am:
* core-docs/gnome-feedback/C/gnome-feedback-C.omf:
* core-docs/gnome-feedback/C/gnome-feedback.sgml:
* core-docs/gnome-feedback/Makefile.am:
2001-04-18 Stanislav Brabec <[email protected]>
* configure.in, acconfig.h: Added test for
zvt_term_set_del_is_del. Needed for gnome-terminal del_is_del
support.
2001-04-03 Christopher R. Gabriel <[email protected]>
* configure.in (AC_OUTPUT): added italian documentation for fish
and desk-guide.
2001-04-02 Gregory Leblanc <[email protected]>
* gnome-core.spec.in: Fixed %files section to include some
directories as well as their contents.
Updated to do the scrollkeeper ditty.
2001-03-28 Gregory Leblanc <[email protected]>
Reviewed by: George Lebl <[email protected]>
* configure.in: updates to make dependancy tracking easier
* gnome-core.spec.in: dependancy tracking updates, huge cleanup,
complete re-write of the %files section. See enclosed changelog
for details.
2001-03-28 Dan Mueth <[email protected]>
Linking GNOME hint capplet to doc
* gnome-hint/gnome-hint-properties.c: (help):
2001-03-26 Darin Adler <[email protected]>
* omf-install/.cvsignore: Quick fix to ignore .omf files.
2001-03-25 Dan Mueth <[email protected]>
Updated index page for gnome-help-browser to point to current
GNOME User's Guide.
* help-browser/help/C/default-page.html:
* help-browser/help/ca/default-page.html:
* help-browser/help/da/default-page.html:
* help-browser/help/de/default-page.html:
* help-browser/help/el/default-page.html:
* help-browser/help/es/default-page.html:
* help-browser/help/et/default-page.html:
* help-browser/help/fr/default-page.html:
* help-browser/help/gl/default-page.html:
* help-browser/help/hu/default-page.html:
* help-browser/help/it/default-page.html:
* help-browser/help/ja/default-page.html:
* help-browser/help/ko/default-page.html:
* help-browser/help/lt/default-page.html:
* help-browser/help/no/default-page.html:
* help-browser/help/uk/default-page.html:
* help-browser/help/wa/default-page.html:
2001-03-25 Jens Finke <[email protected]>
* gnome.spec.in: Include gnome-terminal datadir stuff. Make use
of rpm macros.
2001-03-23 Yukihiro Nakai <[email protected]>
* configure.in: Generate Makefile of Japanese gsm help.
2001-03-23 Dan Mueth <[email protected]>
Fixed error in metadata, placing it in the wrong locale.
* panel/help/ja/panel-ja.omf:
2001-03-22 Dan Mueth <[email protected]>
A couple bug fixes from the previous huge commit.
* applets/desk-guide/help/C/Makefile.am:
* applets/desk-guide/help/de/Makefile.am:
2001-03-22 Dan Mueth <[email protected]>
Updating doc build stuff to use sgmldocs.make. Making sure
screenshots are in figures directory. A few other small
doc fixes.
* applets/desk-guide/help/C/Makefile.am:
* applets/desk-guide/help/C/desk-guide.sgml:
* applets/desk-guide/help/C/deskguide-fig.png:
* applets/desk-guide/help/C/deskguide-properties-advanced-fig.png:
* applets/desk-guide/help/C/deskguide-properties-geometry-fig.png:
* applets/desk-guide/help/C/deskguide-properties-tasks-fig.png:
* applets/desk-guide/help/C/deskguide-properties.png:
* applets/desk-guide/help/C/deskguide-tasklist-fig.png:
* applets/desk-guide/help/C/figures/deskguide-fig.png:
* applets/desk-guide/help/C/figures/deskguide-properties-advanced-f
ig.png:
* applets/desk-guide/help/C/figures/deskguide-properties-geometry-f
ig.png:
* applets/desk-guide/help/C/figures/deskguide-properties-tasks-fig.
png:
* applets/desk-guide/help/C/figures/deskguide-properties.png:
* applets/desk-guide/help/C/figures/deskguide-tasklist-fig.png:
* applets/desk-guide/help/de/Makefile.am:
* applets/desk-guide/help/de/desk-guide.sgml:
* applets/desk-guide/help/de/deskguide-fig.png:
* applets/desk-guide/help/de/deskguide-properties-advanced-fig.png:
* applets/desk-guide/help/de/deskguide-properties-geometry-fig.png:
* applets/desk-guide/help/de/deskguide-properties-tasks-fig.png:
* applets/desk-guide/help/de/deskguide-properties.png:
* applets/desk-guide/help/de/deskguide-tasklist-fig.png:
* applets/desk-guide/help/de/figures/deskguide-fig.png:
* applets/desk-guide/help/de/figures/deskguide-properties-advanced-
fig.png:
* applets/desk-guide/help/de/figures/deskguide-properties-geometry-
fig.png:
* applets/desk-guide/help/de/figures/deskguide-properties-tasks-fig
.png:
* applets/desk-guide/help/de/figures/deskguide-properties.png:
* applets/desk-guide/help/de/figures/deskguide-tasklist-fig.png:
* applets/desk-guide/help/es/Makefile.am:
* applets/desk-guide/help/es/desk-guide.sgml:
* applets/desk-guide/help/es/desk-guide_applet-es.omf:
* applets/desk-guide/help/es/figures/deskguide-fig.png:
* applets/desk-guide/help/es/figures/deskguide-properties-advanced-
fig.png:
* applets/desk-guide/help/es/figures/deskguide-properties-geometry-
fig.png:
* applets/desk-guide/help/es/figures/deskguide-properties-tasks-fig
.png:
* applets/desk-guide/help/es/figures/deskguide-properties.png:
* applets/desk-guide/help/es/figures/deskguide-tasklist-fig.png:
* applets/fish/help/C/Makefile.am:
* applets/fish/help/C/figures/fish_applet.png:
* applets/fish/help/C/figures/fish_settings.png:
* applets/fish/help/C/fish.sgml:
* applets/fish/help/C/fish_applet.png:
* applets/fish/help/C/fish_settings.png:
* applets/fish/help/da/Makefile.am:
* applets/fish/help/da/figures/fish_applet.png:
* applets/fish/help/da/figures/fish_settings.png:
* applets/fish/help/da/fish.sgml:
* applets/fish/help/da/fish_applet.png:
* applets/fish/help/da/fish_settings.png:
* applets/fish/help/no/Makefile.am:
* applets/fish/help/no/figures/fish_applet.png:
* applets/fish/help/no/figures/fish_settings.png:
* applets/fish/help/no/fish.sgml:
* applets/fish/help/no/fish_applet.png:
* applets/fish/help/no/fish_settings.png:
* applets/gen_util/help/C/clock/Makefile.am:
* applets/gen_util/help/C/clock/clock.sgml:
* applets/gen_util/help/C/clock/clock_applet.png:
* applets/gen_util/help/C/clock/clock_settings.png:
* applets/gen_util/help/C/clock/figures/clock_applet.png:
* applets/gen_util/help/C/clock/figures/clock_settings.png:
* applets/gen_util/help/C/mailcheck/Makefile.am:
* applets/gen_util/help/C/mailcheck/figures/mailcheck-applet.png:
* applets/gen_util/help/C/mailcheck/figures/mailcheck-properties-ma
ilbox.png:
* applets/gen_util/help/C/mailcheck/figures/mailcheck-properties-ma
ilcheck.png:
* applets/gen_util/help/C/mailcheck/mailcheck-applet.png:
* applets/gen_util/help/C/mailcheck/mailcheck-properties-mailbox.pn
g:
* applets/gen_util/help/C/mailcheck/mailcheck-properties-mailcheck.
png:
* applets/gen_util/help/C/mailcheck/mailcheck.sgml:
* applets/gen_util/help/C/printer/Makefile.am:
* applets/gen_util/help/C/printer/figures/printer-fig.png:
* applets/gen_util/help/C/printer/figures/printer-properties.png:
* applets/gen_util/help/C/printer/printer-fig.png:
* applets/gen_util/help/C/printer/printer-properties.png:
* applets/gen_util/help/C/printer/printer.sgml:
* applets/gen_util/help/da/clock/Makefile.am:
* applets/gen_util/help/da/clock/clock.sgml:
* applets/gen_util/help/da/clock/clock_applet.png:
* applets/gen_util/help/da/clock/clock_settings.png:
* applets/gen_util/help/da/clock/figures/clock_applet.png:
* applets/gen_util/help/da/clock/figures/clock_settings.png:
* applets/gen_util/help/da/mailcheck/Makefile.am:
* applets/gen_util/help/da/mailcheck/figures/mailcheck-applet.png:
* applets/gen_util/help/da/mailcheck/figures/mailcheck-properties-m
ailbox.png:
* applets/gen_util/help/da/mailcheck/figures/mailcheck-properties-m
ailcheck.png:
* applets/gen_util/help/da/mailcheck/mailcheck-applet.png:
* applets/gen_util/help/da/mailcheck/mailcheck-properties-mailbox.p
ng:
* applets/gen_util/help/da/mailcheck/mailcheck-properties-mailcheck
.png:
* applets/gen_util/help/da/mailcheck/mailcheck.sgml:
* applets/gen_util/help/da/printer/Makefile.am:
* applets/gen_util/help/da/printer/figures/printer-fig.png:
* applets/gen_util/help/da/printer/figures/printer-properties.png:
* applets/gen_util/help/da/printer/printer-fig.png:
* applets/gen_util/help/da/printer/printer-properties.png:
* applets/gen_util/help/da/printer/printer.sgml:
* applets/tasklist/help/C/Makefile.am:
* applets/tasklist/help/C/figures/tasklist-fig.png:
* applets/tasklist/help/C/figures/tasklist-properties-size.png:
* applets/tasklist/help/C/figures/tasklist-properties.png:
* applets/tasklist/help/C/figures/tasklist-rightclick-fig.png:
* applets/tasklist/help/C/tasklist-fig.png:
* applets/tasklist/help/C/tasklist-properties-size.png:
* applets/tasklist/help/C/tasklist-properties.png:
* applets/tasklist/help/C/tasklist-rightclick-fig.png:
* applets/tasklist/help/C/tasklist.sgml:
* core-docs/fdl/C/Makefile.am:
* core-docs/gpl/C/Makefile.am:
* core-docs/lgpl/C/Makefile.am:
* gnome-terminal/C/Makefile.am:
* gnome-terminal/da/gnome-terminal.sgml:
* gnome-terminal/de/Makefile.am:
* gnome-terminal/es/Makefile.am:
* gsm/help/C/Makefile.am:
* gsm/help/C/button_remove.png:
* gsm/help/C/figures/button_remove.png:
* gsm/help/C/figures/session-properties.png:
* gsm/help/C/figures/stock_exec.png:
* gsm/help/C/figures/stock_help.png:
* gsm/help/C/figures/stock_preferences.png:
* gsm/help/C/figures/stock_refresh.png:
* gsm/help/C/figures/stock_save.png:
* gsm/help/C/figures/stock_timer.png:
* gsm/help/C/figures/stock_trash.png:
* gsm/help/C/session-properties.png:
* gsm/help/C/session.sgml:
* gsm/help/C/stock_exec.png:
* gsm/help/C/stock_help.png:
* gsm/help/C/stock_preferences.png:
* gsm/help/C/stock_refresh.png:
* gsm/help/C/stock_save.png:
* gsm/help/C/stock_timer.png:
* gsm/help/C/stock_trash.png:
* panel/help/C/Makefile.am:
* panel/help/de/Makefile.am:
* panel/help/it/Makefile.am:
* panel/help/ja/Makefile.am:
* panel/help/no/Makefile.am:
2001-03-20 Dan Mueth <[email protected]>
Update some of the build stuff to the latest state of
OMF/SK system. Plus, added ScrollKeeper stuff into configure.in
and added sgmldocs.make so we can start using that to stay
uniform with other packages.
* Makefile.am:
* configure.in:
* omf-install/Makefile.am:
* sgmldocs.make:
2001-03-09 Kjartan Maraas <[email protected]>
* configure.in: Generate Makefile for the japanese panel docs.
2001-03-07 jacob berkman <[email protected]>
* pixmaps: use some of tigert's nice icons
Tue Mar 06 18:36:33 2001 George Lebl <[email protected]>
* configure.in, acconfig.h: Add a with argument for the KDE
documentation path
2001-03-02 Christian Schaller <[email protected]>
* Norwegian Nynorsk translation
2001-02-28 Martin Baulig <[email protected]>
* configure.in (configure.in): Added applets/gen_util/help/es.
Tue Feb 27 02:15:15 2001 George Lebl <[email protected]>
* configure.in: give a useful message when the canvas gdkpixbuf
thingie isn't found
2001-02-26 Dan Mueth <[email protected]>
Include FDL as required by the FDL, and l10n of categories for
OMF metadata.
* COPYING-DOCS: Added this file - the FDL
* Makefile.am: Include COPYING-DOCS
* applets/fish/help/no/fish_applet-no.omf: l10n of category
* applets/gen_util/help/no/gen_util_applet-no.omf: l10n of category
2001-02-25 Gediminas Paulauskas <[email protected]>
* configure.in: don't create grdb Makefiles.
2001-02-19 Dan Mueth <[email protected]>
* Localized categories in OMF metadata for:
applets/fish/help/da/fish_applet-da.omf
applets/gen_util/help/da/clock/clock_applet-da.omf
applets/gen_util/help/da/mailcheck/mailcheck_applet-da.omf
applets/gen_util/help/da/printer/printer_applet-da.omf
gnome-terminal/es/gnome-termainal-es.omf
Sat Feb 17 23:28:01 2001 George Lebl <[email protected]>
* gnome-core.spec.in: update so that /var/lib files are installed
properly
2001-02-15 Dan Mueth <[email protected]>
* omf-install/Makefile.am: Changed to install under
$(datadir)/omf/ instead of $(prefix)/doc/omf because
this is The Right Way, and scrollkeeper was recently fixed
to work this way.
2001-02-14 Christophe Merlet <[email protected]>
* */*.desktop: Updated French translations.
2001-02-13 Dan Mueth <[email protected]>
* core-docs/lgpl/C/lgpl.sgml: Added a </para> to make it
validate with nsgmls and produce a valid TOC. Now it has
an extra <para> somewhere, which is lame, but at least
it validates and makes a good TOC. Finding the extra
<para> and removing it is left as an excercise for the reader.
* applet-docs.make: Less broken OMF bits than before
2001-02-13 Dan Mueth <[email protected]>
* app-docs.make: Fixed(TM)
* applet-docs.make: Fixed(TM)
2001-02-13 Dan Mueth <[email protected]>
* applet-docs.make: fixing previous non-fix
* app-docs.make: fixing previous non-fix
2001-02-13 Dan Mueth <[email protected]>
* OMF files: Updated to new category list in scrollkeeper-0.0.6
2001-02-12 Dan Mueth <[email protected]>
* applet-docs.make: Fixed to do directories without OMF files
correctly.
2001-02-12 Dan Mueth <[email protected]>
* app-docs.make: Fixed to do directories without OMF files
correctly.
2001-02-08 Kjartan Maraas <[email protected]>
* configure.in: Added Norwegian (nynorsk) to ALL_LINGUAS.
2001-02-06 Dan Mueth <[email protected]>
* Commented out the OMF files for 3 translations of gnome-terminal
because the SGML is broken, preventing TOC extraction
2001-02-06 Dan Mueth <[email protected]>
* Modified Makefile.am's to register the new OMF files
* Added many OMF files:
applets/desk-guide/help/C/desk-guide_applet-C.omf
applets/desk-guide/help/de/desk-guide_applet-de.omf