File: ChangeLog

package info (click to toggle)
gnumeric 1.6.3-5.1%2Betch2
  • links: PTS
  • area: main
  • in suites: etch
  • size: 70,644 kB
  • ctags: 18,973
  • sloc: ansic: 204,271; xml: 47,128; sh: 8,917; makefile: 2,540; yacc: 1,137; perl: 179; python: 86
file content (953 lines) | stat: -rw-r--r-- 32,764 bytes parent folder | download | duplicates (2)
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
2006-03-19  Jody Goldberg <jody@gnome.org>

	* Release 1.6.3

2006-01-30  Jody Goldberg <jody@gnome.org>

	* Release 1.6.2

2005-11-14  Jody Goldberg <jody@gnome.org>

	* Release 1.6.1

2005-10-10  Jody Goldberg <jody@gnome.org>

	* Release 1.6.0

2005-09-22  Morten Welinder <terra@gnome.org>

	* Makefile.am: Allow overrides to mandir.  [#316106]

2005-09-08  Jody Goldberg <jody@gnome.org>

	* Release 1.5.90

2005-08-28  Morten Welinder <terra@gnome.org>

	* Release 1.5.5

2005-08-28  Morten Welinder <terra@gnome.org>

	* Release 1.5.4

2005-08-19  J.H.M. Dassen (Ray) <jdassen@debian.org>

	* Spell: New. List possible misspellings in the XML docs.
	* Localwords: Local word list for Spell.

2005-08-18  J.H.M. Dassen (Ray) <jdassen@debian.org>

	* ssindex.1: New.
	* Makefile.am: Updated accordingly.

2005-08-15  Morten Welinder <terra@gnome.org>

	* Release 1.5.3

2005-06-13  Jody Goldberg <jody@gnome.org>

	* Release 1.5.2

2005-05-10  Jody Goldberg <jody@gnome.org>

	* Release 1.5.1

2005-02-08  Jody Goldberg <jody@gnome.org>

	* Release 1.5.0

2005-01-17  Jody Goldberg <jody@gnome.org>

	* Release 1.4.2

2004-12-16  Jody Goldberg <jody@gnome.org>

	* Makefile.am : install the man pages

	* gnumeric-C.omf : version = 1.4

2004-12-09  Jody Goldberg <jody@gnome.org>

	* Release 1.4.1

2004-12-02  Jody Goldberg <jody@gnome.org>

	* gnumeric.xml : Don't put appendix wrappers here, then have extra
	  wrappers in the entity files.

	* functions.xml : regenerate with the appendix as a wrapper and
	sect2 -> sect1, makes the grouping more natural

	* appendix-keybindings.xml : Add F4 and move appendix description here
	  to avoid extra container page

2004-12-01  Jody Goldberg <jody@gnome.org>

	* welcome.xml : typo and emphasis

2004-11-28  Jody Goldberg <jody@gnome.org>

	* Release 1.4.0

2004-11-28  Adrian Custer <acuster@gnome.org>

	* NEWS Tweaks for release.

	* configuration-preferences.xml: Remove duplicate id.
	* gui-menus.xml: Remove id to toolbar context menu.
	* gui-toolbars.xml: Remove id to toolbar context menu.
	* functions.xml: Change EXCH to EXCHANGE, the real fix should be
	                 in plugins/derivatives/options.c line 1921.


2004-11-22  Adrian Custer <acuster@gnome.org>

	* NEWS Comment out worksheet/workbook.

	* gnumeric.xml: comment out worksheet/book chapters.
	* manual-usage.xml: comment out worksheet/book chapters.
	* gui-menus.xml: Change context menu shot, edit the section,
	                 remove the section on toolbar context menus.
	* worksheet.xml: minor tweaks.
	* workbook.xml: minor tweaks.
	* graphics-overview.xml: Change the context menu shot, edit the
	                         text. 

	* figures/menu-context-object-order.png: Added.
	* figures/menu-context-graph-order.png: Added.
	* figures/Makefile.am: Support for above.
	
2004-11-22  Adrian Custer <acuster@gnome.org>

	* NEWS Bugs, typos and other lower life forms.

	* configuration-preferences.xml: change section.
	
2004-11-22  Adrian Custer <acuster@gnome.org>

	* NEWS Redo three screenshots.

2004-11-22  Adrian Custer <acuster@gnome.org>

	* NEWS Redo configuration-preferences screenshots.

	* figures/preferences-various.png: rm.
	* figures/preferences-various-internal.png: rm.
	* figures/preferences-copypaste.png: add.
	* figures/preferences-screen.png: add.
	* figures/preferences-tools.png: add.

	* configuration-preferences.xml: Edit.

2004-11-22  Adrian Custer <acuster@gnome.org>

	* NEWS Minor cleanups for numbering. Edit worksheet
	       chapter. Write configuration chapter.

	* gnumeric.xml: Change link name for desktop-help. Change WS
	                chapter title. Reorder configuration chapt.
	* manual-usage.xml: Change WS chapter title.
	* quick-start.xml: Windows version now exists.
	* worksheets.xml: Re-organize and write.
	* configuration-preferences.xml: Limit images to 550px.
	* configuration-*.xml: Edits.
	* figures/preferences-*.png: Change size, remove border.

2004-11-19  Adrian Custer <acuster@gnome.org>

	* NEWS Bump version to 1.4. Start edits of worksheet 
	       chapter. Minor Edits.
	
	* gnumeric.xml: Change title, edit paragraph. 
	                Change guilabel -> emphasis. 
	* manual-usage.xml: Change title, edit paragraph.
	* worksheets.xml: Major edits.
	* welcome.xml: Edit for 1.4. Change guilabel -> emphasis.
	* morehelp.xml: Change guilabel -> emphasis.
	* quickstart.xml: remove scale="100" on screenshot.

	* gnumeric-driver.xsl: Add. Driver file for win32 HTMLhelp.

2004-11-14  Adrian Custer <acuster@gnome.org>

	* gnumeric.xml: Help the poor packagers. revert to docbook 4.1.2.

2004-11-07  Jody Goldberg <jody@gnome.org>

	* Release 1.3.93

2004-10-31  Jody Goldberg <jody@gnome.org>

	* Release 1.3.92

2004-10-06  Adrian Custer <acuster@gnome.org>

	* NEWS Misc cleanup.

	* figures/gnumeric-power-example.png: Made 510 pixels wide.

	* gnumeric.xml: Added a comma in graphics chapter title.
	* welcome.xml: Added caption with note to image.
	* quick-start.xml: Sync chapter titles.
	* file-save.xml: fix invalid varlistentry.
	* gui-overview.xml: fix link id name, links in last para.
	* quick-start.xml: fix link id name.
	* graphics-plots.xml: move valign into <imagedata>, remove valign
	                      from <tgroup>.
	* files-formats.xml: remove valign from <tgroup>.
	* files-opening.xml: remove valign from <tgroup>.
	* files-textopen.xml: correct linkends.
	* files-saving.xml: remove valign from <tgroup>. Add a link.
	* bugs.xml: remove valign from <tgroup>.
	* gui-toolbars.xml: rm discussion of "tearing off" since it broke
	                      a ref. 
	* graphics-widgets.xml: added a link.
	* graphics-drawings.xml: added a link.

2004-10-05  Jody Goldberg <jody@gnome.org>

	* Release 1.3.91

2004-10-05  Jody Goldberg <jody@gnome.org>

	* Makefile.am : remove non-existent file

2004-10-05  J.H.M. Dassen (Ray) <jdassen@debian.org>

	* gui-menus.xml, quick-start.xml: Fixed typos.

2004-10-05  Adrian Custer <acuster@gnome.org>

	* NEWS Updated the 'Elements' chapter.

	* gnumeric.xml: Revert to Docbook 4.2. We actually need to back 
	  down to 4.1.2 or clear this with the GDP. For the moment, I 
	  only have 4.2 so we can change this when I get closer to a 
	  real network. Bump this up to validate and back down to commit.

	* figures/gnumeric-labelled.png: changed.
	* figures/gnumeric-rearranged.png: deleted.
	* figures/toolbars.png: changed to toolbars.510.png.
	* figures/toolbar-standard.png: changed to toolbar-standard.510.png.
	* figures/toolbar-format.png: changed to toolbar-forat.510.png.
	* figures/label-*.png: 7 files deleted.
	* figures/gnumeric-empty.png: changed to gnumeric-empty.510.png.
	* figures/Makefile.am: Ammended.

	* gnumeric.xml: Rename "elements" chapter. Remove warning.
	* manual-usage.xml: Rename "elements" chapter.
	* gui-overview.xml: Edits. New Screenshot.
	* gui-menus.xml: Edits. New Screenshots.
	* gui-toolbars.xml: Move down a level. Update.
	* gui-other-elements.xml: remove intro section.

2004-10-04  J.H.M. Dassen (Ray) <jdassen@debian.org>

	* gnumeric.xml: Upgrade to DocBook XML V4.3 which is the first version
	to support the "uri" element we use in bugs.xml and morehelp.xml .
	* files-formats.xml: Changed the (invalid) "title"-less "table"s into
	"informaltable"s which are valid and are rendered by yelp the same way
	the invalid "title"-less "table"s were.

2004-10-03  J.H.M. Dassen (Ray) <jdassen@debian.org>

	* manual-usage.xml: Comment out reference to the "About" chapter.
	* files-formats.xml, files-saving.xml, files-textopen.xml,
	files-textsave.xml, getting-involved.xml, graphics-plots.xml,
	gui-menus.xml, gui-other-elements.xml: Spelling/typo fixes.

2004-10-03  Adrian Custer <acuster@gnome.org>

	* NEWS Finished this revision of the 'Working with files' chapter.


	* figures/textguru-export-panel1-withTags.png: Added.
	* figures/textguru-export-panel2-withTags.png: Added.
	* figures/files-csv-export-ex1.png 
	* figures/files-csv-export-ex2.png 
	* figures/Makefile.am: Add and delete files above.

	* gnumeric.xml: Disable the "About" chapter.
	* files-overview.xml: Add a TODO.
	* files-formats.xml: change link to 'encoding'. Get rid of Ray's
	stupid dummy <title> tags since they cause yelp to add a table
	number we don't need. Run off and mess up your own part of the
	docs. Any validator that requires a title element ought to be
	forced to write a docbook.
	* files-opening.xml: change link to 'encoding'.
	* files-textopen.xml: move three 'complexities' down a
	                      level. Write structuring section. Write
			      intro paragraph for components section.
	* files-saving.xml: Edits to make parallel to files-opening.
	* files-textsave.xml: Edits to update, add figures.
	* files-email.xml: 
	* files-ssconvert.xml: Edits.

2004-10-02  J.H.M. Dassen (Ray) <jdassen@debian.org>

	* extending-python.xml, morehelp.xml: Corrected capitalisation of
	GIMPnet.

2004-10-01  J.H.M. Dassen (Ray) <jdassen@debian.org>

	* welcome.xml: Removed "trademark" tag as it is not allowed inside
	guilabel.
	* graphics-plots.xml: "procedure"s don't go in "para"s.
	* files-formats.xml: Added empty "title" tags in "table"s. "ulink" tags
	take "url" attributes, not "linkend"s.
	* files-opening.xml, files-textopen.xml: Wrapped "caption" contents in
	"para"s.
	* analysis-statistical.xml, appendix-keybindings.xml, bugs.xml,
	configuration-preferences.xml, data-modify.xml, data-move-copy.xml,
	data-selections.xml, data-types.xml, files-formats.xml,
	files-opening.xml, gui-menus.xml, gui-mouse.xml,
	gui-other-elements.xml, gui-toolbars.xml, morehelp.xml,
	quick-start.xml, worksheets.xml: Spelling fixes.

2004-10-01  Adrian Custer <acuster@gnome.org>

	* NEWS Reorg then hide the sections.

	* README: tweak.
	* gnumeric.xml: Support reorg.
	* manual-usage.xml: Add text for new chapters.
	* getting-invovled.xml: Split new chapter from 'About...'
	* installing.xml: Add new chapter
	* compiling.xml: Split new chapter from 'About...'
	* programing.xml: Split new chapter from 'Extending...'
	* documenting.xml: Add new chapter
	* about-get-involved.xml: Delete.
	* about-compiling.xml: Delete.
	* extending-code.xml: Delete.
	* Makefile.am: support new, delete old.

2004-10-01  Adrian Custer <acuster@gnome.org>

	* NEWS 

	* README: Tweak.
	* data-types.xml: add TODO comment.
	* files-opening.xml: change pseudo substeps into alternatives.
	* files-textopen.xml: add procedure skeleton.

2004-10-01  Adrian Custer <acuster@gnome.org>

	* NEWS: Minor tweaks.

	* README: Added 'TODO List'.
	* data-types.xml: Add TODO.
	* files-formats.xml: Tweak csv,tsv,text mentions of druids.
	* files-opening.xml: Tweak notes mentioning druids.
	* files-textopen.xml: Tweak comments.
	* files-saving.xml:  Add notes mentioning druids. Add TODO note.
	* files-textsave.xml: Add TODO note.

2004-10-01  Adrian Custer <acuster@gnome.org>

	* NEWS: Minor tweaks.

	* files-formats.xml: Add TODO comments.
	* files-opening.xml: Change 'location' to 'folder'. Change
	                     'bookmarks' to 'bookmark folders'.
	* files-saving.xml: Change 'location' to 'folder'. Change
	                    'bookmarks' to 'bookmark folders'.
	
2004-10-01  Adrian Custer <acuster@gnome.org>

	* NEWS: Doc Cleanup: Standardize the TODO comments.

	* manual-usage.xml: massage TODO statements for grep.
	* quick-start.xml: massage TODO statements for grep.
	* gui-menus.xml: remove spurious TODO.

	* files-email.xml: massage TODO statements for grep.
	* files-format.xml: massage TODO statements for grep.
	* files-opening.xml: massage TODO statements for grep.
	* files-saving.xml: massage TODO statements for grep.
	* files-ssconvert.xml: massage TODO statements for grep.
	* files-textopen.xml: massage TODO statements for grep.
	* graphics-images.xml: remove spurious TODO.
	* graphics-overview.xml: massage TODO statements for grep.
	* graphics-plot.xml: massage TODO statements for grep.

2004-10-01  J.H.M. Dassen (Ray) <jdassen@debian.org>

	* data-move-copy.xml: Fixed link.
	* files-textopen.xml: Moved "caption" tags into "mediaobject"s where
	they are valid.

2004-09-30  Adrian Custer <acuster@gnome.org>

	* NEWS: Clean the last of the curft. The docs, figures/ directory
	        and figures/Makefile.am are now in sync.

	* figures/pointer_hand_closed: Deleted
	* figures/pointer_hand_open: Deleted
	* figures/Makefile.am: remove the files above
	
2004-09-30  Adrian Custer <acuster@gnome.org>

	* NEWS: Rewrite of the 'Text Import' section of the 'Working with
	        Files' chapter. 
	* NEWS: Cleaned up the figures/ dir. Now only images in the text
	        are present. 

	* gnumeric.xml: Add explicit encoding.
	
	* figures/textguru-import-panel1-withTags.png: Added
	* figures/textguru-import-panel2a-withTags.png: Added
	* figures/textguru-import-panel2b-withTags.png: Added
	* figures/textguru-import-panel3-withTags.png: Added
	* figures/files-csv-import-ex1.png: Deleted
	* figures/files-csv-import-ex2.png: Deleted
	* figures/files-csv-import-ex3.png: Deleted
	* figures/files-csv-import-ex4.png: Deleted
	* figures/files-csv-import-ex5.png: Deleted
	* figures/Makefile.am: Modified for files above. Major edits to
	  sync with files in text and in figures/ directory.
	
	* files-formats.xml: misc edit. Add TODO comments.
	* files-textopen.xml: Wrote.
	
	* graphics-plots.xml: Add a comment w/ stock/surface plot.
	* analysis-solver.xml: Add a comment with sovler-05.png.
	* gui-menus.xml: Change image for format and help menus.
	* gui-toolbars.xml: Add hyperlink, scroll, spin, slide entries.
	* printing.xml: Add fitonetoone button, dropped fit tall/wide.
	
2004-09-30  J.H.M. Dassen (Ray) <jdassen@debian.org>

	* files-textopen.xml, files-saving.xml, graphics-plots.xml,
	files-formats.xml, data-entry-external.xml, gui-menus.xml,
	files-opening.xml, graphics-drawings.xml: Fixed dangling links, typos,
	tags.
	* files-opening.xml, graphics-plots.xml: Moved "caption" tags into
	"mediaobject"s where they are valid.

2004-09-29  J.H.M. Dassen (Ray) <jdassen@debian.org>

	* Makefile.am: Set "figdir" so the figures get installed.

2004-09-29  Adrian Custer <acuster@gnome.org>

	* figures/dialog-fileopen-withTags.png: Added
	* figures/Makefile.am: Modified

	* files-formats.xml: changed links (-files- to -file- );
	* files-opening.xml: changed links (dropped -formats- ); Wrote;
	* files-textopen.xml: changed links (dropped -formats- );
	* files-saving.xml: changed links (dropped -formats- ); encoding
	                    note => sect2; typo;
	* files-textsave.xml: changed links (dropped -formats- );

2004-09-28  Adrian Custer <acuster@gnome.org>

	* files-saving.xml: maybe this one will help.

2004-09-28  Adrian Custer <acuster@gnome.org>

	* files-saving.xml: l674. another stupid breaker. bad me.

2004-09-28  Adrian Custer <acuster@gnome.org>

	* figures/dialog-filesave-compact-withTags.png: Added
	* figures/dialog-filesave-expanded-withTags.png: Added
	* figures/file-formats-import-list.png: Removed.
	* figures/files-formats-list.png: Removed.
	* figures/Makefile.am: Modified
	
	* files-opening.xml: Minor edits. Skeleton outline.
	* files-saving.xml: Edits. Spell Check
	* graphics-plots.xml: Typo.
	
2004-09-26  Adrian Custer <acuster@gnome.org>

	* gnumeric.xml: Edit File chapter. Added files as entities.
	* manual-usage.xml: Edit File chapter intro paragraph.
	
	* files-formats.xml: Added.
	* files-textopen.xml: Added. Moved Text Import here.
	* files-textsave.xml: Added. Moved Text Export here.
	* files-email.xml: Added.
	* files-ssconvert.xml: Added.
	* files-autosave.xml: Deleted. Contents to config chapter.
	* Makefile.am: Added and deleted files above.
	* workbooks.xml: Added autosave section from files-autosave.xml.
	
	* files-overview.xml: Edits.
	* files-formats.xml: Edits. Table and list of formats.
	* files-opening.xml: Edits. How-to and list of formats.
	* files-textopen.xml: Edits.
	* files-saving.xml: Edits. How-to and list of formats.
	* files-textsave.xml: Edits.

2004-09-23  Adrian Custer <acuster@gnome.org>

	* gnumeric.xml: Edit "More Help" chapter title.
	* morehelp.xml: Edit section titles. Minor Edits.
	
2004-09-23  Adrian Custer <acuster@gnome.org>

	* gnumeric.xml: Edit bugs chapter paragraph.
	* manual-usage.xml: Edit bugs chapter paragraph.
	* bugs.xml: Reorganize. Finish bugzilla instructions.
	
2004-09-22  Adrian Custer <acuster@gnome.org>

	* graphics-plots.xml: close the note on line 4026.
	
2004-09-22  Adrian Custer <acuster@gnome.org>

	* gnumeric.xml: Edits for the graphics chapter. Split 'widgets'.
	* manual-usage.xml: Edit graph chapter paragraph.
	* quick-start.xml: Edit the graphing section - changed end to
	                   warning and moved to the begining.
	
	* graphics-overview.xml: First edits.
	* figures/graphical-elements.png: New File.
	* figures/graphical-elements-selected.png: New File.
	* figures/graphical-elements-stacked.png: New File.
	* figures/Makefile.am: Added filename above.
	
	* graphics-plots.xml: First edits.
	* figures/graph-components.png: Added.
	* figures/graph-hierarchy.png: Added.
	* figures/graphguru-components.png: Added.
	* figures/graphs-types-line.png: Added from goffice. Was linegraph.xpm.
	* figures/graphs-types-xyplot.png: Added from goffice. Was scatter.xpm.
	* figures/graphs-types-ring.png: Added from goffice. Was doughnut.xpm.
	* figures/graphs-types-area.png: Added from goffice. Was area.xpm.
	* figures/graphs-types-bar.png: Added from goffice. Was bar.xpm.
	* figures/graphs-types-bubble.png: Added from goffice. Was bubble.xpm.
	* figures/graphs-types-column.png: Added from goffice. Was column.xpm.
	* figures/graphs-types-pie.png: Added from goffice. Was pie.xpm.
	* figures/graphs-types-radar.png: Added from goffice. Was radar.xpm.
	* figures/graphs-types-surface.png: Add from goffice. Was surface.xpm.
	* figures/graphs-types-stock.png: Added from goffice. Was stock.xpm.
	* figures/graph-example-line.png: Added.
	* figures/graph-example-xyplot.png: Added.
	* figures/graph-example-bubble.png: Added.
	* figures/graph-example-pie.png: Added.
	* figures/graph-example-area.png: Added.
	* figures/graph-example-bar.png: Added.
	* figures/graph-example-column.png: Added.
	* figures/graph-example-radar.png: Added.
	* figures/graph-example-ring.png: Added.
	* figures/chart_line_1_1.png: Added from goffice.
	* figures/chart_line_1_2.png: Added from goffice.
	* figures/chart_line_1_3.png: Added from goffice.
	* figures/chart_line_2_1.png: Added from goffice.
	* figures/chart_line_2_2.png: Added from goffice.
	* figures/chart_line_2_3.png: Added from goffice.
	* figures/chart_scatter_1_1.png: Added from goffice.
	* figures/chart_scatter_3_1.png: Added from goffice.
	* figures/chart_scatter_3_2.png: Added from goffice.
	* figures/chart_bubble_1_1.png: Added from goffice.
	* figures/chart_pie_1_1.png: Added from goffice.
	* figures/chart_pie_2_1.png: Added from goffice.
	* figures/chart_area_1_1.png: Added from goffice.
	* figures/chart_area_1_2.png: Added from goffice.
	* figures/chart_area_1_3.png: Added from goffice.
	* figures/chart_bar_1_1.png: Added from goffice.
	* figures/chart_bar_1_2.png: Added from goffice.
	* figures/chart_bar_1_3.png: Added from goffice.
	* figures/chart_column_1_1.png: Added from goffice.
	* figures/chart_column_1_2.png: Added from goffice.
	* figures/chart_column_1_3.png: Added from goffice.
	* figures/chart_radar_1_1.png: Added from goffice.
	* figures/chart_radar_1_2.png: Added from goffice.
	* figures/chart_radar_1_3.png: Added from goffice.
	* figures/chart_ring_1_1.png: Added from goffice.
	* figures/chart_ring_1_2.png: Added from goffice.
	* figures/widget-entryBox.png: Added.
	* figures/widget-entryBox-outlined.png: Added.
	* figures/graphguru-backPanels-none.png: Added.
	* figures/graphguru-backPanels-pattern.png: Added.
	* figures/graphguru-backPanels-gradient.png: Added.
	* figures/graphguru-backPanels-image.png: Added.
	* figures/graphguru-title-font.png: Added.
	* figures/graphguru-axes-category-bounds.png: Added.
	* figures/graphguru-axes-category-details.png: Added.
	* figures/graphguru-axes-category-style.png: Added.
	* figures/graphguru-axes-continuous-bounds.png: Added.
	* figures/graphguru-axes-continuous-format.png: Added.
	* figures/graphguru-plot-barCol.png: Added.
	* figures/graphguru-plot-bubble.png: Added.
	* figures/graphguru-plot-pie.png: Added.
	* figures/graphguru-plot-radar.png: Added.
	* figures/graphguru-plot-ring.png: Added.
	* figures/graphguru-series-data-bubble.png: Added.
	* figures/graphguru-series-data-single.png: Added.
	* figures/graphguru-series-data-xy.png: Added.
	* figures/graphguru-series-error.png: Added.
	* figures/graphguru-series-style-filled.png: Added.
	* figures/graphguru-series-style-line.png: Added.
	* figures/Makefile.am: Added files above.
	
	
	
	
	* graphics-images.xml: Edits.
	
	* graphics-widgets.xml: Split from graphics-drawings.xml. Edits.
	* Makefile.am: Added filename above.
	* figures/widget-label.png: Added.
	* figures/widget-frame.png: Added.
	* figures/widget-checkbox.png: Added.
	* figures/widget-scrollbar.png: Added.
	* figures/widget-spinbutton.png: Added.
	* figures/widget-slider.png: Added.
	* figures/widget-list.png: Added.
	* figures/widget-combobox.png: Added.
	* figures/dialog-properties-labels.png: Added.
	* figures/dialog-properties-frames.png: Added.
	* figures/dialog-properties-checkbox.png: Added.
	* figures/dialog-properties-scrollbar.png: Added.
	* figures/Makefile.am: Added filenames above.
	
	* graphics-drawings.xml: Spit out the widgets. Edits.
	* figures/drawing-line.png: Added.
	* figures/drawing-arrow.png: Added.
	* figures/arrowhead-dimensions.png: Added.
	* figures/drawing-rectangle.png: Added.
	* figures/drawing-oval.png: Added.
	* figures/dialog-properties-line.png: Added.
	* figures/dialog-properties-arrow.png: Added.
	* figures/dialog-properties-rectangle.png: Added.
	* figures/dialog-properties-oval.png: Added.
	* figures/Makefile.am: Added filenames above.


2004-09-08  Jody Goldberg <jody@gnome.org>

	* Release 1.3.90

2004-08-30  J.H.M. Dassen (Ray) <jdassen@debian.org>

	* Makefile.am: Added bugs.xml to entities; sorted entities.

2004-08-29  Jody Goldberg <jody@gnome.org>

	* Release 1.3.2

2004-08-23  Adrian Custer <acuster@gnome.org>

	* gnumeric.xml:
	* welcome.xml: Shuffle the screenshot upwards.
	* morehelp.xml: Write all sections. Remove bugs subsection.
        * bugs.xml: New file. Made into its own chapter. Not quite done.


2004-07-19  J.H.M. Dassen (Ray) <jdassen@debian.org>

	* gnumeric-C.omf: Added DOCTYPE so the file validates with "xmllint
	--noout --valid" (as per "Writing ScrollKeeper OMF Files V1.1");
	updated version/date information.

2004-07-19  Jody Goldberg <jody@gnome.org>

	* Release 1.3.1

2004-07-05  Adrian Custer <acuster@gnome.org>

	* gnumeric.xml: Spell check.
	* welcome.xml: Spell check. Change (tm) to <trademark/>.
	* manual-usage.xml: Spell check.
	* quick-start.xml: Spell check. Change verbatim indents.
    	* data-overview.xml: Minor edits. Spell check.
	* data-types.xml: Fix typos. Change verbatim indents. Spell
	check. Minor edits.
	* data-entry.xml: Minor edits. Spell check.
	* data-entry-advanced.xml: Minor edits. Spell check.
	* file-opening.xml: Change (tm) to <trademark/>.

2004-07-05  Adrian Custer <acuster@gnome.org>

    	* The first major 1.3 edits.
	* TODO: Addded with list of topics that need some gnum. lovin'.
    	* gnumeric.xml: Start of 1.3 docs. Update versions and
	  dates. Split into a developer and stable version.
	* welcome.xml: Update the version number. Split 1.3. Update.
	* manual-usage.xml: Add new user switch.
	* quick-start.xml: Make OS agnostic. Remove redundant "Getting
	  started" section, moved to chapter header in gnumeric.xml.  Added
	  section: "Parts of Gnm". Placed text correctly in <para> to
	  validate.
    	* data-selections.xml: Edit the multiple cell selection text, closes 
          http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=256777.
    

2004-05-15  Adrian Custer <acuster@gnome.org>

	* quick-start.xml: some graphing info.
	
2004-03-28  Jody Goldberg <jody@gnome.org>

	* Release 1.3.0

	* Makefile.am : do not list gnumeric.xml in the entities it is
	  autoadded by the magic in xmldocs.make
	  remove the png figures from the list of entities

2004-03-05  Jody Goldberg <jody@gnome.org>

	* data-format.xml : Add 'mmmmm'

2004-01-14  Jody Goldberg <jody@gnome.org>

	* about-authors.xml : Add jimmac.

2004-01-14  J.H.M. Dassen (Ray) <jdassen@debian.org>

	* gui-other-elements.xml, gui-overview.xml, gui-toolbars.xml, 
	printing.xml: Added missing '.png' suffix to figure filerefs.
	* figures/Makefile.am: Added missing figures to EXTRA_DIST.

2003-12-23  Jody Goldberg <jody@gnome.org>

	* Release 1.2.3

2003-11-26  Jody Goldberg <jody@gnome.org>

	* Release 1.2.2

	* files-autosave.xml : use dialog-autosave.png because it exists.
	* figures/Makefile.am (EXTRA_DIST) : remove non existent auto-save.png
	  and worksheet-print.png

2003-11-11  Andreas J. Guelzow <aguelzow@taliesin.ca>

	* analysis-statistical.xml: remove random generator description
	* data-entry-advanced.xml: add random generator description

2003-11-11  Andreas J. Guelzow <aguelzow@taliesin.ca>

	* analysistools-statistical.xml: incorporate new screen shot
	* figures/Makefile.am: add new file

	for Sebastian Klost:
	* figures/analysistools-ANOVA1-ex1.png: updated
	* figures/analysistools-ANOVA1-ex2.png: updated
	* figures/analysistools-ANOVA2w-ex1.png: updated
	* figures/analysistools-ANOVA2w-ex2.png: updated
	* figures/analysistools-ANOVA2wo-ex1.png: updated
	* figures/analysistools-ANOVA2wo-ex2.png: updated
	* figures/analysistools-correlation-ex1.png: updated
	* figures/analysistools-correlation-ex2.png: updated
	* figures/analysistools-correlation-ex3.png: updated
	* figures/analysistools-correlation.png: updated
	* figures/analysistools-covariance-ex1.png: updated
	* figures/analysistools-covariance-ex2.png: updated
	* figures/analysistools-covariance.png: updated
	* figures/analysistools-descstats-ex1.png: updated
	* figures/analysistools-descstats-ex2.png: updated
	* figures/analysistools-descstats.png: updated
	* figures/analysistools-fourier.png: updated
	* figures/analysistools-ftest-ex1.png: updated
	* figures/analysistools-ftest-ex2.png: updated
	* figures/analysistools-ftest.png: updated
	* figures/analysistools-histogram-bins.png: updated
	* figures/analysistools-histogram-ex1.png: updated
	* figures/analysistools-histogram-ex2.png: updated
	* figures/analysistools-histogram-ex3.png: updated
	* figures/analysistools-histogram.png: updated
	* figures/analysistools-moving-average-ex1.png: updated
	* figures/analysistools-moving-average-ex2.png: updated
	* figures/analysistools-moving-average.png: updated
	* figures/analysistools-outputoptions.png: updated
	* figures/analysistools-ranges.png: updated
	* figures/analysistools-rank-ex1.png: updated
	* figures/analysistools-rank-ex2.png: updated
	* figures/analysistools-rank.png: updated
	* figures/analysistools-regression-ex1.png: updated
	* figures/analysistools-regression-ex2.png: updated
	* figures/analysistools-regression-ex3.png: updated
	* figures/analysistools-regression.png: updated
	* figures/analysistools-sampling-ex1.png: updated
	* figures/analysistools-sampling-ex2.png: updated
	* figures/analysistools-sampling.png: updated
	* figures/analysistools-smoothing-ex1.png: updated
	* figures/analysistools-smoothing-ex2.png: updated
	* figures/analysistools-smoothing.png: updated
	* figures/analysistools-tools.png: updated
	* figures/analysistools-ttest-equal-ex1.png: updated
	* figures/analysistools-ttest-equal-ex2.png: updated
	* figures/analysistools-ttest-equal.png: updated
	* figures/analysistools-ttest-paired-ex1.png: updated
	* figures/analysistools-ttest-paired-ex2.png: updated
	* figures/analysistools-ttest-paired.png: updated
	* figures/analysistools-ttest-unequal-ex1.png: updated
	* figures/analysistools-ttest-unequal-ex2.png: updated
	* figures/analysistools-ttest-unequal.png: updated
	* figures/analysistools-ttest.png: updated
	* figures/analysistools-ztest-ex1.png: updated
	* figures/analysistools-ztest-ex2.png: updated
	* figures/analysistools-ztest.png: updated
	* figures/analysistools-descstats-ex1-options.png: new
	* gnumeric_doc_analysistools.gnumeric: data for analysis tools 
	  screen shots

2003-11-11  J.H.M. Dassen (Ray) <jdassen@debian.org>

	* C/Makefile.am: Removed datasource.xml from entities as it doesn't
	exist yet.

2003-11-04  Andreas J. Guelzow <aguelzow@taliesin.ca>

	* configuration-preferences.xml: add text
	* figures/Makefile.am: add new files
	
	for Sebastian Klost:
	* figures/preferences-files.png: new
	* figures/preferences-font-header.png: new
	* figures/preferences-font.png: new
	* figures/preferences-sorting.png: new
	* figures/preferences-undo.png: new
	* figures/preferences-various-internal.png: new
	* figures/preferences-various.png: new
	* figures/preferences-windows.png: new

2003-11-03  Andreas J. Guelzow <aguelzow@taliesin.ca>

	* figures/printing-setup-margins.png: delete
	* figures/printing-setup-page-1.png: delete
	* figures/Makefile.am: remove deleted files

2003-11-02  Jody Goldberg <jody@gnome.org>

	* welcome.xml : minor edits.

	* Makefile.am (include) : Actually install the man pages.

2003-11-02  J.H.M. Dassen (Ray) <jdassen@debian.org>

	* figures/Makefile.am (EXTRA_DIST): Sorted in sort(1) order; added
	missing images. (Debian #218580)

2003-10-08  Jody Goldberg <jody@gnome.org>

	* Release 1.2.1

2003-10-05 Adrian Custer <acuster@gnome.org>

	* quick-start.xml: edit the graphing section.
	* figures/gnumeric-icon-24.png: add.

2003-09-27  J.H.M. Dassen (Ray) <jdassen@debian.org>

	* ssconvert.1: New.
	* Makefile.am: Include ssconvert.1

2003-09-16 Adrian Custer <acuster@gnome.org>

	* quick-start.xml: update the graphing section.
	* figures/example-data.png: add.
	* figures/example-columnSelect.png: add.
	* figures/example-colGraph.png: add.
	* figures/example-colGraph-modified.png: add.
	* figures/menu-context-graph.png: add.
	* figures/button-graphEditor-add.png: add.
	
2003-09-16 Adrian Custer <acuster@gnome.org>

	* welcome.xml: Updated with release announcement info.
	* data-entry-external.xml: replace a <code> tag with <literal>.
	
2003-09-15 Adrian Custer <acuster@gnome.org>

	* welcome.xml: Updated.

2003-09-15 Adrian Custer <acuster@gnome.org>

	* datasource.xml: remove as separate chapter, add to data chapter.
	* data-entry-external.xml: Added.
	* printing.xml: Added patch from Andreas for headers/footers.
	* figures/gnumeric-icon.png: Added the icon.
	* figures/gnumeric-power-example.png: Updated.
	* figures/gnumeric-empty.png: Updated.

2003-09-15  Jody Goldberg <jody@gnome.org>

	* Release 1.2.0

2003-09-13 Adrian Custer <acuster@gnome.org>

	* gnumeric.1: Update the man page.

2003-09-12 Adrian Custer <acuster@gnome.org>

	* quick-start.xml: Remove a false statement of mine.
	
2003-09-10  Jody Goldberg <jody@gnome.org>

	* Release 1.1.90

2003-09-09 Adrian Custer <acuster@gnome.org>

	* extending-python.xml: Added text from Charles Twardy.
	* gnumeric.xml: Added Charles Twardy as contributor.
	* welcome.xml: minor edits.
	* quick-start.xml: removed a period.
	
2003-09-06 Adrian Custer <acuster@gnome.org>

	* gnumeric.xml: Downgrade to Docbook 4.1.2.

2003-08-29  J.H.M. Dassen (Ray) <jdassen@debian.org>

	* gnumeric.1: Fixed incorrect section argument to .TH .
	  (Fixes Debian bug report #207705)

2003-08-22  J.H.M. Dassen (Ray) <jdassen@debian.org>

	* Makefile.am: Added analysis-goalseek.xml, analysis-scenarios to
	  entities.

2003-08-21  Jody Goldberg <jody@gnome.org>

	* Release 1.1.20

2003-08-09 Adrian Custer <acuster@nature.berkeley.edu>

	* Add link id's for filters

2003-08-09 Adrian Custer <acuster@nature.berkeley.edu>

	* Add analysis-scenarios.xml
	* Split analysis-goalseek.xml from analysis-solver.xml
	* Fix erros.

2003-08-09 Adrian Custer <acuster@nature.berkeley.edu>

	* Add to graphics-drawings.xml links for help buttons.

2003-07-16  Jody Goldberg <jody@gnome.org>

	* functions.xml : regenerate with all the recent fixes

2003-07-09 Adrian Custer <acuster@nature.berkeley.edu>

	* Split data-entry-advanced from data-entry
	* Add data-generate.xml

2003-07-09 Adrian Custer <acuster@nature.berkeley.edu>

	* Added README

2003-07-07 Adrian Custer <acuster@nature.berkeley.edu>

	* New chapter organization
	* New figures/*.png names
	* Changed all <graphic> to <mediaobject>
	* Added "Getting Started" chapter
	* Set up links for help buttons in dialogs
	* Added section headings for future text.

2003-06-01 Adrian Custer <acuster@nature.berkeley.edu>

	* Complete redsign of gnumeric/doc/C/

2003-06-01 Adrian Custer <acuster@nature.berkeley.edu>

	* New ChangeLog