-
Notifications
You must be signed in to change notification settings - Fork 980
Expand file tree
/
Copy pathChangeLog.2025
More file actions
1956 lines (978 loc) · 44 KB
/
Copy pathChangeLog.2025
File metadata and controls
1956 lines (978 loc) · 44 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
2026-01-01 Christopher Lam
* Merge branch 'autoclear' into stable
2025-12-26 Christopher Lam
* [window-reconcile.cpp] only enable autoclear if preference set
2025-12-28 John Ralls
* GncDateTime: New exceptions and a 32-bit time_t problem.
2025-12-28 John Ralls
* Bug 799713 - Account Editor changes account color to gray when default selected.
2025-12-17 Christopher Lam
* [window-reconcile.cpp] add autoclear toolbar button in reconcile ui
2025-12-22 Christopher Lam
* [reconcile-view.c] add helper fns for unclear/clearing splits
2025-12-23 Christopher Lam
* [gnc-autoclear.cpp] gettext for abort messages
2025-12-19 Christopher Lam
* [gnc-autoclear.cpp] upgrade GError to return code too
2025-12-21 Christopher Lam
* [io-gncxml-v2.cpp] xmlGetProp must be xmlFreed
2025-12-20 John Ralls
* Fix Asan UB complaint about int64_t alignment.
2025-12-20 John Ralls
* Release GnuCash 5.14 (tag: 5.14)
2025-12-20 John Ralls
* Merge latest translations from Weblate.
2025-12-20 Anastasios Ikonomou
* Translation update by Anastasios Ikonomou <anastasios.ikonomou@gmail.com> using Weblate
2025-12-20 Milo Ivir
* Translation update by Milo Ivir <mail@milotype.de> using Weblate
2025-12-20 Christian Wehling
* Translation update by Christian Wehling <christian.wehling@web.de> using Weblate
2025-12-20 Pedro Albuquerque
* Translation update by Pedro Albuquerque <pmra@protonmail.com> using Weblate
2025-12-20 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2025-12-20 Yuri Chornoivan
* Translation update by Yuri Chornoivan <yurchor@ukr.net> using Weblate
2025-12-20 Arve Eriksson
* Translation update by Arve Eriksson <031299870@telia.com> using Weblate
2025-12-19 Christopher Lam
* Merge flywire branch 'Subtotal' into stable
2025-12-18 Christopher Lam
* [sixtp-dom-parsers.cpp] g_date_free GDate leak
2025-12-10 Robert Fewell
* Bug 799701 - SX Editor error When Frequency=Once
2025-12-16 John Ralls
* gncTaxTable: chain up to the correct parent function.
2025-12-16 Robert Fewell
* Additional change to recent About dialog changes
2025-12-15 John Ralls
* Merge Bruce Schuck's 'USBonds' of https://github.com/bpschuck/gnucash into stable
2025-12-14 Bruce Schuck
* Added US Bonds (usbonds) to gnc-commodity.cpp New Finance::Quote module to get prices for series E, EE, or I bonds
2025-12-14 John Ralls
* Bug 799504 - Description of CAMT 053.001.02 has duplicate text
2025-12-14 John Ralls
* Update translations with new gnucash.pot for upcoming 5.14 release.
2025-12-14 John Ralls
* Merge latest translations from weblate.
2025-12-14 Marko Bojović
* Translation update by Marko Bojović <bojovicmarko@outlook.com> using Weblate
2025-12-14 acemk
* Translation update by acemk <ace.dimitrievski@gmail.com> using Weblate
2025-12-14 Franko
* Translation update by Franko <web.90947@t.sc-ha.net> using Weblate
2025-12-14 Gurkan Bebek
* Translation update by Gurkan Bebek <gurkanbebek@gmail.com> using Weblate
2025-12-14 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2025-12-13 John Ralls
* Force options text views to be at least 400px wide.
2025-12-13 Christopher Lam
* [gnc-main-window.cpp] addendum to ed03e61dab cancel on click+drag
2025-12-08 Christopher Lam
* [backend/xml] dom_tree_to_text returns std::optional<std::string>
2025-12-09 Christopher Lam
* [backend/xml] use apply_xmlnode_text
2025-12-09 Christopher Lam
* [sixtp-dom-parsers.h] add templated functions for node text
2025-12-13 Christopher Lam
* Revert "[window-reconcile.cpp] offer auto-clear if combination found"
2025-12-10 flywire
* Use trep-engine lowest shown grouping for detail
2023-05-03 flywire
* Only show Subtotal Prefix with Transactions
2025-11-28 Robert Fewell
* Add CSS to make the About dialog text view background the same as the rest of the dialog. This can be over ridden by the users own CSS file.
2025-11-24 Robert Fewell
* Add ability to copy About dialog configuration settings to the clipboard so they can all be pasted in one go.
2025-12-09 Christopher Lam
* [gnc-euro.cpp] fix typo for bulgarian lev rate
2025-12-05 Christopher Lam
* [guid.cpp] GncGUID* avoids temporary gnc::GUID, and better hash
2025-12-08 John Ralls
* Bulgarian Lev (BGN) replaced by Euro 1 Jan 2026.
2025-12-08 Christopher Lam
* [sixtp-dom-parsers.cpp] dom_tree_to_gdate: GDate on the stack
2025-12-08 Christopher Lam
* [sixtp-utils] string_to_num upgraded to use string_view
2025-12-07 John Ralls
* Bug 799699 - Inconsistent column headers in scheduled transaction editor
2025-12-06 John Ralls
* SRFI-64 test-equal no longer considers exceptions equal to #f.
2025-12-06 John Ralls
* Fix missing or incorrect expected exception test failures.
2025-12-06 John Ralls
* Show the full test result alist on failure if expected value isn't defined.
2025-12-06 John Ralls
* Bug 799702 - build breaks with guile 3.0.11
2025-12-05 Christopher Lam
* [backend/xml] fast string setters for acct/trans/split
2025-12-05 Christopher Lam
* [sixtp-dom-parsers.cpp] introduce dom_node_to_text for solo text node
2025-12-07 Christopher Lam
* [sixtp-dom-parsers.cpp] Remove unnecessary commodity allocation during XML load
2025-12-02 John Ralls
* Add a Postponed column to the Scheduled Transactions list.
2025-12-05 Christopher Lam
* [backend/xml] dom_tree_to_guid returns std::optional<GncGUID> instead of GncGUID*
2025-12-01 Christopher Lam
* [gnc-autoclear.cpp] restore abort explanation message
2025-11-30 Christopher Lam
* [guid.cpp] string->guid should disallow 'g' char
2025-11-30 Christopher Lam
* [test-gnc-guid.cpp] use EXPECT_THROW
2025-11-30 Christopher Lam
* [guid.cpp] fast_string_to_guid: -1<<4 is UB, fix UB
2025-11-30 Christopher Lam
* [guid.cpp] string->guid: parse into uuid data, avoids memcpy
2025-11-29 Christopher Lam
* [guid.cpp] Specialise guid<->32-byte string
2025-11-28 Christopher Lam
* [guid.cpp] fix guid==nullptr comparison retvals
2025-11-28 John Ralls
* Merge Christian Wehling's 'improve_strings' into stable.
2025-11-28 John Ralls
* Merge Kaligula's 'SX-action-description' into stable.
2025-11-28 John Ralls
* Merge latest translations from Weblate into stable.
2025-11-23 Tgol Mgol
* Translation update by Tgol Mgol <tgolmgol@gmail.com> using Weblate
2025-11-23 DGDS
* Translation update by DGDS <dagrinddontstop@users.noreply.hosted.weblate.org> using Weblate
2025-11-23 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2025-11-26 Christopher Lam
* [gnc-pricedb.cpp] plug leak when fiscal_end_date is null
2025-11-23 Christopher Lam
* [qofobject.cpp] check col!=nullptr instead of obj
2025-11-22 Christopher Lam
* gnc_ui_namespace_picker_ns must be g_freed
2025-11-23 Christopher Lam
* [dialog-commodity.cpp] fix indent
2025-11-22 Christopher Lam
* [dialog-account.c] plug gdk_rgba_to_string leak
2025-11-22 Christopher Lam
* [gnc-plugin-page-register.cpp] plug a GtkWidget* leak
2025-11-22 Christopher Lam
* GncPlugins must chain up the parent class in finalize
2025-11-19 Christopher Lam
* [account-quickfill.c] free link and node with g_list_delete_link
2025-11-21 John Ralls
* Merge Jaime Marquínez Ferrándiz's 'fix-test-userdata-dir-invalid-home' into stable.
2025-11-20 Jaime Marquínez Ferrándiz
* test-userdata-dir-invalid-home: Unset XDG_DATA_HOME
2025-11-19 John Ralls
* About dialog: Use the environment variable names for user directory labels.
2025-11-19 John Ralls
* Make the About dialog path labels (e.g. GNC_BIN) selectable for copying.
2025-11-19 Christopher Lam
* [search-param.c] free GSList
2025-11-19 Christopher Lam
* [gnucash-sheet.c] plug some leaks
2025-11-19 Christopher Lam
* [gnc-date-edit.c] plug some leaks
2025-11-19 Christopher Lam
* g_object_unref to plug some leaks
2025-11-16 Christopher Lam
* [gnc-autoclear.cpp] prune search if remaining amounts are too small
2025-11-16 Christopher Lam
* [test-autoclear] add some more tests
2025-11-09 Christopher Lam
* [window-reconcile.cpp] offer auto-clear if combination found
2025-11-06 Christopher Lam
* [gnc-autoclear] upgrade - improve Subset Sum Problem
2025-11-13 John Ralls
* Merge latest translations from Weblate.
2025-11-04 Adolfo Jayme Barrientos
* Translation update by Adolfo Jayme Barrientos <fitojb@ubuntu.com> using Weblate
2025-11-04 Jesús Martínez
* Translation update by Jesús Martínez <weblate@jandemor.com> using Weblate
2025-11-04 Deleted User
* Translation update by Deleted User <noreply+48943@weblate.org> using Weblate
2025-11-04 Francisco Serrador
* Translation update by Francisco Serrador <fserrador@gmail.com> using Weblate
2025-11-04 தமிழ்நேரம்
* Translation update by தமிழ்நேரம் <tamilneram247@gmail.com> using Weblate
2025-11-04 Olesya_Gerasimenko
* Translation update by Olesya_Gerasimenko <gammaray@basealt.ru> using Weblate
2025-11-04 Ceaus
* Translation update by Ceaus <github@pohw.nl> using Weblate
2025-11-13 John Ralls
* Merge John Ralls's 'gnc-home' into stable
2025-11-06 John Ralls
* Protect the special environment file prefix variables.
2025-11-11 John Ralls
* Merge Richard Cohen's 'replace-deprecated-glib' into stable.
2025-11-09 John Ralls
* Merge Richard Cohen's 'fix-bug799159-options-tests' into stable.
2023-03-28 Richard Cohen
* Replace deprecated g_binding_get_target, and increase glib version to 2.68
2025-11-09 Richard Cohen
* Make a link in the build directory for options.scm
2025-11-09 Christopher Lam
* [gnc-ui-balances.h] remove function decl, forgotten in f813f7cd14
2025-11-07 Christopher Lam
* [gnc-plugin-page-report] avoid UAF from 058568eab3
2025-11-02 Christopher Lam
* [gnc-date.cpp] gnc_g_date_new_today calls gnc_gdate_set_today
2025-11-02 Christopher Lam
* [transaction.cpp] xaccTransSetDate has GDate on stack
2025-11-03 Christopher Lam
* [gnc-file.c] non-dbi file dialog filters .gnucash .xac files
2025-11-03 Christopher Lam
* [gnc-file.c] move datafile filter to gnc-file.c
2025-11-02 Christopher Lam
* [transaction.cpp] comparing identical txns returns 0
2025-11-02 Christopher Lam
* [account.cpp] comparing identical accts returns 0
2025-11-02 Christopher Lam
* [account.cpp] gnc_account_foreach_split forward loops only
2025-11-01 John Ralls
* Remove stray debugging print to stdout.
2025-10-30 John Ralls
* Merge Sherlock's 'patch-1' into stable.
2025-10-29 Sherlock
* Bug 799682 - Unable to "Save As" (or open) a non-xml data file
2025-10-25 John Ralls
* Merge Bruce Schuck's 'rm-cmbchina' into stable.
2025-10-25 Bruce Schuck
* Removed China Merchants Bank from quote sources. The Finance::Quote module is no longer working and will be removed in the next release.
2025-10-24 Christopher Lam
* [gnc-plugin-page-report] plug char* leaks
2025-10-23 John Ralls
* Merge latest translations from Weblate.
2025-10-23 Pedro Albuquerque
* Translation update by Pedro Albuquerque <pmra@protonmail.com> using Weblate
2025-10-23 SIB
* Translation update by SIB <shawndu0820@gmail.com> using Weblate
2025-10-23 Frédéric Mergey
* Translation update by Frédéric Mergey <fmergey@yahoo.com> using Weblate
2025-10-23 Allan Olsen
* Translation update by Allan Olsen <allan@hamann-olsen.dk> using Weblate
2025-10-23 தமிழ்நேரம்
* Translation update by தமிழ்நேரம் <tamilneram247@gmail.com> using Weblate
2025-10-23 DGDS
* Translation update by DGDS <dagrinddontstop@users.noreply.hosted.weblate.org> using Weblate
2025-10-23 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2025-10-23 Andika Triwidada
* Translation update by Andika Triwidada <andika@gmail.com> using Weblate
2025-10-23 John Ralls
* Don't try to find boost::system in boost 1.89.0 and later
2025-10-21 Christopher Lam
* Merge Chris Lam 'some-char-leaks' #2140 into stable
2025-10-20 Robert Fewell
* Merge Oscar Megia's bug-799538 into stable
2025-10-14 Christopher Lam
* [qoflog.cpp] plug a gchar* leak
2025-10-14 Christopher Lam
* [translog.cpp] use c++ for better cleanup
2025-10-14 Christopher Lam
* [import-main-matcher.cpp] plug GtkWidget* and static char* leaks
2025-10-14 Christopher Lam
* [gnc-prefs.cpp] plug gchar* leak
2025-10-14 Christopher Lam
* [gnc-prefs.cpp] convert to c++
2025-10-12 John Ralls
* Merge Dong Lin's 'stable-stale-import-balance' into stable.
2025-10-12 John Ralls
* Mostly revert "Bug 799249 - Crash while switch to recently opened file"
2025-10-12 Dong Lin
* Fix stale account balances and grand total during transaction import
2025-10-09 John Ralls
* Merge Sherlock's 'reset-gui-components' into stable
2025-10-08 Sherlock
* Reset gui component session
2025-10-06 John Ralls
* Merge Sherlock's save-account-page into stable.
2025-10-06 Sherlock
* Fix saving account page changes
2025-09-28 Christopher Lam
* Merge branch 'fix-surface-leak' into stable
2025-09-26 Christopher Lam
* [gnucash-header.c] don't draw GncHeader until the register is shown.
2025-09-27 John Ralls
* Release GnuCash 5.13 (tag: 5.13)
2025-09-27 John Ralls
* Merge latest translations from Weblate.
2025-09-24 Christian Wehling
* Translation update by Christian Wehling <christian.wehling@web.de> using Weblate
2025-09-24 Yuri Chornoivan
* Translation update by Yuri Chornoivan <yurchor@ukr.net> using Weblate
2025-09-24 Yaron Shahrabani
* Translation update by Yaron Shahrabani <sh.yaron@gmail.com> using Weblate
2025-09-24 Frédéric Mergey
* Translation update by Frédéric Mergey <fmergey@yahoo.com> using Weblate
2025-09-24 Hemant More
* Translation update by Hemant More <foil-pastor-omen@duck.com> using Weblate
2025-09-24 Simon Arlott
* Translation update by Simon Arlott <nomis@users.noreply.hosted.weblate.org> using Weblate
2025-09-25 John Ralls
* Update mac dependencies tarball.
2025-09-25 John Ralls
* Fix python tests on macOS by linking the right Python.
2025-09-23 John Ralls
* Fix build errors in 5b0d70.
2025-09-23 John Ralls
* Replace deprecated gdk_pixbuf_new_from_xpm_data
2025-09-22 John Ralls
* Merge latest translations from Weblate into stable.
2025-09-22 John Ralls
* Fix inadvertant insertion in test-trial-balance.scm.
2025-09-22 John Ralls
* extract-translators: Use 'open :encoding' instead of utf::encode/decode.
2025-09-22 Yaron Shahrabani
* Translation update by Yaron Shahrabani <sh.yaron@gmail.com> using Weblate
2025-09-22 Simon Arlott
* Translation update by Simon Arlott <nomis@users.noreply.hosted.weblate.org> using Weblate
2025-09-22 Pedro Albuquerque
* Translation update by Pedro Albuquerque <pmra@protonmail.com> using Weblate
2025-09-22 Максим Горпиніч
* Translation update by Максим Горпиніч <gorpinicmaksim0@gmail.com> using Weblate
2025-09-22 Arve Eriksson
* Translation update by Arve Eriksson <031299870@telia.com> using Weblate
2025-09-22 John Ralls
* Fix newline disparity in translator-credits
2025-09-21 John Ralls
* Translator credits: Separate translators with a newline.
2025-09-21 John Ralls
* Merge latest translations from Weblate into stable.
2025-09-22 Simon Arlott
* Translation update by Simon Arlott <nomis@users.noreply.hosted.weblate.org> using Weblate
2025-09-21 John Ralls
* Merge potfile for GnuCash 5.13
2025-09-21 John Ralls
* Merge latest translations from Weblate.
2025-09-21 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2025-09-21 Leandro Conca
* Translation update by Leandro Conca <lluccia@gmail.com> using Weblate
2025-09-21 Yurt Page
* Translation update by Yurt Page <yurtpage+weblate@gmail.com> using Weblate
2025-09-21 Warder
* Translation update by Warder <ciksa@seznam.cz> using Weblate
2025-09-20 Christopher Lam
* [fin.c] fix encoding to utf8
2025-09-20 John Ralls
* Merge John Ralls's 'bug799249' into stable
2025-09-20 John Ralls
* Merge Bruce Schuck's 'addswissfundata' into stable.
2025-09-20 John Ralls
* Merge Sherlock's branch 'Bug 799662' into stable.
2025-09-17 Sherlock
* Bug 799662 - Importing accounts from UTF8 csv file does not work correctly
2025-09-15 Christopher Lam
* [new-owner-report.scm] insert job-ID if available
2025-09-13 Christopher Lam
* [balsheet-pnl] use gnc:accounts-get-commodities-sorted
2025-09-12 Sherlock
* Bug 799661 - Exchange Rate entries displayed in reports in an unstable order
2025-09-12 John Ralls
* Fix merge errors from win32-tests.
2025-09-12 John Ralls
* Merge John Ralls's 'win32-tests' into stable
2025-09-04 John Ralls
* Fix GncDateTime tests on Windows.
2025-09-04 John Ralls
* Coerce matching file separators for testing gnc_path_get_pkgsysconfdir
2025-09-04 John Ralls
* Always write XML files with Unix line endings.
2025-08-28 John Ralls
* Adjust tests to accommodate Win32 special cases.
2025-08-28 John Ralls
* Force ISO date format for tests to remove OS and locale differences.
2025-08-26 John Ralls
* [Tests] Fix filepath handling and temp directory location on Win32 builds.
2025-08-22 John Ralls
* Fix path environment for Guile and GncModule tests on Windows.
2025-08-21 John Ralls
* Set policy CMP0177 and follow the documented recommendations regarding DESTINATION paths.
2025-09-12 John Ralls
* Merge Sherlock's bug-799657 into stable.
2025-09-02 Sherlock
* Bug 799657 - Incorrect trial Balance report with stocks and multiple currencies
2025-09-06 John Ralls
* Merge latest translations from Weblate.
2025-09-01 Muhammadyusuf Kurbonov
* Translation update by Muhammadyusuf Kurbonov <muhammadyusuf.kurbonov2002@gmail.com> using Weblate
2025-09-01 Yurt Page
* Translation update by Yurt Page <yurtpage+weblate@gmail.com> using Weblate
2025-09-01 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2025-09-01 mid-kid
* Translation update by mid-kid <esteve.varela@gmail.com> using Weblate
2025-09-01 Milo Ivir
* Translation update by Milo Ivir <mail@milotype.de> using Weblate
2025-09-01 Brian Hsu
* Translation update by Brian Hsu <brianhsu.hsu@gmail.com> using Weblate
2025-09-01 Максим Горпиніч
* Translation update by Максим Горпиніч <gorpinicmaksim0@gmail.com> using Weblate
2025-09-01 Warder
* Translation update by Warder <ciksa@seznam.cz> using Weblate
2025-09-06 John Ralls
* Merge Sherlock's 'Bug 343711' into stable.
2025-09-06 John Ralls
* Merge Sherlock's 'Bug 799656' into stable.
2025-09-06 John Ralls
* Merge Sherlock's 'Bug 799652' into stable.
2025-09-06 John Ralls
* Merge Sherlock's 'Bug 799654' into stable.
2025-09-04 Sherlock
* Bug 343711 - Splits to Imbalance-USD do not disappear when zero-valued.
2025-09-02 Sherlock
* Bug 799656 - Invoice and bills still display prices as fractional amounts with "Force Prices to display as decimals"
2025-09-02 Sherlock
* Bug 799652 - Invoice price decimal places
2025-08-28 Sherlock
* Bug 799654 - Zombie entries in the recently accessed file list.
2025-09-02 Christopher Lam
* [balsheet-pnl] ensure the account name cell doesn't wrap
2025-07-22 John Ralls
* Bug 799249 - Crash while switch to recently opened file
2025-08-21 Christopher Lam
* [trep-engine] link to invoice in trep
2025-08-24 Bruce Schuck
* Added Swiss Fund Data AG to single_quote_sources. New F::Q source will be available in v1.67.
2025-08-24 Christopher Lam
* [test-engine-extras] add invoice IDs to test invoices
2025-08-18 John Ralls
* Specialize get_row_value_from_object for int64_t.
2025-08-18 John Ralls
* [WIN32]Fix path problems prevneting test-backend-dbi from working.
2025-07-15 John Ralls
* Fix building tests on Win32.
2025-07-25 Christopher Lam
* [gnc-plugin-page-report] confirm before overwriting saved report
2025-07-17 Christopher Lam
* [gnc-ui.h] gnc_action_dialog to offer Action/Cancel buttons
2025-07-28 John Ralls
* Merge latest translations from Weblate into stable.
2025-07-28 John Ralls
* Merge Sherlock's 'bug799650' insto stable.
2025-07-26 Sherlock
* Bug 799650 - Reconcile Ending Balance Ignored When Statement Date Set
2025-07-27 DGDS
* Translation update by DGDS <dagrinddontstop@users.noreply.hosted.weblate.org> using Weblate
2025-07-27 aba2222
* Translation update by aba2222 <ABCSSS2021@outlook.com> using Weblate
2025-07-27 Angel Ivanov
* Translation update by Angel Ivanov <angel.forcebg@gmail.com> using Weblate
2025-07-27 DGDS
* Translation update by DGDS <dagrinddontstop@users.noreply.hosted.weblate.org> using Weblate
2025-07-27 Warder
* Translation update by Warder <ciksa@seznam.cz> using Weblate
2025-07-27 Frédéric Mergey
* Translation update by Frédéric Mergey <fmergey@yahoo.com> using Weblate
2025-07-27 Allan Olsen
* Translation update by Allan Olsen <allan@hamann-olsen.dk> using Weblate
2025-07-27 தமிழ்நேரம்
* Translation update by தமிழ்நேரம் <anishprabu.t@gmail.com> using Weblate
2025-07-27 Simon Arlott
* Translation update by Simon Arlott <nomis@users.noreply.hosted.weblate.org> using Weblate
2025-07-25 John Ralls
* Bug 799649 - Ensure that GnuCash does not crash when it converts a...
2025-07-13 John Ralls
* Bug 799638 - error: call to non-'constexpr' function
2025-07-05 Christopher Lam
* [chartjs-4] add chartjs-4 files
2025-07-07 Christopher Lam
* [chartjs-2] rename chartjs to chartjs-2
2025-07-07 Christopher Lam
* [borrowed/CMakeLists.txt] realign whitespace
2025-07-05 Christopher Lam
* [charts] use gnc:html-chart-set-xaxis-type!
2025-07-05 Christopher Lam
* [html-chart] expose gnc:html-chart-set-x-axis-type!
2025-07-04 Christopher Lam
* [gnc-pricedb.cpp] plug leak from gnc_g_date_new_today
2025-06-24 Christopher Lam
* [Transaction.cpp] use qof_instance kvp API for GDate
2025-07-04 Christopher Lam
* [gtest-xml-contents] test xaccTransGetDatePostedGDate from xml
2025-06-28 Christopher Lam
* [Transaction.cpp] use qof_instance kvp API for Time64, with bugfix
2025-06-27 Christopher Lam
* [Transaction.cpp] small modification to xaccTransSetNotes
2025-06-23 Christopher Lam
* [Transaction.cpp] small modification to xaccTransSetReadOnly
2025-06-22 Christopher Lam
* [Transaction.cpp] use qof_instance kvp API for const char*