-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathNEWS
More file actions
9374 lines (7907 loc) · 319 KB
/
NEWS
File metadata and controls
9374 lines (7907 loc) · 319 KB
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
Gnumeric 1.12.61
Morten:
* Up gtk+ requirement to 3.20. Still ancient.
* Audit code with Gemini AI.
* Plug leaks.
* Make tests run in parallel.
* Refactor analysis tools to be GObject-based.
* Fix sampling tool gui in the periodic case.
* Fix fill-series tool problems with dates.
* Fix chi-square tool problems with labels.
* Add basic testing of most analysis tools.
* Disable excelplugins (unrelated to xls/xlsx files).
* Fix gui crash [#857]
* Introspection fixes.
* Test suite enhancements
* Preserve cvs-to-cvs and cvs-to-txt line endings.
* Fix problems with search-and-replace.
* Fix crash involding document properties and undo/redo.
* Fix potential overflow in NT_SIGMA.
* Improve primality test for large numbers.
* Speed up number theory functions for values with a large
prime factor.
* Fix TRIM to only cut spaces.
* Fix problems with OFFTRAF in extreme cases.
* Fix IFS semantics to match XL's as intended.
Alex H:
* Don't remove initial empty rows/columns for cvs/txt export.
N. Copa:
* Fix parallel build trouble. [#852]
--------------------------------------------------------------------------
Gnumeric 1.12.60
Morten:
* Fix problem with whole-column references in ods. [#797]
* ODS Export and import of marker fill and outline opacity. [#796]
* ODS Export and import of graph line stroke opacity. [#796]
* Fix XLSX import for files lacking cell addresses. [#804]
* GUI improvement when saving file loaded from cvs. [#817]
* Improve LOG with base argument.
* Doc system improvements. [#823]
* Fix GEOMEAN problem. [#829]
* Fix dialog accel collision. [#830]
* Introspection improvements.
* Named expression fixes. [#833]
* Speed up large-range copies. [#836]
* Add missing undo/redo for sheet display options.
* Style the progress bar we use for menu tooltips.
* Clean out old references to mailing list and irc.
* Documentation updates.
* Print using pango context from GtkPrintContext for consistency
between gui and non-gui.
* GUI files relating to cell sizes.
* Fix rare undo problem.
* Experiment with AI translation (+human editing) for the da.po files.
--------------------------------------------------------------------------
Gnumeric 1.12.59
b.s.:
* Fix long-double version of FLT.NEXTAFTER.
* cover denormals and excessive digits for TRUNC, ROUNDDOWN,
ROUNDUP and ROUND. [#770]
Morten:
* Fix xlsx import problem with broken file. [#763]
* Fix ods round trip of iteration tolerance. [#765]
* Fix issues with long doubles in dialogs.
* Leak fixes.
* Fix ssconvert --export-range for pdf. [#783]
* Fix invisible cursor problem. [#712]
* Fix zoom problem. [#707]
* Fix further zoom problem. [#794]
--------------------------------------------------------------------------
Gnumeric 1.12.58
Placeholder:
* No such release.
--------------------------------------------------------------------------
Gnumeric 1.12.57
Morten:
* Fix touchpad scrolling on Wayland. [#678]
* Fix ods auto-filter import problem.
* Fix xml import and export of auto-filters.
* Fix problem with percent-of-range auto-filters with blanks.
* New UNIQUE function.
* New FLT.RADIX, FLT.MIN, FLT.MAX, FLT.NEXTAFTER functions (for
testing).
* New experimental --with-decimal64 for base-10 math.
* Fix sheet resize problem.
* Fix UI problem with redo of expression entry. [#755]
* Accept ad-hoc clipboard format "text/plain;charset=utf-8". [#754]
--------------------------------------------------------------------------
Gnumeric 1.12.56
Hubert Figuière:
* Fix tooltip problem on Wayland.
Morten:
* FLOOR, CEILING: Improve xl compatibility. [#703]
* Fix dependency problems with arrays. [#725] [#647]
* Improve clipboard pasting from firefox. [#733]
* Fix number-stringification for E-numbers. [#719]
* Improve generation of random integers.
* Work around cairo performance problem re anting. [#736]
* Fix HTML export problem with underline.
--------------------------------------------------------------------------
Gnumeric 1.12.55
Morten:
* Fix problem making new objects invisble. [#694]
--------------------------------------------------------------------------
Gnumeric 1.12.54
John Denker:
* Improve whitespace handling in html import. [#671]
Morten:
* Improve various desktop environments' icon discovery. [#677]
* New function ENCODEURL. [#658]
* New libpython configuration. [#680]
* Fix problem relating to sheet remove and conditional format.
* Fix inconsistent rounding of half-way cases. [#638]
* Fix xlsx leaks.
* Cell comment speed-ups. [#692]
--------------------------------------------------------------------------
Gnumeric 1.12.53
Morten:
* Fix xlsx import of T.INV.
* Fix inter-process array paste problem. [#634]
* Fix problem with xlsx number format 14.
* Fix problems with complex number rendering. [#638]
* Fix near-denormal parsing case. [#656]
* Fix mildly crazy ROUND edge cases. [#661]
* Fix dialog reuse problem. [#657]
* Fix sc import problem. [#663]
* Work a little hard at avoiding -0. [#652]
* Fix html import problem. [#669]
* Fix reading localc extension for engineering format. [#659]
* Fix strict-conformance ods problem with E-notation. [#672]
* Improve test suite
* Fix crash involving moving conditional formats.
--------------------------------------------------------------------------
Gnumeric 1.12.52
Morten:
* Attach the vertical alignment selector to the toolbar.
* Improve the toolbar styling a bit.
* Fix toolbar overflow menu's labeling.
* Many improvements to vertical toolbars.
* Install appdata file in new location [#612]
* Allow styling of cell extension indicators.
* Restore bolding of active sheet tab.
* Fix import of mildly broken print settings in xlsx files from
OnlyOffice.
* Various --with-long-double fixes.
* Fix BITAND.
* Test improvements.
* Fix xlsx write for sheet objects with text contents. [#617]
* Fix leak.
* Fix old problem saving column widths. [#619]
* Set default number of sheets to 1.
* Fix edge error case for SMALL and LARGE. [#620]
* Increase the default column width a bit.
* Fix xlsx import/export of default column width.
* Be less aggressive with automatic column widening. [#621]
--------------------------------------------------------------------------
Gnumeric 1.12.51
Jean:
* Fix error bars when data are in a multi-column array. [#594]
* Always set the GO_DATA_HAS_VALUE flag when needed. [#595]
Morten:
* Fix --with-long-double configuration.
* Fix applix import/locale problem.
* Make sure CEIL doesn't return -0. [#603]
* Add ILOG function. [#591]
* Fix MROUND. [#604]
* Take evasive action re g_memdup.
* Fix inter-gnumeric array formula paste crash. [#606]
* Avoid re-querying file existance for recent files. [Part of #602]
* Fix rich-text rendering (based on work of Jean). [#607]
* Fix crash with conditional styling. [#597]
* Extend BITOR, BITAND, BITXOR to any numbers of arguments.
* Fix ods export leak. [#611]
--------------------------------------------------------------------------
Gnumeric 1.12.50
Morten:
* Fix undo problem with sorting and cell comments.
* Python loader cleanups.
* Use Python's bool type instead of rolling our own.
* Export file:// links to html. [#569]
* Export file:// links to xlsx. [#569]
* Improve handling of invalid formulae from xlsx. [#574]
* Introspection fixes.
* Improve CELL("format",...) [#576]
* wk4 import improvements. (For no good reason.)
* Fix some -fsanitize=undefined problems.
* Improve excel-specific xlsx import of validation.
--------------------------------------------------------------------------
Gnumeric 1.12.49
Andreas:
* Do not try to turn all of LibreOffice's SplitModes into frozen
panes [file of #557]
Jean:
* Fix graph size issue when the graph is in its own sheet. [#516]
* Fix one more graph size issue when the graph is in its own sheet. [#565]
JohnDenker:
* Fix ssgrep problem when used as a filter. [#552]
Morten:
* Rework conditional styling's upper level.
* Fix autofill array critical. [#511]
* Handle missing values in xlsx. [#517]
* Fix critical when using fd://1.
* Don't trim spaces for csv files as per rfc 4180. [#528]
* Fix cvs separator guessing problem with quotes. [#537]
* Improve handling of expressions in csv files.
* Plug ssconvert leak. [#546]
* Fix bogus time match for "3.a". [#545]
* Use 1us resolution for NOW. [#549]
* Fix ssconvert sheet selection for csv. [#555]
* Test suite improvements.
* Fix ods import problem with irregular sheet sizes.
* Fix ods import problem with crazy named expressions. [#557]
* Allow plain space as 1000s separator in FR locale.
* Fix graph size problem affecting image output. [#507]
* Check for yelp in autogen. [#558]
* Fix ssconvert problem with conditional styles.
* Move from style regions to style classes in css.
* Implement #ifdef for built-in css.
* Dead kitten in css.
* Improve the drawing of filter combos.
* Allow theming of grid color.
* Fix dirty-tracking. [#554]
* Plug ods write leak.
* Disable cs documentation translation due to itstool/libxml2 bug.
--------------------------------------------------------------------------
Gnumeric 1.12.48
Andreas:
* Add axis title to chart in histogram tool. [#408]
* Fix line end marker roundtrip through strict ODF
* Improve export of line markers to ODF for interoperability
* Improve line marker handling on import
* Fix LaTeX export. [#489]
* When reading an ODF file make all sheets of equal size. [#505]
Jean:
* Fix xlsx object non-import crash.
* Fix in-place graph data problem. [#492]
* Port to Python3. [#419]
Morten:
* Fix performance issue with sample_datasource. [#491]
* Fix partial-line issue with sample_datasource.
* Fix load of in-place graph data with extra ()s. [#492]
* Fix Ctrl-; cursor position. [#494]
* Fix ssconvert --merge-to problem. [#496]
* Fix sheet size paste problem. [#497]
* Speed up really large auto-filters. [#465]
* Fix 2038 problem on quit.
* Improve tests.
* Improve dependency tracking for implicit intersection. [#501]
* Fix format dialog issue. [#503]
* Re-tune style quad tree. [#234]
* Re-tune dependency bucket system. [#502]
* Fix global name parsing problem with non-uniform sheet sizing.
* Avoid style dependency redraw during file load.
* Tend to dead kittens.
* Fix metadata dialog. [#510]
* Fix potential 64-bit problem with signals.
* Fix GnmRange introspection.
--------------------------------------------------------------------------
Gnumeric 1.12.47
Andreas:
* Fix chart and image name roundtrip through ODF. [#477]
* Fix print flag roundtrip for sheet objects through ODF. [#486]
Jean:
* Fix crash when the embedded spreadsheet is invalid. [#481]
Morten:
* Fix dialog size problem.
* Add "--set CELL=CONTENTS" option to ssconvert.
* Improve tests.
* Improve speed on exit with lots of conditional formatting.
* Improve error message [#472]
* Impose ordering of ssconvert --export-graphs
* Doc fixes.
* Fix CELL crash. [#479]
* Handle export options for ssconvert --export-graphs.
* Fix deps crash. [#480]
* Fix chart name roundtrip through XLSX. [#478]
* Fix sheet object print flag roundtrip through XLSX. [#486]
--------------------------------------------------------------------------
Gnumeric 1.12.46
Andreas:
* Fix format import from ODF. [#403]
Jean:
* Fix charts size in XLS format. [#414]
* Fix loading string from arrays in charts. [#416]
* Implement wrapping of rotated text. [#394]
Morten:
* Fix over-eager guessing of dates in csv. [#401]
* Fix Mac build problem. [#402]
* Fix inter-process paste crash [#406]
* Fix problem saving cell protection to xlsx. [#409]
* Look for python3 before python. [#419]
* Fix SUMIF (etc) problem with blank criteria. [#423]
* Improve editing of percentages. [#413]
Thomas Kuehne:
* Improve html import. [#392]
Shlomi Fish:
* Command line export of graphs. [#410]
--------------------------------------------------------------------------
Gnumeric 1.12.45
Eugen Dedu:
* Doc fixes. [#380] [#381] [#382]
Morten:
* Add DIGAMMA function.
* Support ISO-8601 UTC date/time input. Mostly. [#371]
* Improve cvs separator guessing. [#397]
* Add export option "active-sheet". [#396]
Thomas Klausner:
* Fix compilation issue. [#378]
Thomas Kuehne:
* Handle odf files with no styles whatsoever. [#389]
* Improve Excel standalone-xml import. [#391]
--------------------------------------------------------------------------
Gnumeric 1.12.44
Jean:
* Fix document properties types. [#367]
* Call pygobject_init() if needed. [#368]
Morten:
* Fix SWITCH's default argument. [#354]
* Fix problem with setting auto-func. [#357]
* Fix problem reading really old xls format.
* Fix sheet filter problem. [#359]
* New NT_RADICAL function.
* Fix conditional style crash.
* Fix applix locale problem. [#362]
* Fix applix encoding and escape problems. [#363]
* New LAMBERTW function.
* Plug sheet object leak with paste.
* Fix documentation problem for vararg functions.
--------------------------------------------------------------------------
Gnumeric 1.12.43
Morten:
* Fix header installation.
* Fix psiconv compilation.
--------------------------------------------------------------------------
Gnumeric 1.12.42
Morten:
* Plug leaks.
* Introspection fixes.
* Work around gtk+ breakage re. link colors.
* Fix problems with ssconvert --export-file-per-sheet. [#694408]
* Enable ssconvert --export-file-per-sheet for html, latex, and pdf.
* Test suite improvements.
* ssconvert improvements.
* Makefile improvements.
* Don't save any configuration when running ssconvert/ssdiff/...
* Turn GnmFunc into a GObject.
* Make clipboard output deterministic.
* Fix conditional format crash [#343].
--------------------------------------------------------------------------
Gnumeric 1.12.41
Morten:
* Fix problem with object pasting.
* Fix undo problem for cell comments. [#732653]
* Exit with non-zero with we fail to load file on command line.
* Fix undo crash. [#795861]
* Introspection fixes.
* Don't offer more than 15 significant digits by default. [#754391]
--------------------------------------------------------------------------
Gnumeric 1.12.40
Andreas:
* Fix histogram tool for the case of no labels. [#795475]
Dean McCarron:
* Introspection fixes.
Morten:
* Add floating-point environment sanity check. [#794515]
* Before saving, verify that files hasn't changed on disk. [#334024]
* Add GUI for comparing sheets.
* Introspection fixes.
* Clean up workbook view construction.
* Test suite improvements.
* Fix problems with boxed types.
* Avoid most punting for object properties.
* Fix paste from LibreOffice.
* Fix paste to LibreOffice -- use Biff8. [#795280]
* Allow inter-process paste-special. [#346630]
* Fix ssconvert --merge-to problem with names. [#795408]
* Fix problem with image pasting.
* Allow pasting an image into Gnumeric. [#366816]
* Full-column paste includes column width. [#121722]
* Auto-fix shared array formulas in gnumeric files.
* No-net-access doc build. [#790226]
* No-net test suite fixes.
--------------------------------------------------------------------------
Gnumeric 1.12.39
Morten:
* Fix ssdiff problem. [#792038]
* Fix ISREF.
* Some internal array formula code cleanups.
* Fix problem with stopping a glpk solver.
* Improve workaround for gtk+ scrollbar bug. [#792417]
* Fix minor issue for MUNIT.
Rafael Fontenelle:
* Doc fixes. [#792556] [#792592]
--------------------------------------------------------------------------
Gnumeric 1.12.38
Morten:
* Avoid large stack use here and there.
* Test suite improvements.
* Improve sylk writer. Don't ask.
* Teach ssdiff about column/row sizes.
* Teach ssdiff about defined names.
* Fix a few ssdiff crashes.
* Fix crash on text import.
--------------------------------------------------------------------------
Gnumeric 1.12.37
Morten:
* Test suite improvements.
* Improve format guessing for newly entered formulas.
* Improve PERMUTATIONA for unusual arguments. [#790742]
* Extend range of NT_PI.
* Improve xlsx export of cell comments. [#790756]
* Plug leaks.
* Fix potential crash on exit.
* Speed-up number theory functions.
* Fix combo object icon.
* Code cleanups for main binary.
* Fix potential crash in gtk scroll bar bug workaround.
* Avoid large stack use here and there.
--------------------------------------------------------------------------
Gnumeric 1.12.36
Andreas:
* Improve contour plot export/import to/from ODF. [#788728]
* Improve contour plot import of Excel generated ODF. [#788801]
* Improve surface plot export to ODF. [#788447]
* Fix export/import of CONCATENATE to and from ODF.
* Fix export/import of minor axis divisors to and from ODF.
* Fix import of affice trendline from ODF. [#789538]
Jean:
* Fix background of multiple selection. [#789411]
* Workaround for gtk scroll bar bug. [#789412]
Morten:
* Convert all xpm files to png.
* Avoid to-pixdata options for resources. It's going away.
* Minor CORREL improvement.
* Fix error on xlsx files with bogus Print_Area.
* xlsx import improvements for contour graphs.
* xlsx export improvements for contour graphs.
* Fix xlsx export of trend line equation.
* Fix xlsx import and export of trend line affine flag.
* Avoid critical on exporting unnamed xlsx trend line.
* Fix VDB for partial periods. [#790299]
--------------------------------------------------------------------------
Gnumeric 1.12.35
Jean:
* Fix cell border style selectors with recent gdk-pixbuf. [#781988]
Morten:
* Test suite improvements.
* Improve relative accuracy of BESSELJ and BESSELY.
* New function REDUCEPI.
* Fix further fallout from glpk format change. [#783077]
--------------------------------------------------------------------------
Gnumeric 1.12.34
Andreas:
* Fix hyperlinks import from ODF. [#779635]
Jean:
* Fix xlsx export of chart series names. [#778618]
* Always export a transparent fill style in charts. [#779160]
Morten:
* Doc fixes.
* Fix xlsx import with missing header/footer. [#778292]
* Minor xlsx import improvements with alias colors.
* Test suite improvements.
* Improve Excel handling of hyperlinks.
* Hyperlinks improvements. [#706671]
* Plug leaks.
* Fix issues with sheet-local names.
* ssdiff improvements with hyperlinks, input messages,
conditional formats, and validations.
* Make exit code from ssdiff follow diff's.
* Fix ssdiff with inter-sheet references.
* Fix style border colour sharing.
--------------------------------------------------------------------------
Gnumeric 1.12.33
Andreas:
* Fix export/import of scaling information to/from ODF.
* Fix Wilcoxon Signed Rank Test handling of ties. [#772718]
* Fix xlsx export of scale to page information. [#776196]
Jean:
* Fix use of cell formats in graphs data labels. [#777338]
Morten:
* Speed up sstest part of test suite.
* Bring documentation build into the 21 century.
* Non-linear solver improvements.
* Avoid atomizing style regions with conditional formats.
* Adapt to glpk file format changes.
* Fix stf problems with text format. [#777543]
--------------------------------------------------------------------------
Gnumeric 1.12.32
Andreas:
* Improve html4.0 fragment export. [#769343]
* Fix moving averages, exponential smothing and principal
component tools. [#769659]
Jean:
* Fix paradox plugin build with pxlib-0.6.7. [#769319]
Morten:
* Avoid gnome-common dependency.
* New text functions CONCAT, TEXTJOIN.
* New selection functions IFS, SWITCH.
* New aggregation functions SUMIFS, AVERAGEIFS, MINIFS, MAXIFS, COUNTIFS.
* Fix criteria function issue with errors in the selector area.
* Fix corner case for MINA and MAXA.
* Fix criteria matching of numbers against strings.
* Test suite improvements.
--------------------------------------------------------------------------
Gnumeric 1.12.31
Morten:
* Fix case issues for database functions.
* Anchor COUNTIF criteria at end too.
* Add tests for COUNTIF.
* Fix inter-process paste crash. [#768164]
--------------------------------------------------------------------------
Gnumeric 1.12.30
Morten:
* Improve format guessing for csv and txt files.
* Fix DCOUNT and DCOUNTA with missing field. [#767290]
* Fix strictness in database functions.
* Fix a bunch of corner cases for database functions.
* Add tests for database functions.
--------------------------------------------------------------------------
Gnumeric 1.12.29
Jean:
* Fix array reading in plots using matrix data. [#765483]
Morten:
* Documentation fixes for complex numbers.
* Fix rare RANDBETWEEN problem.
* Test suite improvements.
* Fix value-area problem. [#765438]
* Make xlsx shared strings parsing more robust. [#765544]
* Dead kittens.
--------------------------------------------------------------------------
Gnumeric 1.12.28
Morten:
* Fuzzed file fixes. [#761663] [#761727] [#762278]
* Plug leaks.
* Fix problems with ssconvert to lp/cplex formats.
* Add sensitivity report to solver.
* Fix bounds problem with cplex exporter.
* Fix IMARCCOSH(1).
* Add more tests for complex number evaluation.
* Improve accuracy of IMLOG10.
--------------------------------------------------------------------------
Gnumeric 1.12.27
Andreas:
* Read/write rich-text font-size from ODF files. [#759983]
* Read/write zoom values to/from ODF files in LO compatible way. [#700013]
* Read new attribute to am/pm element in ODF import. [#760043]
* Fix NETWORKDAYS. [#760576]
Jean:
* Fuzzed file fix. [#760546]
* Fix data labels when the source is a range with several rows and
columns. [#761048]
Morten:
* Teach ssconvert to split sheets into separate .txt files [#694408]
* Improve test suite.
* Fuzzed file fixes. [#760046] [#760085] [#760087] [#760089]
[#760043] [#760103] [#760102] [#760101] [#760105] [#760106]
[#760104] [#760229] [#760231] [#760232] [#760544] [#760545]
[#761295]
* Fix R.DBINOM extreme-value case. [#760230]
* New function AGM.
* Fix canvas problem leaving grab in place. [#760639]
* Work around gtk+ bug causing growing windows. [#761142]
* Improve BESSELJ and BESSELY.
* Improve BETA accuracy.
* Fix problem with database functions. [#761305]
* Fix font problem for ssconvert to pdf. [#761296]
* Fix bison check. [#761398]
* Improve IMIGAMMA coverage.
--------------------------------------------------------------------------
Gnumeric 1.12.26
Morten:
* Fix potential crasher on showing initial window.
--------------------------------------------------------------------------
Gnumeric 1.12.25
Jean:
* Add support in recent files dialog for multiple selesction and double
click. [#759160]
Morten:
* Fix TABLE problems. [#752181] [#752178] [#752182]
* Fuzzed file fixes. [#752179] [#752180]
* Add R.DGUMBEL, R.PGUMBEL, R.QGUMBEL.
* Fix conditional format problem. [#750271]
* Test also RANDWEIBULL and RANDLOGNORM.
* Fix problem with R.QHYPER
* Add R.DRAYLEIGH, R.PRAYLEIGH, R.QRAYLEIGH.
* Fix GUI translation problems.
* Fix bugs with merged cells. [#504004]
* Make builds more reproducible.
* Improve ssdiff for validation.
* Fix problem with xls export of list validation. [#557555]
--------------------------------------------------------------------------
Gnumeric 1.12.24
Jean:
* Fix printing of sheet objects with one cell or absolute anchors. [#753961]
* Fix snap to grid for one cell or absolute anchored objects. [#754792]
* On export, just change the extension, not more. [ubuntu #1497344]
--------------------------------------------------------------------------
Gnumeric 1.12.23
Andreas:
* Fix memory handling error on fuzzed sxc file. [#748535]
* Improve import/export of page layout from/to ODF.
* Improve function import to ODF. [#750627]
* Add CONFIDENCE.T, MODE.MULT, PERCENTILE.EXC, PERCENTRANK.EXC
and QUARTILE.EXC.
* Fuzzed file fixes. [#751060] [#751501] [#751851] [#751922]
* Fix ODF import of named expressions. [#750627]
* Import reference unions from ODF. [#750627]
* Improve CONVERT function.
Jean:
* Fix xlsx import of plot area manual layout. [#748016]
* Fix out of bounds read. [#749121]
* Fuzzed file fixes. [#750042] [#751217] [#751270] [#751271]
[#751383] [#751384] [#751758] [#751744] [#751908] [#751920]
[#751249] [#751945] [#751909] [#751946] [#751968] [#751969]
[#751971] [#751989]
Morten:
* Fix import/export of graph backplane.
* Fix export of unlabelled axes.
* Fix export of rotated axis labels.
* Fix xlsx save crash related to shared strings. [#748477]
* Solver code refactoring.
* Plug leaks.
* Fuzzed file fixes. [#748595] [#748597] [#749031] [#749030]
[#749069] [#748533] [#749118] [#749166] [#749181] [#749184]
[#749236] [#749240] [#749234] [#749235] [#749271] [#749270]
[#749424] [#749917] [#749919] [#750043] [#750044] [#750046]
[#750811] [#750810] [#750857] [#750864] [#750862] [#750858]
[#751126] [#751254] [#751253] [#750851] [#751258] [#751259]
[#751502] [#751390] [#751579] [#751659] [#751660] [#751662]
[#751970] [#752022] [#751988] [#752021] [#752080] [#752081]
[#752124]
* Make solver check linearity of model.
* Fix xls saving of marker style. [#749185]
* Make compilation with clang work again. [#749138]
* Fix xlsx problem with import of header/footer. [#750853]
* Fix xls save problem with characters outside codepage. [#750856]
* Fix named expression problem. [#751056]
* Fix xlsx namespace problem. [#751120]
* Protect database functions against malformed database. [#751392]
* Fix csv problem with invalid UTF-8 data. [#751577]
* Fix GROWTH. [#751658]
* Restrict TABLE to array context. [#751871]
--------------------------------------------------------------------------
Gnumeric 1.12.22
Andreas:
* Improve ODF import/export of additional axes. [#746321]
* Fix ODF export of styles for additional axes. [#746621]
* Simplify export of SEC and SECH to ODF. [#747211]
* Harden ODF import against fuzzed files. [#747447][#747448]
* Fix ODF import/export of unlinked checkboxes and radio buttons.
* Plug leak in ODF import and export. [#747590]
* Improve pattern fill round trip through ODF.
* Fix export of Ring plots to ODF. [#747763]
* Fix import/export of Pie charts from/to ODF. [#747807]
* Add more determinism to ODF export. [#747916]
Jean:
* Fix signal handling while running Python. [#744638]
* Implement absolute anchoring for sheet objects.
* Make graphs (and images) not resize with cells by default. [#684450]
Morten:
* xlsx import/export of log axis.
* xlsx export of multiple plots in chart.
* Fix xlsx import of multiple axes.
* Fix xlsx title export problem.
* Fix xlsx export problem with series' style.
* Fix xlsx import/export of sheet tab text colour.
* Improve test suite.
* Actually implement DECIMAL.
* Fix BETA problem with special case.
* Fix MIDB and REPLACEB length check.
* Fix PERMUATIONA corner case.
* Fix RANDLOG.
* Fix RANDGEOM to use same distribution as R.DGEOM.
* Improve xlsx roundtrip of GOStyle.
* Improve reading of xlsx theme colours.
* Plug leaks.
* Fix REPLACEB problem. [#747210]
* Fix sheet filter problem.
* Minor R.DNORM improvement.
* Improve RAYLEIGH accuracy.
* Improve R.QCAUCHY accuracy.
* Add TANPI and COTPI functions.
--------------------------------------------------------------------------
Gnumeric 1.12.21
Andreas:
* ODF import/export general plot data specifications. [#743818]
* ODF import/export the z-index for line objects.
* Fix ODF import of stroke colours of sheet objects.
* Fix ODF import/export of fill colour and type. [#744051]
* Fix ODF import/export of marker fill and outline colours.
* Improve ODF export of manually positioned charts in multi-chart
graphs. [#743789]
* Fix ODF export of serieslines styles.
* Fix ODF import/export of axes label visibility. [#743788]
* ODF import/export additional axislines.
* Fix ODF import/export of fonts in charts. [#744632]
* ODF import/export additional axes. [#743787]
* Fix ODF style import of secondary plots. [#744930]
* Fix ODF style export for data points in plots. [#745091]
Morten:
* Implement xlsx import of sheet widgets.
* Implement xlsx export of sheet widgets.
* Fix xlsx import/export of patterns.
* Plug leaks.
* Arrow properties editor. [#158327]
* Fix xlsx export of line style None.
* Fix search-and-replace problem with text format.
* Fix xlsx import/export of gradients.
* Fix undo problems with scrollbars.
* Fix spinner properties dialog.
* SheetObjectImage fixes.
* Fix problem reading images from xls.
* Namespace fixes
* Test suite improvements.
* Fix various dtd version problems.
--------------------------------------------------------------------------
Gnumeric 1.12.20
Andreas:
* ODF import/export trendline names. [#743448]
* ODF import/export trendline affinity & dimensions.
* ODF import/export major & minor chart axis tick marks.
* ODF import/export chart axis min and max formulae.
* Fix ODF export of single cell ranges in graphs. [#743619]
* ODF import/export series fill types. [#743613]
* ODF import/export marker outline colour.
* ODF export all charts in a graph.
* ODF import/export axis positions.
* ODF import/export series lines. [#743785]
* ODF import/export all plots in a chart. [#743786]
Morten:
* xlsx chart import: fix font family name.
* xlsx import/export trend line names.
* Fix gda plugin compilation. [#743506]
* Fix xlsx export problem with auto markers.
* Import/export xlsx chart axis min/max/steps.
* Export xlsx chart axis tick marks.
* Fix xlsx problem with inverted axis.
* Export sliders as scrollbars for xls.
* Fix xls loading of horizontal scrollbars. [#743754]
* Plug leaks.
* Fix xlsx comment export.
* Make XL see our exported xlsx axes.
* Fix xlsx import/export of axis font info. [#743822]
--------------------------------------------------------------------------
Gnumeric 1.12.19
Andreas:
* Add latex fragment exporter of visible rows only. [#739512]
Jean:
* Fix ants problems.
Morten:
* Plug leaks.
* Pay more attention to union access rules.
* Attempt a fix for clipboard crash. [Redhat #1160975]
* Truncate long strings for display in stf import.
* Fix crash on closing a graph sheet.
* Fix undo crash with conditional formatting and insert row. [#741197]
* Fix xlsx export of HYPGEOMDIST.
* Fix xlsx export of document properties.
* Fix multihead issue with graph windows.
* Improve test suite.
* Reorganize icon handling.
* Allow removing a specific item from the history. [#735305]
* Fix GNM_HALIGN_DISTRIBUTED rendering. [#726155]
* Restore translations of function help texts.
* Fix import of extended float formula results from wk4 files.
* Fix ADDRESS problem.
* Fix sheet-filter problem with errors. [#742601]
* Improve error handling for .gnumeric a bit.
* Improve xlsx graph import: line colour; marker size; marker color;
no lines; bounding box; trend lines; regression equations; axis label.
* Improve xlsx graph export: line style; bar/col direction; marker shape;
marker size; marker color; axis label; chart title; trend lines.
* Improve xlsx export: default col widths; schema validity.
* Improve modifier handling. [#743130]
Thomas Kluyver:
* Fix import of extended floats from wk4 files. [#739679]
--------------------------------------------------------------------------
Gnumeric 1.12.18
Andreas:
* Improve documentation. [#733466]
* Add warning dialog. [#733352]
* Fix rich text roundtrip through ODF. [#737039]
Jean:
* Fix dialogs behavior in full screen mode. [#736395]
* Save axis format to xls. [#736656]
* Fix recent files dialog crasher. [#737261]
Morten:
* Fix xls export problem. [#733771]
* Update WEEKDAY function.
* Fix xlsx export problem for strings. [#736202]
* Improve xlsx import of rich text.
* Text suite improvements.
* Fix minor ods rich text import problem.
--------------------------------------------------------------------------
Gnumeric 1.12.17
Morten:
* Fix UMR. [#730727]
* Fix crashes on exit. [#730857] [#730884]
* Handle value formats for xlsx export. [#724517]
* Improve xlsx import/export of rich text. [#726189]
* Fix solver critical.
--------------------------------------------------------------------------
Gnumeric 1.12.16
Andreas:
* Fix database-range import from ODF. [#730197]
* Improve chart roundtrip through ODF. [#728197]
* Fix export of non-ODF interpolation types to ODF.
* Fix export of titles and subtitles to ODF. [part of #730397]
* Fix axis sub-element order in ODF export. [part of #730397]
* Fix undo crash related to hyperlinks. [#730466]
Morten:
* Start moving off GtkUIManager.
* Clean out old #ifdef.
* Fix ods series marker import/export.
* Fix plan-perfect issue. [Debian #748054]
* Make installtion work without scrollkeeper.
* Improve import/export testing. [#730397]
* Speed up certain large ranges of conditional formatting.
* Work towards making ods export deterministic.
--------------------------------------------------------------------------
Gnumeric 1.12.15
Andreas:
* Fix chart size in ODF import. [#728278]
* Improve chart roundtrip through ODF. [#728197]
* Export centre-across-selection in a way LO can understand. [#726010]
* Improve format roundtrip through ODF.
Morten:
* For xlsx, don't complain over "ext" elements.
* xlsx graph import improvements.
* Attempt a fix for tabs appearance with gtk+ 3.12. [#728465]
* Make it possible to have all callables as python functions. [#728611]
* Improve format roundtrip through ODF.
* Plug leaks.
* Make search dialog non-modal again. [#728817]
--------------------------------------------------------------------------
Gnumeric 1.12.14
Andreas:
* Improve format import from ODF files.
Morten:
* Plug leaks.
* xlsx conditional format fixes. [#726202]
* Fix semantics of conditional format operators. [#726806]
* Fix xlsx quotes in formula strings. [#726824]
* Fix xls export of rich text.
* Fix problems with large, circular farms of VLOOKUP etc. [#723894]
* Let goffice handle conditional number formats.
* Attempt a workaround for Ubuntu scroll bars.
* Fix odf parse problems.
* Fix array editing.
* Fix column/row header colouring problem. [#728007]
--------------------------------------------------------------------------
Gnumeric 1.12.13
Andreas: