File: ChangeLog

package info (click to toggle)
gtkgraph 0.6.0-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,988 kB
  • ctags: 1,981
  • sloc: ansic: 24,066; sh: 7,174; makefile: 222; sed: 93; yacc: 83
file content (865 lines) | stat: -rw-r--r-- 27,591 bytes parent folder | download
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
1999-12-31 11:39  aaron1

	* ChangeLog, src/main.c: Enter==Apply in range dialog

1999-12-31 11:20  aaron1

	* ChangeLog, src/app.h: Comment fix

1999-12-31 09:59  aaron1

	* ChangeLog, po/cat-id-tbl.c, po/gtkgraph.pot, src/print.c: String
	fix

1999-12-31 09:46  aaron1

	* ChangeLog, src/callbacks.c, src/dialogs.c: Minor cleanups, enter
	== OK in some dialogs

1999-12-30 23:27  aaron1

	* BUGS, ChangeLog, src/mathparse.c, src/mathparse.y,
	src/mp_parser.c: Calculator variable bugfix

1999-12-30 20:36  aaron1

	* ChangeLog, src/function.c: More option-menu related bugfixes

1999-12-30 20:22  aaron1

	* BUGS, ChangeLog, TODO, po/cat-id-tbl.c, po/gtkgraph.pot,
	src/about.c, src/data.c, src/dialogs.c, src/function.c, src/main.c,
	src/menus.c, src/prefs.h: Small bug fixes and reorganizations

1999-12-30 19:12  aaron1

	* ChangeLog, configure, configure.in, gtkgraph.spec,
	src/callbacks.c: Bugfix with arrow key navigation

1999-12-30 17:09  aaron1

	* ChangeLog, src/callbacks.c, src/function.c, src/gtkplot.c: Minor
	bug fixes

1999-12-30 16:35  aaron1

	* ChangeLog, TODO, po/gtkgraph.pot, src/dialogs.c, src/function.c:
	Option menu bugfix

1999-12-30 15:52  aaron1

	* ChangeLog, po/gtkgraph.pot, src/callbacks.c, src/callbacks.h,
	src/main.c: Another wonderful patch from Peter: selecting an area
	now zools into it.

1999-12-30 00:29  aaron1

	* ChangeLog, TODO, po/gtkgraph.pot, src/app.h, src/callbacks.c,
	src/dialogs.c, src/function.c: Rename works in all contexts

1999-12-29 22:50  aaron1

	* AUTHORS, ChangeLog, TODO, po/cat-id-tbl.c, po/gtkgraph.pot,
	src/about.c, src/app.h, src/callbacks.c, src/curvefit.c,
	src/data.c, src/function.c, src/main.c, src/mathparse.c: Datasets
	report errors

1999-12-29 20:30  aaron1

	* ChangeLog, TODO, po/cat-id-tbl.c, po/gtkgraph.pot, src/app.h,
	src/data.c, src/dialogs.c: Change name works with datasets

1999-12-29 20:01  aaron1

	* ChangeLog, TODO, po/cat-id-tbl.c, po/gtkgraph.pot, src/app.h,
	src/data.c, src/dialogs.c, src/function.c: Delete dataset working,
	color cycle with new datsets

1999-12-29 17:49  aaron1

	* ChangeLog, po/cat-id-tbl.c, po/gtkgraph.pot, src/app.h,
	src/calc.c, src/callbacks.c, src/command_line.c, src/data.c,
	src/dialogs.c, src/function.c, src/main.c, src/mathparse.c,
	src/prefs.c, src/prefs.h: Color selection patch from Peter.

1999-12-29 16:57  aaron1

	* ChangeLog, src/app.h, src/data.c, src/dialogs.c, src/dialogs.h,
	src/function.c, src/main.c: More work on add/del/change

1999-12-29 12:30  aaron1

	* ChangeLog, src/function.c: Recycle functions

1999-12-29 12:07  aaron1

	* ChangeLog, TODO, po/cat-id-tbl.c, po/gtkgraph.pot, src/app.h,
	src/dialogs.c, src/dialogs.h, src/function.c, src/function.h,
	src/mathparse.c: memory leak fixes, function improvements

1999-12-29 00:30  aaron1

	* ChangeLog, po/cat-id-tbl.c, po/gtkgraph.pot, src/callbacks.c,
	src/data.c, src/data.h, src/dialogs.c, src/dialogs.h,
	src/function.c, src/function.h, src/prefs.h: Function and dataset
	handling is a little less broken, rename dialog coded but untested

1999-12-28 22:28  aaron1

	* ChangeLog, src/function.c, src/function.h: Add necessary files

1999-12-28 22:24  aaron1

	* ChangeLog, po/cat-id-tbl.c, po/gtkgraph.pot, src/Makefile.am,
	src/Makefile.in, src/app.h, src/callbacks.c, src/data.c,
	src/data.h, src/dialogs.c, src/main.c, src/prefs.h: Add/remove
	beginning

1999-12-28 15:59  aaron1

	* ChangeLog, src/app.h, src/data.c, src/dialogs.c: Dialogs can only
	be on the screen once (no multiple instances of the same dialog)

1999-12-28 15:23  aaron1

	* ChangeLog, po/cat-id-tbl.c, po/gtkgraph.pot, src/app.h,
	src/curvefit.c, src/curvefit.h, src/data.c, src/dialogs.c: 3 curve
	fitting types added, another patch from Peter Osterlund
	<peter.osterlund@mailbox.swipnet.se>

1999-12-28 11:03  aaron1

	* ChangeLog, po/gtkgraph.pot, src/dialogs.c: Fix segfault with
	color selection

1999-12-28 10:13  aaron1

	* ChangeLog, src/data.c: load bugfix

1999-12-28 00:13  aaron1

	* ChangeLog, po/cat-id-tbl.c, po/gtkgraph.pot, src/mathparse.c,
	src/mathparse.h: Sign function

1999-12-28 00:00  aaron1

	* ChangeLog, src/data.c: Load files by whitespace, not tabs

1999-12-27 10:26  aaron1

	* ChangeLog, src/app.h, src/data.c, src/dialogs.c: Connect line
	support

1999-12-27 10:01  aaron1

	* COPYING, COPYING.LGPL, ChangeLog: License fixes

1999-12-27 09:58  aaron1

	* ChangeLog, src/mathparse.c, src/menus.c: Hyperbolic functions
	fixed

1999-12-27 09:47  aaron1

	* ChangeLog, po/gtkgraph.pot, src/main.c: Make build_dataset more
	symetric with data_new_entry.

1999-12-26 21:20  aaron1

	* ChangeLog, po/gtkgraph.pot, src/callbacks.c, src/data.c,
	src/dialogs.c, src/main.c, src/mathparse.c, src/menus.c,
	src/prefs.c: Removed all C++ style comments

1999-12-26 21:10  aaron1

	* ChangeLog, po/gtkgraph.pot, src/dialogs.c, src/main.c: OK/Cancel
	consistancy (thanks Peter sterlund)

1999-12-26 11:24  aaron1

	* ChangeLog, configure, configure.in, gtkgraph.spec,
	po/gtkgraph.pot, src/main.c, src/prefs.h: Fix compile warning with
	default_colors

1999-12-25 14:55  aaron1

	* ChangeLog, src/app.h, src/data.c, src/main.c, src/prefs.h: Data
	label reallocates space, default colors are more interesting

1999-12-25 14:05  aaron1

	* BUGS, ChangeLog, src/app.h, src/callbacks.c, src/data.c:
	Disappearing data points bug fixed.

1999-12-24 22:03  aaron1

	* BUGS, ChangeLog, src/mathparse.y: "evil parenthesis" bug appears
	to be gone

1999-12-24 14:56  aaron1

	* debian/menu: Added debian menu entry

1999-12-24 14:52  aaron1

	* ChangeLog, po/gtkgraph.pot, src/callbacks.c: Interpreting range
	fields expanded to scrolling/zooming, cleaned up.

1999-12-24 13:27  aaron1

	* ChangeLog, debian/changelog, debian/control, debian/copyright,
	debian/gtkgraph.1, debian/manpage.1.ex: Debian updates

1999-12-24 13:07  aaron1

	* ChangeLog, po/gtkgraph.pot, src/callbacks.c, src/main.c: Entry
	<--> Structure sync bug fixed

1999-12-24 12:39  aaron1

	* ChangeLog, src/main.c: Option menu displays right

1999-12-23 15:08  aaron1

	* BUGS, ChangeLog, po/cat-id-tbl.c, po/gtkgraph.pot,
	src/callbacks.c, src/data.c, src/dialogs.c, src/gtkitementry.c,
	src/gtkitementry.h, src/main.c, src/menus.c, src/prefs.c,
	src/prefs.h: Various fixes and improvements

1999-12-22 18:33  aaron1

	* ChangeLog, po/gtkgraph.pot, src/callbacks.c, src/main.c: The
	fields in the controls dialog are parsed and evaluated... meaning
	that they can contain real arithmatic expressions, e.g. '2*pi'.

1999-12-22 18:08  aaron1

	* COPYING, COPYING.LGPL, ChangeLog, po/gtkgraph.pot,
	src/Makefile.am, src/Makefile.in, src/dialogs.c,
	src/gtkfontcombo.c, src/gtkfontcombo.h, src/gtkpsfont.c,
	src/gtkpsfont.h: Selectable font for axes' labels

1999-12-22 16:46  aaron1

	* ChangeLog, src/callbacks.c, src/gtkplot.c, src/gtkplot.h,
	src/gtkplotcanvas.c, src/gtkplotcanvas.h, src/gtkplotlayout.c,
	src/gtkplotlayout.h, src/gtkplotpc.c, src/gtkplotpc.h,
	src/gtkplotprint.c, src/gtkplotprint.h, src/gtkplotps.c,
	src/gtkplotps.h, src/gtksheet.c, src/gtksheet.h, src/main.c,
	src/prefs.c: Commit new versions of gtkplot and gtksheet

1999-12-22 16:28  aaron1

	* BUGS, ChangeLog, po/cat-id-tbl.c, po/gtkgraph.pot, src/data.c:
	Change data 'thing's to use an array of handles like the functions
	do. This fixes the bug which prevents load from working stably.

1999-12-22 16:09  aaron1

	* ChangeLog, po/gtkgraph.pot, src/calc.c, src/callbacks.c,
	src/main.c, src/mathparse.c: Make entryidx's four entries be
	handles to the pointers in the func_thing

1999-12-22 15:47  aaron1

	* ChangeLog, po/gtkgraph.pot, src/app.h, src/calc.c,
	src/callbacks.c, src/dialogs.c, src/main.c, src/mathparse.c,
	src/prefs.c, src/prefs.h: More work on rewrite, some things are in
	bad states

1999-12-14 19:48  aaron1

	* src/: gtkplotfont.c, gtkplotfont.h, gtkpsfont.c, gtkpsfont.h: New
	files from GtkPlot

1999-12-14 19:48  aaron1

	* BUGS, ChangeLog, po/cat-id-tbl.c, po/gtkgraph.pot,
	src/Makefile.am, src/Makefile.in, src/app.h, src/calc.c,
	src/callbacks.c, src/callbacks.h, src/data.c, src/dialogs.c,
	src/gtkitementry.c, src/gtkplot.c, src/gtkplot.h,
	src/gtkplotcanvas.c, src/gtkplotcanvas.h, src/gtkplotlayout.c,
	src/gtkplotlayout.h, src/gtkplotpc.c, src/gtkplotpc.h,
	src/gtkplotprint.c, src/gtkplotps.c, src/gtksheet.c,
	src/gtksheet.h, src/main.c, src/mathparse.c, src/mathparse.h,
	src/prefs.c, src/prefs.h: Function mechanism totally redone. Right
	now, almost nothing works, and many thigs desperately need to be
	fixed. Upgraded to GtkPlot 5.0 and GtkSheet 9.0. Fixed bug where
	changing the axis color didn't work.

1999-12-09 17:45  aaron1

	* Makefile.in, acconfig.h, aclocal.m4, config.guess, config.h.in,
	config.sub, configure, configure.in, ltconfig, ltmain.sh,
	src/Makefile.in, src/callbacks.c, src/main.c, src/print.c: Work
	without Imlib

1999-12-08 18:47  aaron1

	* ChangeLog, src/dialogs.c: Fix STUPID axis bug

1999-12-08 18:32  aaron1

	* ChangeLog, src/data.c: ANSI fixes

1999-12-06 18:35  aaron1

	* ChangeLog, src/main.c: Fix Gtk-WARNINGs

1999-12-06 16:50  aaron1

	* ChangeLog, po/gtkgraph.pot, src/data.c, src/main.c: Use the data
	pointer for data points - should work with multiple sets now

1999-12-06 15:42  aaron1

	* ChangeLog, src/callbacks.c, src/gtkplot.c, src/gtkplot.h,
	src/gtkplotprint.c, src/main.c: Another step toward true dynamic
	function allocation

1999-12-06 12:20  aaron1

	* ChangeLog, src/mathparse.y, src/mp_parser.c: Fix parser code to
	reflect memory leak fixes

1999-12-06 12:17  aaron1

	* src/: main.c, mathparse.c, mp_parser.c, prefs.c: Major cleanup
	patch commit

1999-12-06 12:12  aaron1

	* ChangeLog, po/fr.po, src/callbacks.c, src/gtkplot.c,
	src/gtkplotcanvas.c, src/gtkplotlayout.c, src/gtksheet.c: Commit
	large memory leak patch

1999-12-05 21:46  aaron1

	* ChangeLog, debian/changelog, debian/files: Update version in
	debian files

1999-12-05 16:40  aaron1

	* ChangeLog, src/app.h: Remove unneccesary macro

1999-12-05 16:40  aaron1

	* ChangeLog, configure: Regenerated configure script

1999-12-05 16:40  aaron1

	* configure.in, gtkgraph.spec: Version number change

1999-12-05 16:02  aaron1

	* ChangeLog, po/gtkgraph.pot, po/ja.gmo, po/ja.po, src/callbacks.c,
	src/data.c: Updated Japeneese translation

1999-12-04 20:52  aaron1

	* ChangeLog, src/print.c, src/print.h: Added print.[ch]

1999-12-04 15:22  aaron1

	* COPYING, COPYING.LGPL, ChangeLog, po/cat-id-tbl.c,
	po/gtkgraph.pot, src/data.c, src/mathparse.c: Take out stuff that
	doesn't work; add a few strings

1999-12-04 10:05  aaron1

	* ChangeLog, po/POTFILES.in, po/cat-id-tbl.c, po/gtkgraph.pot,
	src/Makefile.am, src/Makefile.in, src/callbacks.c, src/menus.c:
	Print dialog

1999-12-03 20:55  aaron1

	* ChangeLog, src/gtkplot.c, src/gtkplotprint.c: Fix dumb bug that
	was introduced with GtkPlot cleanups

1999-12-03 16:17  aaron1

	* ChangeLog, po/gtkgraph.pot, src/gtkplot.c, src/gtkplot.h,
	src/gtkplotcanvas.h, src/gtkplotfont.c, src/gtkplotpc.h,
	src/gtkplotprint.c, src/gtksheet.h, src/main.c: Major code cleanups

1999-12-01 16:49  aaron1

	* ChangeLog, debian/changelog, debian/control, debian/copyright,
	debian/docs, debian/files, debian/postinst.debhelper,
	debian/prerm.debhelper, debian/rules, debian/substvars,
	po/gtkgraph.pot: Added debian files

1999-12-01 15:03  aaron1

	* ChangeLog, src/data.c: Fixed compile error

1999-12-01 14:54  aaron1

	* ChangeLog, src/callbacks.h, src/data.c: Datasets should work now

1999-12-01 14:48  aaron1

	* ChangeLog, src/gtkplotpc.c, src/gtkplotpc.h, src/gtkplotprint.c,
	src/gtkplotprint.h: Add some files from gtkplot which were left out

1999-12-01 13:29  aaron1

	* COPYING, COPYING.LGPL, ChangeLog: License updates

1999-11-30 18:55  aaron1

	* ChangeLog, po/gtkgraph.pot, src/Makefile.am, src/Makefile.in,
	src/callbacks.c, src/curvefit.c, src/curvefit.h, src/data.c,
	src/dialogs.c, src/gtkplot.c, src/gtkplot.h, src/gtkplotcanvas.c,
	src/gtkplotcanvas.h, src/gtkplotfont.c, src/gtkplotfont.h,
	src/gtkplotlayout.c, src/gtkplotlayout.h, src/gtkplotps.c,
	src/gtkplotps.h, src/main.c, src/mathparse.c: New version of
	GtkPlot. Also fixed a few bugs with titles and grids.

1999-11-30 15:43  aaron1

	* ChangeLog, src/mathparse.c: Comma support in parser

1999-11-27 23:39  aaron1

	* ChangeLog, po/cat-id-tbl.c, po/gtkgraph.pot, src/dialogs.c: UI
	implementation of "Auto resize?"

1999-11-27 23:29  aaron1

	* ChangeLog, po/gtkgraph.pot, src/app.h, src/data.c: Put colors in
	right places

1999-11-27 22:54  aaron1

	* BUGS, ChangeLog: A few new bugs

1999-11-27 22:22  aaron1

	* ChangeLog, po/cat-id-tbl.c, po/gtkgraph.pot, src/app.h,
	src/curvefit.c, src/curvefit.h, src/data.c, src/data.h,
	src/dialogs.c, src/main.c, src/prefs.h: Nothing looks difference
	except that data load/save are broken. But inside, wonders have
	taken place.

1999-11-27 15:08  aaron1

	* ChangeLog, po/cat-id-tbl.c, po/gtkgraph.pot, src/about.c,
	src/app.h, src/calc.c, src/callbacks.c, src/callbacks.h,
	src/command_line.c, src/curvefit.c, src/data.c, src/history.c,
	src/main.c, src/menus.c, src/prefs.c: Beginings of dynamic data
	system, and bug fix with point dragging

1999-11-27 14:05  aaron1

	* ChangeLog, po/gtkgraph.pot, src/data.c, src/data.h,
	src/dialogs.c, src/dialogs.h, src/main.c, src/menus.c: Changing
	icons works. New units field in data settings. Regression checkbox
	moved to dialog.

1999-11-27 12:18  aaron1

	* ChangeLog, src/command_line.c: Fix unary minus in calc bug

1999-11-27 12:18  aaron1

	* ChangeLog, TODO, configure, configure.in, gtkgraph.spec,
	po/cat-id-tbl.c, po/gtkgraph.pot, po/ja.gmo, po/ja.po, src/about.c,
	src/calc.c, src/callbacks.c, src/callbacks.h, src/command_line.c,
	src/curvefit.c, src/data.c, src/dialogs.c, src/dialogs.h,
	src/history.c, src/main.c, src/mathparse.c, src/menus.c,
	src/prefs.c, src/prefs.h, src/stringfuncs.c,
	src/xpm/data-cross.xpm, src/xpm/data-diamond.xpm,
	src/xpm/data-plus.xpm, src/xpm/data-square.xpm,
	src/xpm/data-star.xpm, src/xpm/data-tridown.xpm,
	src/xpm/data-triup.xpm: * Major code cleanups: locations and
	formatting * Settings dialog for data plot * New specfile *
	Japenesse translation * Fix data edit menu bug * Double clicking on
	a title in the graph brings up a rename dialog

1999-11-24 21:22  aaron1

	* ChangeLog, src/dialogs.c: Tabbed up prefs dialog

1999-11-24 20:52  aaron1

	* ChangeLog, src/main.c: Another dumb bug: exterm marray[0];. gcc
	let this go but Tru64 cc doesn't like it.

1999-11-24 20:31  aaron1

	* ChangeLog, po/cat-id-tbl.c, po/gtkgraph.pot, src/curvefit.c,
	src/data.c: Curve fitting improvements

1999-11-24 19:15  aaron1

	* ChangeLog, src/data.c, src/data.h: Finally regression is
	optional!

1999-11-24 19:01  aaron1

	* ChangeLog, src/data.c: How many times can I screw up in one day?

1999-11-24 18:28  aaron1

	* src/main.c: More translatable strings

1999-11-24 18:18  aaron1

	* ChangeLog: More translatable strings

1999-11-24 18:18  aaron1

	* src/data.c: [no log message]

1999-11-24 10:23  aaron1

	* ChangeLog, gtkgraph.spec: Another oops.

1999-11-24 09:18  aaron1

	* ChangeLog, configure: Oops

1999-11-24 09:18  aaron1

	* ChangeLog, README, configure.in, gtkgraph.spec: 0.5.1 release

1999-11-24 09:06  aaron1

	* ChangeLog, configure, configure.in, po/cat-id-tbl.c, po/fr.gmo,
	po/fr.po, po/gtkgraph.pot, src/main.c, src/menus.c: French
	translation

1999-11-21 22:42  aaron1

	* ChangeLog, Makefile.in, config.h.in, configure, configure.in,
	po/POTFILES.in, po/cat-id-tbl.c, po/gtkgraph.pot, src/Makefile.in,
	src/app.h, src/main.c, src/menus.c, src/menus.h: Real
	internationalization

1999-11-21 21:43  aaron1

	* ChangeLog, src/mathparse.c: Aieee bad bug with a[sin][cos][tan]

1999-11-20 10:27  aaron1

	* ChangeLog, gtkgraph.spec: Fixed URL in specfile

1999-11-16 22:07  aaron1

	* ChangeLog, src/data.c, src/data.h: Load & save datasets

1999-11-15 17:03  aaron1

	* ChangeLog, src/callbacks.c: Fixed cancel bug in export bitmap

1999-11-15 14:47  aaron1

	* ChangeLog, src/mathparse.c, src/mathparse.h: Tiny cleanup with
	stack arrays: preperation for many, dynamic stacks as they are
	implemented for range fields, etc

1999-11-13 17:30  aaron1

	* ChangeLog, src/callbacks.c, src/curvefit.h, src/data.c,
	src/main.c: Plot resizes according to entered points

1999-11-13 16:36  aaron1

	* ChangeLog, src/Makefile.am, src/Makefile.in, src/curvefit.c,
	src/curvefit.h, src/data.c, src/main.c: Linear regression working -
	now displays line of best fit

1999-11-13 12:47  aaron1

	* ChangeLog, configure, configure.in: Debugging is off

1999-11-13 12:11  aaron1

	* configure, src/callbacks.h, src/data.c, src/main.c,
	src/mathparse.c, src/mathparse.tab.c, src/mp_parser.c: Stat plot is
	incomplete but works. Fixed old build bug

1999-11-12 23:55  aaron1

	* ChangeLog, configure, configure.in, src/Makefile.am,
	src/Makefile.in, src/about.c, src/callbacks.h, src/confdefs.h,
	src/data.c, src/data.h, src/gtkitementry.c, src/gtkitementry.h,
	src/gtksheet.c, src/gtksheet.h, src/main.c, src/menus.c,
	src/menus.h: Source cleanups, dynamic about box version generation,
	spreadsheet for stat plot

1999-11-12 17:12  aaron1

	* src/: about.c, calc.c, history-mini.xpm, xpm/history-mini.xpm:
	Move xpms to src/xpm. Fixed a "paper hat" bug in the about dialog

1999-11-11 21:23  aaron1

	* ChangeLog, gtkgraph.spec: Oops... rpm spec is wrong

1999-11-11 21:07  aaron1

	* src/: about.c, calc.c, calc.h, callbacks.c, command_line.c,
	dialogs.c, main.c, mathparse.c, mathparse.h, mathparse.tab.c,
	mathparse.y, prefs.c, prefs.h: Major commit...	* Found out that I
	accidentally included the wrong COPYING file!! Hope my code i s
	still GPL.  * Many improvements in calculator window ... what do do
	with the text in the fie ld after the user presses enter is
	selectable * Variables are supported. Try n=2 and then 2n in the
	calculator window

1999-11-01 20:50  aaron1

	* ChangeLog, src/about.c, src/calc.c, src/main.c, src/menus.h,
	src/prefs.h: Removal of scrollbars. Fixed bug in calculation error
	handling

1999-10-31 12:34  aaron1

	* ChangeLog: We have a real changelog now!

1999-10-31 12:17  aaron1

	* BUGS, src/main.c, src/menus.c, src/menus.h: Keybindings work.

1999-10-31 11:51  aaron1

	* BUGS, src/calc.c, src/command_line.c: Fix stupidity with history
	mechanism. I finally understand it :)

1999-10-29 23:02  aaron1

	* src/about.c: Fix up about dialog

1999-10-27 21:47  aaron1

	* BUGS, src/callbacks.c, src/callbacks.h, src/dialogs.c,
	src/main.c: Added more translatable strings, put titles on windows,
	fixed typo on status bar, made controls window show/hide properly

1999-10-26 22:51  aaron1

	* BUGS, PHILOSOPHY, TODO, src/Makefile.am, src/Makefile.in,
	src/about.c, src/about.h, src/calc.c, src/calc.h, src/callbacks.c,
	src/callbacks.h, src/dialogs.c, src/dialogs.h, src/main.c,
	src/menus.h: * Added about box * Fixed horrible calculation window
	bug with the help of owen from #gtk+ * Added default buttons to
	dialogs * Put in menu item for evaluation - not implemented yet

1999-10-26 18:42  aaron1

	* src/: callbacks.c, callbacks.h, dialogs.c, main.c, menus.h,
	prefs.c, prefs.h: Whether to show titles controled in prefs, plot
	title can now be changed!

1999-09-24 10:34  aaron1

	* src/: mathparse.c, mathparse.h: Fixed some stupid bugs

1999-09-16 12:25  aaron1

	* src/: calc.c, mathparse.c: * Nicer font size in calculator *
	fixed floating point factorial (rounds - should this be
	disallowed?)

1999-09-12 22:21  aaron1

	* configure, configure.in, gtkgraph.spec: Added spec file

1999-09-11 21:23  aaron1

	* src/: dialogs.c, mathparse.c, mathparse.h, prefs.c, prefs.h:
	Support for degrees and radians

1999-09-09 19:27  aaron1

	* src/: calc.c, mathparse.tab.c, mathparse.y: Higher percision in
	calculator window. Absolute operator (" | exp | ").

1999-08-24 01:03  aaron1

	* BUGS, TODO, configure, configure.in, src/calc.c, src/calc.h,
	src/callbacks.c, src/callbacks.h, src/command_line.c,
	src/dialogs.c, src/dialogs.h, src/gtkplot.c, src/gtkplot.h,
	src/history.c, src/main.c, src/mathparse.c, src/mathparse.h,
	src/mathparse.tab.c, src/mathparse.y, src/mathparsesym.h,
	src/menus.h, src/prefs.c, src/prefs.h: 0.4.0 commit. Lots of
	improvements.

1999-08-07 00:00  aaron1

	* BUGS, TODO, configure, configure.in, src/calc.c, src/callbacks.c,
	src/main.c: Cleanups for first public release. A few bugs fixed or
	worked arround.

1999-08-05 23:10  aaron1

	* src/history-mini.xpm: Forgot to commit a new pixmap. Darn.

1999-08-05 23:10  aaron1

	* src/: calc.c, calc.h, callbacks.c: Fixed the bug with manual
	range selection & the grids. It was a stupid typo.
	
	I'll be gone for the next three weeks diving accros the western
	half of the US. If I find a phone line anywhere, I'll try to commit
	any work I do in the car.

1999-08-04 23:11  aaron1

	* BUGS, src/Makefile.am, src/Makefile.in, src/calc.c, src/calc.h,
	src/callbacks.c, src/callbacks.h, src/command_line.c,
	src/command_line.h, src/history.c, src/history.h, src/main.c,
	src/mathparse.c: New additions: * A history list and vertical
	scrollbar for the calculator window * A slider that doesn't work
	yet for simple zooming * Many bugs

1999-08-04 02:06  aaron1

	* BUGS, TODO, configure.in, src/calc.c, src/calc.h,
	src/callbacks.c, src/callbacks.h, src/main.c, src/mathparse.c,
	src/mathparse.h, src/menus.h: Added precise range positioning. At
	this point it doesn't work right with the ti cks and will cause a
	crazy grid. That will be fixed soon. The calculator window now
	works and is complete other than interface touch-ups.

1999-08-03 15:52  aaron1

	* src/: callbacks.c, main.c, mathparse.c, mathparse.tab.c,
	mathparse.y: Parsing improvements. Errors are now correctly
	detected. In the event of an error, the line will not be drawn.

1999-08-03 01:52  aaron1

	* configure.in, src/Makefile.am, src/Makefile.in, src/callbacks.c,
	src/prefs.c, src/prefs.h, src/stringfuncs.c, src/stringfuncs.h:
	Support for reading and saving preferences is in. To try it out,
	run it, then edit the ~/.gtkgraphrc file with the colors you want.
	Then enter an equation and hit graph. It should come up with the
	new colors specified in the rc file. None of it acctually works
	from an interface perspctive though until there is a preferences
	dialog.

1999-07-29 13:36  aaron1

	* TODO, src/callbacks.c, src/gtkplot.c, src/gtkplot.h,
	src/gtkplotlayout.c, src/gtkplotps.c, src/gtkplotps.h, src/main.c,
	src/mathparse.c, src/mathparse.h, src/mathparse.tab.c,
	src/mathparse.y: * Parsing improvments: just one bug to fix up *
	More functions (sin, tan, abs, log) * Intelligent legend design

1999-07-28 14:55  aaron1

	* TODO, src/mathparse.c, src/mathparse.h, src/mathparse.tab.c,
	src/mathparse.y: Unary minus and factorial (!) now work

1999-07-28 01:16  aaron1

	* Makefile.in, TODO, configure, configure.in, src/callbacks.c,
	src/callbacks.h, src/gtkplotlayout.c, src/main.c, src/menus.h,
	src/prefs.h: Scrolling and zooming are now implemented. Development
	is going at lightspeed. Three commits or something today, each
	after reaching a milestone. Version is now 0.3.0.

1999-07-27 22:34  aaron1

	* BUGS, HACKING, INSTALL, PHILOSOPHY, VERSION: Documentation
	updates

1999-07-27 20:38  aaron1

	* TODO, src/callbacks.c, src/main.c, src/mathparse.c: The plotting
	of multiple functions now works!

1999-07-27 15:21  aaron1

	* TODO, src/mathparse.c: Plotting from the entry field now works!
	It spits out bogus errors taht you can usually ignore. Next will be
	support for multiple functions.

1999-07-27 13:30  aaron1

	* bindtextdom.c, cat-compat.c, dcgettext.c, dgettext.c,
	explodename.c, finddomain.c, gettext.c, gettext.h, gettextP.h,
	hash-string.h, intl-compat.c, l10nflist.c, libgettext.h,
	linux-msg.sed, loadinfo.h, loadmsgcat.c, localealias.c,
	po2tbl.sed.in, textdomain.c, xopen-msg.sed: OK... I fudged up and
	imported the intl/ dir into the root of the module. Cleaning it up.

1999-07-27 12:42  aaron1

	* ChangeLog, Makefile.in, VERSION, bindtextdom.c, cat-compat.c,
	dcgettext.c, dgettext.c, explodename.c, finddomain.c, gettext.c,
	gettext.h, gettextP.h, hash-string.h, intl-compat.c, l10nflist.c,
	libgettext.h, linux-msg.sed, loadinfo.h, loadmsgcat.c,
	localealias.c, po2tbl.sed.in, textdomain.c, xopen-msg.sed,
	ChangeLog, Makefile.in, configure, mkinstalldirs, ABOUT-NLS,
	po/Makefile.in.in, intl/ChangeLog, intl/Makefile.in, intl/VERSION,
	intl/bindtextdom.c, intl/cat-compat.c, intl/dcgettext.c,
	intl/dgettext.c, intl/explodename.c, intl/finddomain.c,
	intl/gettext.c, intl/gettext.h, intl/gettextP.h,
	intl/hash-string.h, intl/intl-compat.c, intl/l10nflist.c,
	intl/libgettext.h, intl/linux-msg.sed, intl/loadinfo.h,
	intl/loadmsgcat.c, intl/localealias.c, intl/po2tbl.sed.in,
	intl/textdomain.c, intl/xopen-msg.sed: [no log message]

1999-07-27 12:42  aaron1

	* VERSION, bindtextdom.c, cat-compat.c, dcgettext.c, dgettext.c,
	explodename.c, finddomain.c, gettext.c, gettext.h, gettextP.h,
	hash-string.h, intl-compat.c, l10nflist.c, libgettext.h,
	linux-msg.sed, loadinfo.h, loadmsgcat.c, localealias.c,
	po2tbl.sed.in, textdomain.c, xopen-msg.sed, ABOUT-NLS,
	po/Makefile.in.in, intl/ChangeLog, intl/Makefile.in, intl/VERSION,
	intl/bindtextdom.c, intl/cat-compat.c, intl/dcgettext.c,
	intl/dgettext.c, intl/explodename.c, intl/finddomain.c,
	intl/gettext.c, intl/gettext.h, intl/gettextP.h,
	intl/hash-string.h, intl/intl-compat.c, intl/l10nflist.c,
	intl/libgettext.h, intl/linux-msg.sed, intl/loadinfo.h,
	intl/loadmsgcat.c, intl/localealias.c, intl/po2tbl.sed.in,
	intl/textdomain.c, intl/xopen-msg.sed: branches:  1.1.1; Initial
	revision

1999-07-27 12:36  aaron1

	* Makefile.in, configure: Build process??? I don't know

1999-07-27 12:09  aaron1

	* AUTHORS, COPYING, ChangeLog, TODO, ltconfig, Makefile.am,
	ltmain.sh, Makefile.in, stamp-h.in, acconfig.h, config.h.in,
	missing, BUGS, HACKING, INSTALL, NEWS, PHILOSOPHY, README,
	acinclude.m4, aclocal.m4, configure.in, mkinstalldirs, configure,
	install-sh, config.sub, config.guess, po/POTFILES.in,
	po/cat-id-tbl.c, po/gtkgraph.pot, po/stamp-cat-id, src/acconfig.h,
	src/app.h, src/callbacks.c, src/callbacks.h, src/confdefs.h,
	src/dialogs.c, src/dialogs.h, src/gtkplot.c, src/gtkplot.h,
	src/gtkplotcanvas.c, src/gtkplotcanvas.h, src/gtkplotlayout.c,
	src/gtkplotlayout.h, src/main.c, src/main.h, src/menus.c,
	src/menus.h, src/prefs.c, src/prefs.h, src/version.h,
	src/Makefile.am, src/Makefile.in, src/mathparse.y,
	src/mathparse.tab.c, src/mathparsesym.h, src/gtkplotfont.c,
	src/gtkplotfont.h, src/mathparse.c, src/mathparse.h, src/calc.c,
	src/calc.h, src/gtkplotps.c, src/gtkplotps.h: Initial import of
	gtkgraph

1999-07-27 12:09  aaron1

	* AUTHORS, COPYING, ChangeLog, TODO, ltconfig, Makefile.am,
	ltmain.sh, Makefile.in, stamp-h.in, acconfig.h, config.h.in,
	missing, BUGS, HACKING, INSTALL, NEWS, PHILOSOPHY, README,
	acinclude.m4, aclocal.m4, configure.in, mkinstalldirs, configure,
	install-sh, config.sub, config.guess, po/POTFILES.in,
	po/cat-id-tbl.c, po/gtkgraph.pot, po/stamp-cat-id, src/acconfig.h,
	src/app.h, src/callbacks.c, src/callbacks.h, src/confdefs.h,
	src/dialogs.c, src/dialogs.h, src/gtkplot.c, src/gtkplot.h,
	src/gtkplotcanvas.c, src/gtkplotcanvas.h, src/gtkplotlayout.c,
	src/gtkplotlayout.h, src/main.c, src/main.h, src/menus.c,
	src/menus.h, src/prefs.c, src/prefs.h, src/version.h,
	src/Makefile.am, src/Makefile.in, src/mathparse.y,
	src/mathparse.tab.c, src/mathparsesym.h, src/gtkplotfont.c,
	src/gtkplotfont.h, src/mathparse.c, src/mathparse.h, src/calc.c,
	src/calc.h, src/gtkplotps.c, src/gtkplotps.h: branches:  1.1.1;
	Initial revision