-
Notifications
You must be signed in to change notification settings - Fork 6
/
NEWS
1906 lines (1470 loc) · 57.2 KB
/
NEWS
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
goffice 0.10.58:
Morten:
* Work around axis bug. [Gnumeric #774]
* Fix axis problem with really big numbers. [Gnumeric #777]
* Fix combo box problem when wm closes window. [Gnumeric #784]
--------------------------------------------------------------------------
goffice 0.10.57:
Morten:
* Excise long double parts of ryu unless --with-long-double.
* Fix various go_dtoa issues.
* Introspection fixes.
* New experimental --with-decimal64 for base-10 math.
--------------------------------------------------------------------------
goffice 0.10.56:
B.S.:
* Make go_fake_floorl and go_fake_ceil consistent with their
non-l versions. [#65]
Emmanuel Pacaud:
* Fix svg export problem. [Gnumeric #726]
Morten:
* Fix histogram crash. [#66]
* Fix canvas widget problem. [#68]
* Fix scaled-UI problem. [#54]
* Fix double-scaling problem. [#69]
--------------------------------------------------------------------------
goffice 0.10.55:
Morten:
* Configuration updates.
--------------------------------------------------------------------------
goffice 0.10.54:
John Denker:
* Allow multiple data labels for series. [#64]
Morten:
* Fix accumulator problem with infinites. [Gnumeric #683]
* Fix fraction-formatting overflow problem. [Part of Gnumeric #637]
--------------------------------------------------------------------------
goffice 0.10.53:
Morten:
* Fix problem rendering "...E-xx" numbers. [#60]
* Hack around introspection issue. [Part of #59]
* Fix crash in plot [Gnumeric #667]
--------------------------------------------------------------------------
goffice 0.10.52:
Morten:
* Improve GOComboBox css styling.
* Reimplement GOActionComboStack using GtkComboBox.
* Introspection fixes.
* Documentation fixes.
* Fix go_{add,sub}_epsilon{,l} confusion in fallback code for win32.
B.S:
* Fix long double problem with go_dtoa. [#57]
--------------------------------------------------------------------------
goffice 0.10.51:
Jean:
* Do not clip markers in scatter plots. [#584]
* Draw background and outline for data labels. [#592]
John Denker:
* Fix go_fake_{ceil,floor} confusion. [#56]
Morten:
* Introspection updates.
* Improve go_pow10 accuracy by avoiding pow as much as possible.
* Take evasive action re g_memdup.
--------------------------------------------------------------------------
goffice 0.10.50:
Jean:
* Fix data update in matrix plots, see Debian #988397.
* Fix rendering on high resolution monitors when scale is not 1. [#578]
Morten:
* Simplify regression equation code.
* Use only 3 decimals for R^2 for regression lines.
* Eliminate empty Special category from format selector. [#29]
* Improve regression line equation for date axes. [#41]
--------------------------------------------------------------------------
goffice 0.10.49:
Morten:
* Fix ods format problem. [Gnumeric #518]
* Fix axis line crash. [Gnumeric #524]
* Add state and saved-state to GODoc.
--------------------------------------------------------------------------
goffice 0.10.48:
Jean:
* Avoid serializing empty graph data. [#46]
* Clip data labels in XY plots. [#47]
* Don't emit a critical for invalid series in Logarithmic fit. [#49]
* Optimize GtkWidget embedding in the canvas. See #465.
* Clip grid lines rendering to the plot area. [#50]
* Speed up GocGroup for large number of children. [Gnumeric #465]
* Make GocGroup usable as a widgetless canvas.
Morten:
* Avoid critical in document image handling.
* Introspection fixes.
* Speed up GocGroup for large number of children. [Gnumeric #465]
* Stop checking for Xrender.
* Plug leaks.
--------------------------------------------------------------------------
goffice 0.10.47:
Jean:
* Fix crash if a XY plot series has data labels but no valid data. [#426]
* Fix criticals related to data labels. [#428]
* Fix a drawing error in contour plots. [#458]
* Ensure that all required dims have valid data in a valid series. [#466]
* Fix legend order in bar plots.
* Test plot series validity after a data change. [#468]
* Fix crossing axis position. [#45]
* Fix component duplication. [#483]
Morten:
* Fix library namespace issue.
* Implement auto-by-extension for image files.
--------------------------------------------------------------------------
goffice 0.10.46:
Jean:
* Fix equations edition inside charts.
* Fix legend contents for contour plots. [#404]
Morten:
* Add more functions to inspect formats.
* Fix UTF-8 problem with format "mmmmm".
--------------------------------------------------------------------------
goffice 0.10.45:
Jean:
* Fix crash in exponential smoothing with invalid y data. [#377]
* Fix ring plot center size persistence. [#395]
Morten:
* Introspection fixes.
* Work around gtk-doc bugs.
--------------------------------------------------------------------------
goffice 0.10.44:
--------------------------------------------------------------------------
goffice 0.10.43:
--------------------------------------------------------------------------
goffice 0.10.42:
Jean:
* Fix box plots when only outliers lie outside of the box. [#345]
Morten:
* Introspection fixes.
* Improve file saver api.
* Avoid hash order dependency for plugins.
* dtoa: ensure fpu rounding mode here.
* Test fixes.
--------------------------------------------------------------------------
goffice 0.10.41:
Morten:
* Avoid excess precision of graph ticks.
--------------------------------------------------------------------------
goffice 0.10.40:
Hiroshi Hatake:
* Introspection fixes. [#793684]
Morten:
* Fixes required for running with musl. [#794115]
* Store last-known modtime for GODoc.
* Option menus: handle markup for labels.
* Introspection fixes
* Improve font selector sizing a bit.
--------------------------------------------------------------------------
goffice 0.10.39:
Morten:
* sinpi/cospi/tanpi/cotpi improvement.
--------------------------------------------------------------------------
goffice 0.10.38:
Morten:
* Avoid a few dubious uses of deprecated gtk+ functions.
* Reduce number of compiler warnings.
--------------------------------------------------------------------------
goffice 0.10.37:
--------------------------------------------------------------------------
goffice 0.10.36:
Jean:
* Fix engineering format. [#785669]
* Fix crash in 3D plots when X or Y values are missing. [#788437]
* Don't use invalid styles in legend from contour or surface plots imported
from Excel. [#788861]
* Fix documentation build with recent gtk-doc. [#788710]
--------------------------------------------------------------------------
goffice 0.10.35:
Morten:
* Fix quad-precision overflow problem.
--------------------------------------------------------------------------
goffice 0.10.34:
Morten:
* Fix rich-text format problem.
--------------------------------------------------------------------------
goffice 0.10.33:
Jean:
* Make box plots look like bar plots in legends. [#773825]
* Fix conditional compilation for long double. Patch from Ludovic
Rousseau). [#774439]
* Reimplement major grids for discrete axes. [#775624].
* Fix add child menu in graph guru. [#777336]
* Fix evaluation of regression curves for area plots. [#777334]
Morten:
* Introspection fixes.
--------------------------------------------------------------------------
goffice 0.10.32:
Morten:
* Plug leak.
* Avoid gnome-common dependency.
--------------------------------------------------------------------------
goffice 0.10.31:
--------------------------------------------------------------------------
goffice 0.10.30:
Jean:
* Fix color scale reference to its axis. [#766829]
--------------------------------------------------------------------------
goffice 0.10.29:
Jean:
* Do not load invalid data labels in XYcolor plots. [#765155]
* Fix an infinite loop condition in 3D plots. [#765480]
* Implement line width and fill pattern support in themes. [#765970]
Morten:
* Improve go_complex_sqrt.
* Improve go_complex_div.
--------------------------------------------------------------------------
goffice 0.10.28:
Jean:
* Fix histograms with missing values. [#763446]
Morten:
* Configuration fixes.
* Introspection improvements.
--------------------------------------------------------------------------
goffice 0.10.27:
Andreas:
* Support new foreign element in ODF export of time styles
Jean:
* Add title to axis lines. [#760675]
Morten:
* Fix go_complex_powl accuracy for real case.
* Fix go_complex_div for very small divisor.
--------------------------------------------------------------------------
goffice 0.10.26:
--------------------------------------------------------------------------
goffice 0.10.25:
Morten:
* Plug leaks.
* Fix axis editing bug. [#684886]
* Make builds more reproducible.
--------------------------------------------------------------------------
goffice 0.10.24:
Jean:
* Fix bounds and distance for rectangle and paths in RTL mode. [#753963]
* Don't access NULL X or Y values in YXZ matrix plots. [#754590]
--------------------------------------------------------------------------
goffice 0.10.23:
Jean:
* Disable metafiles support when there is no screen. [#748493]
* Fuzzed file fixes. [#750860] [#751059] [#751256] [#751257] [#751272]
[#751925] [#752223]
Morten:
* Fix ABR [#749167]
* Shield Cairo from image sizes it cannot handle. [#749274]
* Plug leaks. [#749395]
* Portability problem affecting macs. [#749463]
* Fuzzed file fixes. [#750047] [#751250]
* Fix log-fit problem. [Redhat #1240470]
* Fix general format for wide case. [#752839]
--------------------------------------------------------------------------
goffice 0.10.22:
Jean:
* Fix selection of axes using only part fo the plot area. [#746456]
* Protect colored xy and bubble plots against NULL z values.
* Update circular axis bounds after a unit change. [#746738]
* Auto fill color made transparent for opened markers. [#691025]
* Make manual scale really manual. [#700599]
Johannes Deutsch:
* Do not draw the line over the arrow head at start. [#745736]
Morten:
* Improve log axis bounds. [#745960]
* Fix format used for stacked percentage graphs.
* Don't force bar/col axis to include 0 for log axis.
* Don't force radial plots to include 0 for log axis.
* Rewrite pattern-fill rendering. [#747212]
* Add go_cotpi and go_atan2pi.
* Fix persistence of ring plot center size.
--------------------------------------------------------------------------
goffice 0.10.21:
Jean:
* Ignore invalid values while checking data order. [#744200]
* Ensure that GOPixbuf keeps the original data around. [#745297]
* Fix sheet objects rendering, including widgets. [#744076]
Morten:
* Fix problem with linear solver.
* Add arrow selector widget.
* Fix rendering of dotted lines. [#744419]
* Activate font part of graph theming.
* Plug leaks.
* Add tooltips to gradient selector.
* Add tooltips to pattern selector.
* GOImage fixes.
--------------------------------------------------------------------------
goffice 0.10.20:
Jean:
* Ensure the validity of the dims property for linear regression curves.
Morten:
* Fix marker problem with line plots.
--------------------------------------------------------------------------
goffice 0.10.19:
Jean:
* Allow rotation of axis line labels. [#740198]
* Move the title with its axis parent. [#684777]
* Implement canvas native scrolling. [#741394]
* Don't use a data vector with no valid value. [#741910]
* Allow custom ticks and grid lines for axis lines. [#600482]
* Don't loose any data in an histogram when using automatic bins. [#742996]
Morten:
* Dead kitten salvage.
* Fix canvas issues when removing items.
* Switch from GtkColorSelDialog to GtkColorChooser. [#695634]
--------------------------------------------------------------------------
goffice 0.10.18:
Andreas:
* Fix saving of color map names. [#735298]
Jean:
* Fix grid line theme support. [#733403]
* Fix default ticks position.
* Fix font color theme support. [Debian 757611]
* Fix saving color maps when directory does not exists. [#735008]
* Fix color maps loading. [#735007]
* Don't pass NULL to g_strtod(). [#735555]
Morten:
* Work around gtk+ ABI break for colour selector. [#733350]
--------------------------------------------------------------------------
goffice 0.10.17:
Jean:
* Add control for 3D plots axes lengths. [#694746]
Morten:
* Fix test for buggy C library.
--------------------------------------------------------------------------
goffice 0.10.16:
Jean:
* Don't use GDK_THREADS_*. [#728793]
* Fixed Gog3DBox properties editor.
* Add a view class to Gog3DBox to support data that are view dependent.
* Restore dashes with dots in charts lines.
Morten:
* Clean out old #ifdef mess.
* Improve axis value computation.
* Improve xml import/export of GOStyle.
--------------------------------------------------------------------------
goffice 0.10.15:
Andreas:
* Improve GOFormat export to ods.
Jean:
* Explicitly allow manual charts size. [#728134]
* Fix automatic chart size for manual position. [#728391]
* Fix text alignment. [#728752]
Morten:
* Portability improvements.
* Fix UMR in graph view.
* Improve GOFormat export to ods.
* Improve testing.
* Improve go_dtoa and use it for go_format_general.
--------------------------------------------------------------------------
goffice 0.10.14:
Andreas:
* Improve conditional format roundtrip through ODF. [part of #725852]
Jean:
* Fix canvas drawing problem.
Morten:
* Work on conditional formats for ODF.
* Implement numbered colours in number formats.
* Fix plugin deactivation.
* Plug leaks.
* Fix rounding problem.
* Use musl code for dtoa. Adapt to round-ties-away-from-0.
--------------------------------------------------------------------------
goffice 0.10.13:
Andreas:
* Write invisible characters in ODF number style export. [part of #725852]
* Fix writing of scientific number format to ODF. [part of #725852]
* Fix strict number style export to ODF. [#726237]
Jean:
* Ensure that the lasem plugin builds with lasem-0.4.1. [#725693]
* Support leave_notify events in the canvas. [#668103]
Julian Sikorski:
* Remove extra DESTDIR in mathml to itex converter. [#725684]
Morten:
* Fix problem saving print settings. [#698630]
* Plug leaks.
* Fix FMW problem with GocPolyline/GocPolygon.
--------------------------------------------------------------------------
goffice 0.10.12:
Jean:
* New math equations component plugin.
--------------------------------------------------------------------------
goffice 0.10.11:
--------------------------------------------------------------------------
goffice 0.10.10:
Jean:
* Fix graph guru appearance when used with gtk+-3.10. [#719681]
* Fix crasher in box plots. [#720310]
* Fix elements number in polar plot series. [#720355]
* Always save an axis position. [#722402]
Morten:
* Improve complex math, notably complex power.
* Add quad precision log and hypot functions.
* Add quad precision atan2, sin, sinpi, asin, cos, cospi, acos
functions.
* Add go_sinpi, go_cospi, go_tanpi, go_atan2pi.
* Improve "General" format.
* Improve Undo/Redo toolbar items.
* Improve Color selector toolbar items.
* Improve Pixmap selector toolbar items.
--------------------------------------------------------------------------
goffice 0.10.9:
Morten:
* Improvements to quad precision code.
* Fuzzed file issues. [#712663]
--------------------------------------------------------------------------
goffice 0.10.8:
Jean:
* Do not destroy axes after adding a plot using a restricted set. [#708292]
* Don't crash when there are no x values for a moving average smoothing.
[#708562]
* Never redefine GtkJustfication, use GoJustification instead. [#709007]
Morten:
* Build fixes.
* Win32 work.
* Fix font selector crash. [#709438]
--------------------------------------------------------------------------
goffice 0.10.7:
--------------------------------------------------------------------------
goffice 0.10.6:
Alexander Larsson:
* Fix gtk+ 3.9 redraw problems. [#703124]
Jean:
* Fix NULL pointer issue in line plots. [#706663]
--------------------------------------------------------------------------
goffice 0.10.5:
Andreas:
* Don't crash on inconsistent format. [#705099]
Jean:
* Don't crash when loading an EMF image without valid data. [#704311]
* Fixed text and path items positions. [see #704391]
* Don't crash when a pixbuf has an invalid size. [#704560][#705005]
* Fix area vs diameter selection in bubble plots. [#705312]
* Implement get_data_at_point for area and line plots. [#627277][#689661]
* Fix rendring of stacked area plots. [#705034]
* Fix crash when drawing a fallback image without gtk. [#705677]
* Fix crash in countour plots when no color is used. [#705913]
Morten:
* Add prescaling to go_linear_regression_leverage. [#703381]
* Improve C standard compliance a tiny bit.
--------------------------------------------------------------------------
goffice 0.10.4:
Andreas:
* Fix crash on corrupted GOImage. [#703670]
Jean:
* Fix loading of image with invalid size or data. [#703740]
* Don't use invalid GOImage arguments. [#703949]
Morten:
* Fix linear regression failure.
* Add prescaling to linear regression. [#703381]
--------------------------------------------------------------------------
goffice 0.10.3:
Jean:
* Implement color scales. [#695829]
* Allow color scales to have titles. [#688595]
* Allow regression equation frame to rotate with text. [#701546]
* New matrix plots. [#657918][#680806]
* Set a minimal size for the graph property box. [#699473]
* Fix crash when loading an invalid graph with a custom theme. [#702887]
Morten:
* Fix issue with librsvg includes. [#695167]
* Make linear regression handle the case where the input
columns are not independent. [#551457]
* Install the unknown_image icon from Gnumeric. [#700742]
--------------------------------------------------------------------------
goffice 0.10.2:
Dominique Leuenberger:
* Fix locale directory.
Jean:
* Don't use uninitialized values in bar/column plots. [#696569]
* Fix currency selector visibility. [#696647]
* Fix mouse events for widgets inside a GtkContainer. [#696533]
* Make the GOEditor scrolled window optional. [#696825]
* Show the font face selector in the graph properties. [#697243]
* Fixed style in scatter plot after a valid but with invisible line
series. [#698057]
* Fixed test in goc_item_set_transform(). [#698101]
* Initialize GOEditor::use_scrolled. [#698102]
* Don't unref a disposed widget. [#698150]
* Export each marker to svg until cairo bug #63633 is fixed. [#698162]
* Implement interpolation in line and area plots. [#698534]
* Ensure a full initialization of all fields in the font selector.
[#698867]
Morten:
* Fix problems with cspline boxed type. [#695550]
* Fix gtk-doc problems --without-long-double. [#695550]
* Widget cleanups.
* Add dialog version of the font selector.
* Rewrite font selector. [#695031]
* Fix GOComboColor signal problem. [#696022]
* Plug leaks.
* Enhance canvas with possibility of css.
* Improve printing of grey patterns.
* Make narrow versions of combos for vertical toolbars.
--------------------------------------------------------------------------
goffice 0.10.1:
Jean:
* Don't add an extra separator at start of data labels. [#691704]
* Don't crash after deleting a named smoothed curve. [#691796]
* Fix data label offset serialization. [#692305]
* Add a user interface for radar and polar plots axis selection. [#692803]
* Fix go_component_build_snapshot() returned value. [#694231]
* Do not use invalid values in line plots. [#694232]
* Make data labels position independant on scale. [#694731]
Morten:
* Cleanup linear algebra. [#691630]
* Work on new compiler warnings.
* Add efficient code for computing leverages. [#691913]
* Introspection fixes.
* Fix missing tooltip in color palette. [#695032]
* Fix missing tooltip in pixmap selector.
--------------------------------------------------------------------------
goffice 0.10.0:
--------------------------------------------------------------------------
goffice 0.9.91:
Jean:
* Fixed typos in locales list. [#688977]
--------------------------------------------------------------------------
goffice 0.9.90:
Andreas:
* Handle some more unusual formats in ODF export. [#683801]
* Fix some magic date handling. [#686575]
* Fix placement of minus sign. [#686575]
* Add 'force exponent sign' checkbox to format selector. [#686481]
* Fix export of scientific number format to ODF.
* Fix rendering of fraction formats in locales with ' ' as thousand
separator. [#686471]
Chris Leonard:
* Updated locales. [#682749]
Jean:
* New scattered min-max plot type. [#683493]
* Don't crash when no valid data is available for histograms. [#684047]
* Clip histograms to the plot area. [#684195]
* Fix backplane position when data are nearly all the same. [#684599]
* Fixed crash when using data labels after gtk+ behavior change. [#684889]
* Accept an offset up to 20 for graph data labels. [#684892]
* Removed span tab 3D axes that don't support it. [#685405]
* Don't draw a marker in the legend when not needed. [#685484]
* Restore pixel aligned lines. [#686476]
* Fixed position of rotated label frame. [#686478]
* Fixed image clipping. [#686490]
* Improve padding between axis ticks and labels. [#686473]
* Enhance graph guru behavior when an object is deleted. [#687102]
* Allow colors selection for contour and map plots. [#657908]
* Don't crash when loading an xls file with an EMF picture. [#688047]
Morten:
* Namespace cleanup. [#686501]
* Fix EE-format compilation. [#686480]
* Plug leak.
--------------------------------------------------------------------------
goffice 0.9.6:
Chris Leonard:
* Add comments for translators to SI units names. [#681813]
Jean:
* Use NAN instead of 0 for XYZ plots when data are missing. [#680486]
* Add series name to legend for contour plots. [#680508]
* Fix contour plot cardinality when axis bounds can't be retrieved. [680512]
* Allow axis choice for pseudo-3d plots. [see #680636]
* Allow filling to axis limits. [#680513]
* Save axis Id for all axes, not only X and Y. [#680739]
* Fix strings inconsistencies (3d vs. 3D). [#681777]
* Fix a crash for infinite values in XYZ contour plots. [#841840]
* Fixed typos in translated string. [#681779][681811][681812]
Morten:
* Minute accuracy improvement to matrix inversion.
Quentin Glidic:
* Fix build with libspectre. [#681846]
--------------------------------------------------------------------------
goffice 0.9.5:
Andreas:
* Fix spacing in chart properties dialog.
* Fix style inconsistency in regression trend line dialog. [#678810]
Jean:
* Fix rich text size evaluation. [#679459]
* Moved prototypes from gog-axis-line-impl.h to gog-axis-line.h. [#679967]
--------------------------------------------------------------------------
goffice 0.9.4:
Andreas:
* Add go_pango_attrs_to_markup, partial inverse to pango_parse_markup.
* Handle underline tags as named tags in textbuffer.
* Add go_color_from_gdk_rgba
* Fix item placement in linear & polynomial regression trend line
dialog. [#678793]
* Fix spacing in chart properties dialog. [#678812]
Jean:
* Fixed logfit equation typo. [#675560]
* Fix text item position when clipped. [#676067]
* Fix criticals when adding a trend line. [#676641]
* Fix trend lines limits for implied X values.
--------------------------------------------------------------------------
goffice 0.9.3:
Andreas:
* Fix output of scientific number formats to ODF. [#672353]
* Do not unneccessarily include numbers in number formats when exporting
to ODF. [#671860]
Jean:
* Add introspection support. [#670161]
* Make introspection build when libgoffice is not installed [#671699]
Morten:
* Fix GOImage fallback for non-GUI case.
* Tweak bold attribute for rich text.
* Fix minor multihead issue with help buttons in dialogs.
* Eliminate GoComboText -- use GtkComboBoxText instead.
* Avoid critical in GOPixbuf code.
* Work around intltool bug. [#672771]
--------------------------------------------------------------------------
goffice 0.9.2:
Andreas:
* Improve sensitivity handling of SI related widgets in format selector.
* Fix scientific format with SI prefix selection. [#665301]
* Fix recognition of formats with SI prefix by format selector.
[#665303]
* Handle numeral shapes for number formats.
Jean:
* Fixed rounding errors in limits displayed in contour plot legend.
[#666292]
* Support wrapped charts labels, partially fixes #643873.
* Fixed GdkPixbuf usage. [#667005]
* Don't truncate images when exporting a chart. [#645938]
* Add automatic Bezier spline interpolation. [663356]
* Fixed graph type selector position. [#667793]
* Fix bounds for partial range logarithmic axes. [#669257]
* Fix Y-axis label position. [#669325]
* Add limits to the regression curve display range. [#669252]
* Don't move any other axis when changing an axis position. [#669050]
Morten:
* Embed library ui files into library.
* Embed svg-patterns.xml and error bar image files too.
* Embed icons and ui files into plugins.
--------------------------------------------------------------------------
goffice 0.9.1:
Morten:
* High-precision accumulator improvements.
--------------------------------------------------------------------------
goffice 0.9.0:
Adrian Bunk:
* Get rid of dolt. [#662414]
Andreas:
* Use pango attributes for formatting. [#584380][#651561]
* Fix output of scientific number formats with EE to ODF.
* Fix interpretation of marked-up scientific number format. [#656056]
* Fix fraction rendering. [#656043][#657288][#657379][657400]
* Fix date format on Windows. [#655573]
* Extend encoding specification from file-openers to plugin services.
* Improve the scientific number formats selector. [#657187][#623847]
* Improve fraction format selector. [#117215]
* Support SI prefixes and units in scientific format selector. [#588516]
* Show in-use custom formats in the custom format selector. [#658472]
* Render superscripts in scientific formats with regard to font size
and scale. [#425685]
Jean:
* Port to gtk+-3.0.
* Add a plugin directory for extern plugins, independent from micro
version.
* Allow the frame around a chart label to rotate with the text. [647147]
* Chart labels accept rich text. [#417631]
* Axes can use only a part of available space. [#654392][#513137]
* Add support for smoothed curve renaming. [#656148].
* Fix widgets position inside an RTL canvas.
* Fix minor ticks number. [#657670]
* Displays correct coordinates when moving the mouse on a zoomed
chart. [#657694]
* Don't crash when pseudo3d axis has too large manual ticks
spacing. [#657695]
* Use data format for discrete axis. [#641901]
* Make sheet widgets scalable. [#605434]
* Update series labels when needed. [658527]
* Fix background images issues in graphs. [#660917]
* Make GSettings the default configuration backend.
* Add support for SVG images.
* Add some optional support for EPS images. [#663078]
* Fixed a memory leak in GocPolyline code. [#663355]
* Fixed pixels dust in text rotation selector. [#662393]
* Remove GConf support.
* Ensure that 0 is in the default values axis range for column, bar
and other 1.5d plots. [#663717]
Morten:
* Recognize scientific formats with longer exponents.
* Fix problem with sticky format colouring.
* Improve certain range functions in corner cases. [#660564]
* Make go_range_sum perfect, modulo overflow. [#664656]
* Add resource manager for embedded files.
* Plug leaks.
Gerald Niel:
* Plugins not found when using in bundle for Mac OSX. [#661264]
--------------------------------------------------------------------------
goffice 0.8.17:
Morten:
* Plug leaks.
* Fix noisy leak. [#652420]
--------------------------------------------------------------------------
goffice 0.8.16:
Andreas:
* Improve ODF 1.2 output of fraction format.
Morten:
* Fix long-double compilation issue.
* Improve accuracy of complex power.
* Fix GOFormat problem resulting in "-0". [#650928]
--------------------------------------------------------------------------
goffice 0.8.15:
Andreas:
* Fix format string parsing with localized colour names. [#647324]
Jean:
* Fixed closed bezier spline evaluation. [#646700]
* Implement dropbar plots with linear or logarithmic index axis. [#646832]
* Fix legends for plots with marker only style. [#647367]
* Don't use badly rounded values when clipping markers. [#649485]
* Implement probability plots with data as y values. [#650515]
Morten:
* Plug leaks.
* Detect more cases of linear-regression gone bad.
--------------------------------------------------------------------------
goffice 0.8.14:
Jean:
* Implement a GSettings backend for GOConf. [643767]
* Fix gnumeric crash when monitoring settings changes. [#644222]
Morten:
* Plug leaks.
* Allow GOConf to handle absolute keys.
--------------------------------------------------------------------------
goffice 0.8.13:
Andreas:
* Write text formats to ODF. [#636158]
Jean:
* Fixed memory leaks found by cppcheck analysis.
* Fixed drop lines in line plots. [#638738]
* Invalidate canvas items after reordering to force a redraw? [#639840]
* Fix axis limits serialization. [#640438]
Morten:
* Fix problem with engineering formats. [#640571]
--------------------------------------------------------------------------
goffice 0.8.12:
Andreas
* Fix US 30/360 date calculations. [#631242][#630784]
Jean:
* Fixed sorting with accentuated characters. [#631504]
* Allow filled plots to be displayed behind the grids. [#632310]
* Fixed patterns with cairo-1.10.
* Fixed flawed exponential fit in graphs for small values. [#633735]
* Fixed an infinite loop condition in cubic spline evaluation. [#633965]
Morten:
* Fix GOImage-vs-cairo lifecycle issue.
* Fix loading of weird themes.
--------------------------------------------------------------------------
goffice 0.8.11:
Jean:
* Implement custom grids in xyz plots. [#624273]
Jon Nordby:
* Update API documentation.
Morten:
* Improve fractional days support for date axes.
* Draw charset/locale selectors with "radio" buttons.
Yasuaki Taniguchi:
* Fix charset problem for Japanese. [#627829]
--------------------------------------------------------------------------
goffice 0.8.10:
Andreas:
* Make sure the first rather than the last error is shown.
* Plug leak.
* Provide the opportunity of all errors to be shown.
Jean:
* Always use real line width when evaluating dashes. [#442546]
* Update x and y limits when data change for xyz plots. [#627288]
* Do not crash when displaying cubic spline with no abscissa. [#627507]
* Do not save image filling with no image. [#627690]
* Don't use g_free instead of xmlFree. [#627700]
* Optionnaly delete trendlines from legend. [#628031]
* Fix critical in go_doc_finalize. [#628467]
* Fixed a potential crasher in gog_styled_object_document_changed. [#628671]
* Fixed GOImage references management. [#628732]
Morten:
* Limit formats to sane number of decimals. [#627066]
* Fix minor go_string_replace issue.
* Plug leaks.
* Fix char-xmlChar confusion.
* Fix graph crash. [#628259]
* Improve go_format_is_date.
* Improve handling of date axes with time-of-day.
* Fix FMR on image load. [Part of #628467]
--------------------------------------------------------------------------
goffice 0.8.9: