forked from GNOME/goffice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
20678 lines (15001 loc) · 733 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2019-07-02 Morten Welinder <[email protected]>
* goffice/utils/go-format.c (go_format_execute): Fix UTF-8 problem
with "mmmmm".
2019-06-27 Jean Brefort <[email protected]>
* goffice/graph/gog-axis.c: typo.
* plugins/plot_surface/gog-contour.c
(gog_contour_plot_build_matrix), (gog_contour_plot_foreach_elem): fix
legend contents. [#404]
2019-06-09 Morten Welinder <[email protected]>
* goffice/utils/go-format.c (go_format_has_year)
(go_format_has_month) (go_format_has_day): new functions.
2019-06-07 Jean Brefort <[email protected]>
* goffice/gtk/go-math-editor.c (go_math_editor_class_init): fix signals to
make it work again.
2019-05-22 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2019-05-20 Morten Welinder <[email protected]>
* Release 0.10.45
2019-04-05 Jean Brefort <[email protected]>
* plugins/plot_pie/gog-pie.c (gog_ring_plot_class_init): fix ring plot
center size persistence. [#395]
2019-01-15 Jean Brefort <[email protected]>
* plugins/smoothing/gog-exp-smooth.c (gog_exp_smooth_update): protect
against NULL y values. [#377]
2018-11-24 Morten Welinder <[email protected]>
* goffice/math/go-quad.c: Introspection fixes.
2018-11-24 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2018-11-24 Morten Welinder <[email protected]>
* Release 0.10.44
2018-08-19 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2018-08-19 Morten Welinder <[email protected]>
* Release 0.10.43
2018-08-09 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2018-08-09 Morten Welinder <[email protected]>
* Release 0.10.42
2018-08-06 Morten Welinder <[email protected]>
* tests/test-quad.c (pow_tests): Comment out exp test. It's not
setup for quad correctly.
2018-08-05 Morten Welinder <[email protected]>
* tests/test-quad.c: Try to make the tests work a bit better for
the excess-precision case, i.e., x86 in 32-bit mode.
2018-08-03 Morten Welinder <[email protected]>
* goffice/goffice.c (libgoffice_init): Use g_type_ensure to avoid
giving the compiler any good ideas about removing calls.
2018-07-13 Jean Brefort <[email protected]>
* plugins/plot_distrib/gog-boxplot.c (gog_box_plot_view_render): do
not display whiskers when there are only ouliers outside of the box. Fixes
#345.
2018-05-17 Morten Welinder <[email protected]>
* goffice/app/go-plugin.c (go_plugins_shutdown): Avoid hash order
dependency.
2018-05-10 Morten Welinder <[email protected]>
* goffice/app/file.c (go_file_saver_for_file_name): Pick the most
capable saver if multiple are possible.
2018-05-07 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2018-05-07 Morten Welinder <[email protected]>
* Release 0.10.41
2018-05-06 Morten Welinder <[email protected]>
* goffice/graph/gog-axis.c (axis_format_value): When using General
format, limit precision to 9-10 digits. If you need more, use a
specific format, but you are probably doing something wrong
anyway. This avoids graph ticks of the form "1.10000000000002".
2018-04-29 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2018-04-29 Morten Welinder <[email protected]>
* Release 0.10.40
2018-04-19 Morten Welinder <[email protected]>
* goffice/gtk/go-font-sel.c (gfs_screen_changed): Set a minimum
size for the family name picker so it's wide enough for 95% of the
possible values. (That leaves room for 5% of families with crazy
names, just in case.)
2018-04-18 Morten Welinder <[email protected]>
* goffice/app/go-doc.c (go_doc_finalize): Plug leak.
2018-04-06 Morten Welinder <[email protected]>
* goffice/gtk/go-optionmenu.c (go_option_menu_update_contents):
Handle markup.
(go_option_menu_init): Add a bit of space between label and
separator so they don't touch.
2018-03-25 Morten Welinder <[email protected]>
* goffice/utils/go-file.c (go_file_get_modtime): New function.
2018-03-14 Morten Welinder <[email protected]>
* goffice/math/go-quad.c (go_quad_start): Allocate memory before
we change fpu state. Seee bug #794115.
2018-03-13 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2018-03-13 Morten Welinder <[email protected]>
* Release 0.10.39
2018-03-06 Morten Welinder <[email protected]>
* goffice/math/go-math.c (do_sinpil): Improve accuracy of
fallback.
2018-02-14 Jean Brefort <[email protected]>
* goffice/canvas/goc-image.c (goc_image_draw): don't try to display an image
with nul size.
* goffice/utils/go-emf.c (go_emf_lineto): create a path if necessary instead
of returning an error.
2017-12-28 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2017-12-28 Morten Welinder <[email protected]>
* Release 0.10.38
2017-12-11 Morten Welinder <[email protected]>
* goffice/gtk/go-rotation-sel.c (cb_rotate_changed): Signal a
style change, not just an object invalidation.
2017-12-10 Morten Welinder <[email protected]>
* goffice/gtk/goffice-gtk.c (go_style_context_from_selector):
Import from Gnumeric (in turn from gtk+).
2017-12-05 Morten Welinder <[email protected]>
* tests/constants.c (main): Improve checking if double math
produces the right values for direct and inverse.
* goffice/gtk/goffice-gtk.c (_go_gtk_widget_add_css_provider):
Install the css provider screen-wide.
2017-12-02 Morten Welinder <[email protected]>
* goffice/gtk/go-rotation-sel.c (cb_rotate_canvas_realize): Use
css for styling.
* goffice/gtk/go-3d-rotation-sel.c (cb_rotate_canvas_realize): Ditto.
2017-12-01 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2017-12-01 Morten Welinder <[email protected]>
* Release 0.10.37
2017-11-18 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2017-11-18 Morten Welinder <[email protected]>
* Release 0.10.36
2017-10-30 Jean Brefort <[email protected]>
* docs/reference/Makefile.am: fix documentation build with recent gtk-doc.
[#788710]
* goffice/goffice.c:
2017-10-23 Jean Brefort <[email protected]>
* plugins/plot_surface/xl-surface.c (xl_contour_plot_build_matrix): fix
rendering.
2017-10-23 Jean Brefort <[email protected]>
* plugins/plot_surface/xl-surface.c (xl_xyz_series_init): don't show these
series in the legend. [#788861]
2017-10-02 Jean Brefort <[email protected]>
* plugins/plot_surface/gog-xyz-surface.c
(gog_xyz_surface_plot_build_matrix): don't crash if X or Y values are
missing. [#788437]
2017-08-03 Jean Brefort <[email protected]>
* goffice/utils/go-format.c (printf_engineering): fix engineering format.
[#785669]
2017-07-06 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2017-07-06 Morten Welinder <[email protected]>
* Release 0.10.35
2017-05-17 Morten Welinder <[email protected]>
* goffice/math/go-quad.c (go_quad_mul12): Avoid unnecessary
overflow when splitting a number into two parts.
2017-03-20 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2017-03-20 Morten Welinder <[email protected]>
* Release 0.10.34
2017-03-17 Morten Welinder <[email protected]>
* goffice/utils/go-format.c (go_format_new_from_XL): Cache also
rich-text formats.
2017-01-29 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2017-01-29 Morten Welinder <[email protected]>
* Release 0.10.33
2017-01-23 Jean Brefort <[email protected]>
* plugins/plot_barcol/gog-line.c : fix evaluation of regression curves
for area plots. [#777334]
2017-01-22 Jean Brefort <[email protected]>
* goffice/graph/gog-object.c (gog_object_clear_parent): fix add child menu
in graph guru. [#777336]
2016-12-05 Jean Brefort <[email protected]>
* goffice/graph/gog-axis-line.c (role_grid_line_major_can_add):
reimplement major grids for discrete axes. [#775624].
2016-11-16 Jean Brefort <[email protected]>
* goffice/utils/go-libxml-extras.c: fix long double support condition.
[#774439]
2016-11-02 Jean Brefort <[email protected]>
* goffice/graph/gog-legend.c (cb_render_elements): allow box plots look
like bar plots in legends. [#773825]
* plugins/plot_distrib/gog-boxplot.c (gog_box_plot_class_init): ditto.
2016-10-02 Morten Welinder <[email protected]>
* goffice/utils/go-format.c (go_render_general): Fix warning.
(go_format_get_details): Avoid pango_trom_string.
* goffice/math/go-matrix.c (go_quad_matrix_dump): Fix printf
argument. (Somehow magically worked -- on x86 at least.)
2016-08-20 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2016-08-20 Morten Welinder <[email protected]>
* Release 0.10.32
2016-08-17 Morten Welinder <[email protected]>
* goffice/math/go-regression.c (go_linear_regression_leverage):
Plug leak.
2016-06-29 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2016-06-29 Morten Welinder <[email protected]>
* Release 0.10.31
2016-06-17 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2016-06-17 Morten Welinder <[email protected]>
* Release 0.10.30
2016-05-26 Jean Brefort <[email protected]>
* goffice/graph/gog-color-scale.c (gog_color_scale_set_property),
(gog_color_scale_get_property): properly save and load the reference to
the axis. [#766829]
2016-05-06 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2016-05-06 Morten Welinder <[email protected]>
* Release 0.10.29
2016-05-04 Jean Brefort <[email protected]>
* goffice/canvas/goc-canvas.c: fix doc.
* goffice/utils/go-style.c (go_style_apply_theme),
(go_style_gradient_sax_save), (go_style_fill_sax_save),
(go_style_sax_load_fill_pattern),
(go_style_sax_load_fill_gradient), (go_style_persist_sax_save),
(go_style_is_auto): really implement all auto flags.
2016-04-29 Jean Brefort <[email protected]>
* goffice/canvas/goc-item.c (cb_hierarchy_changed): make css work again with
gtk+-3.20.
2016-04-24 Jean Brefort <[email protected]>
* goffice/graph/gog-axis.c (gog_axis_view_size_allocate): fix an infinite
loop condition. [#765480]
2016-04-17 Jean Brefort <[email protected]>
* plugins/plot_xy/gog-xy.c (gog_xy_view_render): do not load invalid data
labels in XYcolor plots. [#765155]
2016-03-24 Morten Welinder <[email protected]>
* goffice/math/go-complex.c (go_complex_sqrt): Avoid extreme-case
unnecessary overflow.
(go_complex_div): Avoid extreme-case unnecessary overflow and
marginally improve accuracy.
2016-03-22 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2016-03-22 Morten Welinder <[email protected]>
* Release 0.10.28
2016-03-11 Jean Brefort <[email protected]>
* plugins/plot_distrib/gog-histogram.c
(gog_histogram_plot_series_update): avoid issues with -INFINITY as well.
2016-03-10 Jean Brefort <[email protected]>
* plugins/plot_distrib/gog-histogram.c
(gog_histogram_plot_series_update): don't take nans and infinite into
account when evaluating automatic bins. [#763446]
2016-03-09 Morten Welinder <[email protected]>
* tests/constants.c (print_bits): Fix bit pattern rounding past
the break.
2016-03-05 Morten Welinder <[email protected]>
* goffice/math/go-complex.c (go_complex_sqrt): Fix accuracy of
real component when argument is very near the negative real axis.
(go_complex_tan): Improve accuracy.
(go_complex_ln): Improve accuracy near unit circle.
2016-02-23 Morten Welinder <[email protected]>
* goffice/math/go-complex.c (go_complex_powx): Expose the power
function with separate return value for powers of 2.
2016-02-16 Morten Welinder <[email protected]>
* goffice/math/go-complex.c: Make a boxed type for the benefit of
introspection.
2016-02-08 Morten Welinder <[email protected]>
* configure.ac: Require C99. Fix handling of $CC that includes
options. Don't check for yacc and lex.
2016-02-06 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2016-02-06 Morten Welinder <[email protected]>
* Release 0.10.27
2016-02-06 Morten Welinder <[email protected]>
* goffice/math/go-complex.c (go_complex_from_polar_pi): Make this
public.
2016-02-02 Morten Welinder <[email protected]>
* goffice/math/go-complex.c (go_complex_powl): Fix real case
accuracy.
(go_complex_div): Avoid intermediate underflow when possible.
2016-01-29 Jean Brefort <[email protected]>
* goffice/graph/gog-axis.c (gog_axis_view_size_allocate): fixed axis
line children allocation, see #760675, comments 5-7.
2016-01-28 Jean Brefort <[email protected]>
* goffice/graph/gog-axis-line.c: add title to axis lines. [#760675]
* goffice/graph/gog-axis.c : ditto.
2016-01-12 Jean Brefort <[email protected]>
* docs/reference/goffice-0.10-sections.txt: add missing declarations.
* goffice/data/go-data-simple.c (go_data_scalar_str_new_copy),
(go_data_vector_val_new_copy), (go_data_vector_str_new_copy): new
functions for introspection.
* goffice/data/go-data-simple.h: ditto.
* goffice/graph/gog-series.c: add an annotation.
2016-01-11 Jean Brefort <[email protected]>
* goffice/app/go-plugin.c: add introspection annotations.
* goffice/goffice.c (libgoffice_init): initialise GOPluginLoaderModule
class to allow plugins initialization through introspection.
* goffice/graph/gog-object.c: add an introspection annotation.
* goffice/math/go-cspline.c: typo.
2016-01-01 Andreas J. Guelzow <[email protected]>
* utils/go-format.c (go_format_output_date_to_odf): write
gnm:am-suffix and gnm:pm-suffix attributes instead of the
gnm:style attribute for number:style
2016-01-01 Andreas J. Guelzow <[email protected]>
* utils/go-format.c (go_format_output_date_to_odf): write
gnm:style attribute of number:style
2015-12-28 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2015-12-28 Morten Welinder <[email protected]>
* Release 0.10.26
2015-12-25 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2015-12-25 Morten Welinder <[email protected]>
* Release 0.10.25
2015-12-14 Morten Welinder <[email protected]>
* goffice/graph/gog-axis-line.c (gog_tool_move_bound_init): Use
gog_axis_map_get_real_extents here, see bug #684886.
2015-12-01 Morten Welinder <[email protected]>
* goffice/app/go-plugin.c (go_plugin_read): Plug leak.
2015-09-20 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2015-09-20 Morten Welinder <[email protected]>
* Release 0.10.24
2015-09-05 Jean Brefort <[email protected]>
* plugins/plot_surface/gog-xyz-surface.c
(gog_xyz_matrix_plot_build_matrix): don't access NULL values. [#754590]
2015-08-24 Jean Brefort <[email protected]>
* goffice/canvas/goc-path.c (goc_path_prepare_draw): fix bounds and distance
in RTL mode. [#753963]
* goffice/canvas/goc-rectangle.c (goc_rectangle_prepare_draw): ditto.
2015-08-01 Morten Welinder <[email protected]>
* goffice/utils/go-format.c (go_render_general): Also try the
shortest representation when we're barely width limited.
2015-07-28 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2015-07-28 Morten Welinder <[email protected]>
* Release 0.10.23
2015-07-26 Morten Welinder <[email protected]>
* goffice/utils/go-format.c (go_render_general): Try the shortest
representation when we're not width limited. Fixes #752839.
Also handle sign and shape when using shortest.
2015-07-10 Jean Brefort <[email protected]>
* goffice/graph/gog-axis.c (gog_axis_metrics_from_str): fix a
paste error. Fixes #752223.
2015-07-08 Morten Welinder <[email protected]>
* plugins/reg_logfit/gog-logfit.c (gog_log_fit_curve_update):
Survive missing y_val. Fixes Redhat #1240470.
2015-07-04 Jean Brefort <[email protected]>
* goffice/graph/gog-object.c (gog_object_document_changed): check args
types. Fix #751925.
2015-06-22 Jean Brefort <[email protected]>
* plugins/plot_radar/gog-radar.c (gog_rt_view_render): protect against wrong
series element index. [#751272]
2015-06-21 Jean Brefort <[email protected]>
* goffice/graph/gog-axis-color-map.c (color_map_load_from_uri): do not
free the GsfXMLInDoc* twice.
2015-06-21 Jean Brefort <[email protected]>
* plugins/plot_surface/xl-surface.c (get_y_vector): skip invalid series.
[#751257]
2015-06-21 Jean Brefort <[email protected]>
* plugins/plot_xy/gog-xy.c (gog_xy_view_render): protect against wrong
series element index. [#751256]
2015-06-20 Morten Welinder <[email protected]>
* goffice/graph/gog-grid-line.c (gog_grid_line_radial_render):
Survive missing parameters.
* goffice/graph/gog-chart-map.c (null_map_2D): Zero output
variables.
2015-06-19 Jean Brefort <[email protected]>
* plugins/plot_barcol/gog-barcol.c (gog_barcol_view_render): protect
against wrong series number. [#751059]
* plugins/plot_barcol/gog-dropbar.c (gog_dropbar_view_render):
* plugins/plot_barcol/gog-line.c (gog_line_view_render):
2015-06-18 Morten Welinder <[email protected]>
* goffice/app/go-doc.c (go_doc_image_fetch): Sanity check image
type.
* goffice/graph/gog-object-xml.c (gogo_start): Sanity check object
type.
* goffice/graph/gog-plot-engine.c (gog_plot_new_by_name)
(gog_trend_line_new_by_name): Sanity check type name.
2015-06-17 Jean Brefort <[email protected]>
* goffice/graph/gog-object.c (gog_object_get_child_by_role): protect against
NULL argument. [#750860]
2015-06-12 Morten Welinder <[email protected]>
* goffice/app/io-context.c (ioc_finalize): Plug leak.
2015-06-01 Jean Brefort <[email protected]>
* goffice/graph/gog-axis-color-map.c (gog_axis_color_map_prep_sax): don't
free the xml doc twice.
2015-05-31 Morten Welinder <[email protected]>
* goffice/utils/go-format.c (go_format_parse_number_new_1):
Prevent ABR.
2015-05-27 Morten Welinder <[email protected]>
* goffice/utils/go-style.c (go_style_set_cairo_line): Plug leak.
2015-05-17 Morten Welinder <[email protected]>
* goffice/utils/go-format.c (go_format_output_simple_to_odf):
Taking a wild guess that result should have been initialized to
TRUE.
* configure.ac (set_more_warnings): clang fix from gnumeric.
* goffice/math/go-quad.c (go_quad_start): Initialize constants via
non-const objects. See bug #749463.
2015-05-16 Morten Welinder <[email protected]>
* goffice/graph/gog-theme.c (theme_load_from_uri): Avoid double
unref on exit.
2015-05-14 Morten Welinder <[email protected]>
* goffice/utils/go-pixbuf.c (go_pixbuf_finalize): Plug leak.
2015-05-12 Morten Welinder <[email protected]>
* goffice/graph/gog-renderer.c (gog_renderer_get_pixbuf): Handle
degenerate image size.
(gog_renderer_export_image): Limit size to shield cairo. Fixes #749274.
2015-05-09 Morten Welinder <[email protected]>
* goffice/utils/go-format.c (go_format_parse): Don't read beyond
global variable's end. [#749167]
2015-05-06 Jean Brefort <[email protected]>
* goffice/utils/go-pixbuf.c (go_pixbuf_save): don't save when no data is
available [see #748493, comments 13 to 16]
2015-05-04 Morten Welinder <[email protected]>
* goffice/graph/gog-axis.c (axis_format_value): Allow caller to
handling scaling.
(map_linear_calc_ticks): Handling scaling so we can control
rounding errors in ticks.
2015-05-04 Jean Brefort <[email protected]>
* goffice/graph/gog-axis.c (axis_format_value),
(gog_axis_set_property), (gog_axis_get_property),
(gog_axis_class_init), (gog_axis_init): add a display factor to scale
axis ticks labels. [#748295]
2015-04-28 Jean Brefort <[email protected]>
* goffice/utils/go-image.c (go_image_type_for_format): disable metafiles
support when there is no screen. [#748493]
2015-04-16 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2015-04-16 Morten Welinder <[email protected]>
* Release 0.10.22
2015-04-15 Morten Welinder <[email protected]>
* plugins/plot_barcol/gog-minmax.c (gog_minmax_plot_class_init):
Use GSF_PARAM_STATIC.
2015-04-13 Morten Welinder <[email protected]>
* plugins/plot_pie/gog-pie.c (gog_ring_plot_class_init): Persist
the center size.
2015-04-13 Jean Brefort <[email protected]>
* goffice/data/go-data-simple.c (go_data_scalar_val_new): ensure that
go_data_has_value() returns TRUE if there is a valid number.
2015-04-12 Jean Brefort <[email protected]>
* goffice/graph/gog-axis.c (cb_enable_dim): make manual scale really manual
even if it matches the auto value. [#700599]
2015-04-11 Morten Welinder <[email protected]>
* goffice/math/go-math.c (go_atan2pi): Simplify.
(go_atanpi, go_cotpi): New functions.
2015-04-03 Morten Welinder <[email protected]>
* goffice/utils/go-pattern.c (go_pattern_create_cairo_pattern):
Don't use 8x8 bitmaps for patterns. Draw all patterns with cairo.
(create_direct_pattern): Improve semi-circles rendering.
2015-04-02 Morten Welinder <[email protected]>
* goffice/utils/go-pattern.c (go_pattern_create_cairo_pattern): Do
2 colour translations instead of 64. Split submethods into
separate functions.
(svg_pattern): Fix scaling.
2015-04-01 Jean Brefort <[email protected]>
* goffice/graph/gog-renderer.c (_get_marker_surface),
(gog_renderer_draw_marker), (_free_marker_data): auto fill color made
transparent for opened markers (x, +, and *). [#691025]
* goffice/graph/gog-theme.c (map_marker): ditto.
* goffice/gtk/go-marker-selector.c (go_marker_palette_render_func),
(go_marker_selector_set_shape), (go_marker_selector_set_auto_fill): ditto.
* goffice/gtk/go-marker-selector.h: ditto.
* goffice/utils/go-marker.c (go_marker_is_closed_shape): ditto.
* goffice/utils/go-marker.h: ditto.
* goffice/utils/go-style.c (cb_marker_fill_color_changed),
(marker_init): ditto.
2015-03-31 Morten Welinder <[email protected]>
* goffice/graph/gog-object-xml.c (gog_dtd): Remove duplicate node.
2015-03-31 Jean Brefort <[email protected]>
* goffice/graph/gog-axis.c (make_dim_editor),
(cb_polar_unit_changed), (gog_axis_populate_editor): update circular axis
bounds after a unit change. [#746738]
2015-03-28 Jean Brefort <[email protected]>
* plugins/plot_xy/gog-xy.c (gog_xy_view_render): protect colored xy and
bubble plots against NULL z values.
2015-03-25 Morten Welinder <[email protected]>
* plugins/plot_radar/gog-radar.c (gog_rt_plot_update): Handle log
radial axis better.
(gog_polar_plot_axis_get_bounds): Ditto.
2015-03-24 Morten Welinder <[email protected]>
* plugins/plot_barcol/gog-1.5d.c (gog_plot1_5d_axis_get_bounds):
Use gog_axis_is_zero_important. Avoid underflow.
(gog_plot1_5d_update): Use gog_axis_data_get_bounds.
* goffice/graph/gog-axis.c (gog_axis_is_zero_important): New
function.
2015-03-20 Morten Welinder <[email protected]>
* goffice/math/go-math.c (_go_math_init): generate positive nan.
2015-03-19 Jean Brefort <[email protected]>
* goffice/graph/gog-axis-line.c (axis_line_point): fix selection of
axes using only part of the plot area. [#746456]
2015-03-19 Morten Welinder <[email protected]>
* plugins/plot_barcol/gog-1.5d.c (gog_plot1_5d_axis_get_bounds):
Use 0% as format instead of the ill-defined default which happens
to be 0.00% -- and that makes no sense here.
2015-03-13 Jean Brefort <[email protected]>
* goffice/canvas/goc-line.c (goc_line_draw):
2015-03-12 Morten Welinder <[email protected]>
* goffice/graph/gog-axis.c (gog_axis_data_get_bounds): New
function.
* plugins/plot_xy/gog-xy.c (gog_2d_plot_update): Use
gog_axis_data_get_bounds.
2015-03-10 Jean Brefort <[email protected]>
* plugins/plot_surface/gog-matrix.c (gog_matrix_view_render): fix
rendering of matrix plots with a discrete axis.
* plugins/plot_surface/gog-xyz.c (gog_xyz_plot_axis_get_bounds): ditto.
2015-03-10 Jean Brefort <[email protected]>
* goffice/graph/gog-axis-line.c (axis_line_get_bbox),
(axis_line_render): ensure that ticks on limits are not hidden
because of rounding errors.
2015-03-06 Johannes Deutsch <[email protected]>
* goffice/canvas/goc-line.c (goc_line_draw): do not draw the line
over the arrow head at start. [#745736]
2015-03-04 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2015-03-04 Morten Welinder <[email protected]>
* Release 0.10.21
2015-03-03 Jean Brefort <[email protected]>
* goffice/canvas/goc-canvas.c (goc_canvas_draw): clip each
rectangle before drawing. [#744076]
2015-03-01 Morten Welinder <[email protected]>
* goffice/utils/go-pixbuf.c (go_pixbuf_create_pixbuf): Avoid
critical when loading fails.
(go_pixbuf_load_attr): Plug leak.
2015-02-28 Morten Welinder <[email protected]>
* goffice/utils/go-image.c (go_image_get_info): New function.
2015-02-28 Jean Brefort <[email protected]>
* goffice/utils/go-image.c (go_image_new_from_data): ensure that GOPixbuf
keeps the original data around. [#745297]
* goffice/utils/go-pixbuf.c: ditto.
* goffice/utils/go-pixbuf.h: ditto.
2015-02-27 Morten Welinder <[email protected]>
* goffice/utils/go-pixbuf.c (go_pixbuf_load_data): Set
->data_length.
* goffice/utils/go-image.c (go_image_new_from_data): If no image
data is given, create an unknown image placeholder.
2015-02-24 Morten Welinder <[email protected]>
* goffice/graph/gog-series-labels.c (gog_data_label_finalize):
Plug leak.
(role_data_label_post_add): Plug leak.
(gog_series_labels_finalize): Plug leak.
* goffice/graph/gog-axis-line.c
(gog_axis_base_get_crossed_axis_type): Make this public.
(gog_axis_base_get_crossed_axis_for_plot): New function -- when we
know the plot we can pick the desired axis.
2015-02-20 Morten Welinder <[email protected]>
* goffice/gtk/go-pattern-selector.c (go_pattern_tooltip_func): New
function.
* goffice/gtk/go-gradient-selector.c (go_gradient_tooltip_func):
New function.
2015-02-17 Morten Welinder <[email protected]>
* goffice/utils/go-style.c (go_style_set_font_desc): Doc fix.
* goffice/utils/go-pattern.c (go_pattern_get_svg_path): Plug leak.
2015-02-16 Morten Welinder <[email protected]>
* goffice/utils/go-style.c (cb_font_changed): Set auto_font.
(go_style_apply_theme): Apply font theming.
(go_style_font_sax_save): Only save font when not auto.
(go_style_sax_load_font): Be fairly smart about reading files
created prior to this fix.
(go_style_is_auto): Include auto_font and auto_color.
(go_style_line_sax_save, go_style_gradient_sax_save)
(go_style_text_layout_sax_save): Use sufficient precision.
2015-02-14 Morten Welinder <[email protected]>
* goffice/utils/go-line.c (go_arrow_equal): New function.
* goffice/gtk/go-arrow-sel.c (go_arrow_sel_set_arrow): Use
go_arrow_equal.
2015-02-12 Morten Welinder <[email protected]>
* goffice/utils/go-line.c: Use 0.0, not G_MINDOUBLE, to make cairo
produce dots. That seems to be the documented way to do it.
2015-02-11 Jean Brefort <[email protected]>
* goffice/math/go-rangefunc.c (go_range_increasing),
(go_range_decreasing): ignore nans. [#744200]
2015-02-11 Morten Welinder <[email protected]>
* goffice/canvas/goc-arc.c (prepare_draw_arrow): Protect oval
drawing against invalid sizes.
* goffice/canvas/goc-line.c (goc_line_draw): Avoid overflow.
Round a bit more consistently.
(draw_arrow): Use go_arrow_draw.
* goffice/utils/go-line.c (go_arrow_draw): Only draw oval heads
when sizes are positive.
* goffice/gtk/go-font-sel.c (GOFontSelClass): Fix base class.
* goffice/utils/go-line.c (go_arrow_draw): New function extracted
from Gnumeric.
2015-02-07 Andreas J. Guelzow <[email protected]>
* graph/gog-chart-map.c: protect against missing data
2015-02-07 Morten Welinder <[email protected]>
* goffice/math/go-regression.c (go_linear_solve_multiple):
Initialize regres. Why didn't the compiler warn about that?
2015-02-04 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2015-02-04 Morten Welinder <[email protected]>
* Release 0.10.20
2015-02-04 Morten Welinder <[email protected]>
* plugins/plot_barcol/gog-line.c (gog_line_series_init_style):
Don't wipe out marker colours just because the shape auto.
* plugins/plot_barcol/gog-minmax.c (gog_minmax_series_init_style): Ditto.
* plugins/plot_xy/gog-xy-minmax.c
(gog_xy_minmax_series_init_style): Ditto.
2015-01-26 Jean Brefort <[email protected]>
* plugins/reg_linear/gog-lin-reg.c: ensure that the dims number is correct
in all cases. [see #743507]
* plugins/reg_linear/gog-lin-reg.h: ditto.
* plugins/reg_linear/gog-polynom-reg.c: ditto.
2015-01-23 Morten Welinder <[email protected]>
* configure.ac: Post-release bump.
2015-01-23 Morten Welinder <[email protected]>
* Release 0.10.19
2015-01-21 Morten Welinder <[email protected]>
* goffice/graph/gog-object.c (gog_object_add_by_role): Only
consider this explicitly_typed_role if the child type is not the
default.
2015-01-19 Jean Brefort <[email protected]>
* goffice/graph/gog-axis.c (gog_axis_class_init): fixed typo in default map
name.
* goffice/graph/gog-guru.ui: allow the window to be maximized. [see #742897]
2015-01-17 Morten Welinder <[email protected]>
* goffice/gtk/go-rotation-sel.c (cb_rotate_changed): Avoid
rounding errors by using go_cospi and go_sinpi.
2015-01-16 Jean Brefort <[email protected]>
* plugins/plot_distrib/gog-histogram.c
(gog_histogram_plot_series_update): don't loose any data when using
automatic bins. [#742996]
2015-01-14 Jean Brefort <[email protected]>