-
Notifications
You must be signed in to change notification settings - Fork 916
Expand file tree
/
Copy pathChangeLog.2024
More file actions
2912 lines (1456 loc) · 65 KB
/
ChangeLog.2024
File metadata and controls
2912 lines (1456 loc) · 65 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
2024-12-31 Geert Janssens
* Allow more account types in the payment window's transfer account list
2024-12-26 John Ralls
* Merge Xu Xinhang's lastest Chinese (Simplified) translations into stable.
2024-12-26 John Ralls
* Merge latest translations from Weblate.
2024-12-24 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-12-24 Deleted User
* Translation update by Deleted User <noreply+100824@weblate.org> using Weblate
2024-12-24 Francisco Serrador
* Translation update by Francisco Serrador <fserrador@gmail.com> using Weblate
2024-12-24 Yaron Shahrabani
* Translation update by Yaron Shahrabani <sh.yaron@gmail.com> using Weblate
2024-12-24 Milo Ivir
* Translation update by Milo Ivir <mail@milotype.de> using Weblate
2024-12-26 John Ralls
* Fix python bindings build with Swig-4.3.0.
2024-12-25 xuxinhang
* Improve zh_CN translation for accuracy, naturalness and formality.
2024-12-23 John Ralls
* Bug 799494 - Version 5.10 Fails to import QIF file
2024-12-23 John Ralls
* Bug 799449 - Save As... sequence from SQL to XML format does not...
2024-12-17 John Ralls
* Bug 799487 - Unable to save gnucash DB file as XML file
2024-12-21 John Ralls
* Bug 799480 - Fails to build with ICU 76
2024-12-14 John Ralls
* Release GnuCash 5.10 (tag: 5.10)
2024-12-14 John Ralls
* Apply extract-translators fix to po files.
2024-12-14 John Ralls
* Extract-translators fix enumeration of translators and writing to po file.
2024-12-14 John Ralls
* Update translator credits.
2024-12-14 John Ralls
* Merge the latest translations from Weblate.
2024-12-14 Christian Wehling
* Translation update by Christian Wehling <christian.wehling@web.de> using Weblate
2024-12-14 Simon Arlott
* Translation update by Simon Arlott <nomis@users.noreply.hosted.weblate.org> using Weblate
2024-12-14 YOSHINO Yoshihito
* Translation update by YOSHINO Yoshihito <yy.y.ja.jp@gmail.com> using Weblate
2024-12-14 Максим Горпиніч
* Translation update by Максим Горпиніч <mgorpinic2005@gmail.com> using Weblate
2024-12-14 Yuri Chornoivan
* Translation update by Yuri Chornoivan <yurchor@ukr.net> using Weblate
2024-12-14 Максим Горпиніч
* Translation update by Максим Горпиніч <mgorpinic2005@gmail.com> using Weblate
2024-12-14 Stephan Paternotte
* Translation update by Stephan Paternotte <stephan@paternottes.net> using Weblate
2024-12-14 Pedro Albuquerque
* Translation update by Pedro Albuquerque <pmra@protonmail.com> using Weblate
2024-12-14 Arve Eriksson
* Translation update by Arve Eriksson <031299870@telia.com> using Weblate
2024-12-14 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-12-13 John Ralls
* Document cmake 3.14 requirement set a year ago.
2024-12-13 Geert Janssens
* Enforce searching for our gsettings schema files first where they were installed
2024-12-12 John Ralls
* Fix coverage CI.
2024-12-12 John Ralls
* Merge Roberto Kok's 'tab-middle-click-close' into stable.
2024-12-12 John Ralls
* Merge Christopher Lam's 'bug799443' into stable.
2024-10-19 Christopher Lam
* Bug 799443 - Edit find account jump then open, open the last…
2024-12-12 John Ralls
* Merge Christopher Lam's 'charts-tooltips-index' into stable.
2024-12-12 John Ralls
* Bug 799458 - Crash attempting to edit a scheduled transaction
2024-12-12 John Ralls
* Silence compile warning with a cast.
2024-12-12 John Ralls
* Make struct GtkMainWindow private with accessor for just_plugin_prefs.
2024-12-12 John Ralls
* Bug 799444 - Silent crash on CSV import
2024-12-12 Geert Janssens
* Merge branch 'SXSchema' into stable
2024-12-12 Christopher Lam
* [assistant-stock-transaction] in sell/cover-buy the cash may be zero.
2024-12-11 Geert Janssens
* Bug 799470 - Crash when clicking on Schedule Transaction Editor
2024-12-11 Geert Janssens
* SX editor - use integer-type schema parameters rather than string and double
2024-12-11 Christopher Lam
* Don't #include mach-only .h file
2024-12-10 John Ralls
* Merge John Ralls's 'bug799420' into stable
2024-12-10 John Ralls
* Bug 799439 - Duplicate information in description when importing...
2024-12-10 John Ralls
* Bug 799456 - Tabbing through fields autoselects all but Num field
2024-12-10 John Ralls
* Bug 799420 - gnucash 5.8 crashes on windows 10 while importing qif
2024-12-09 John Ralls
* Replace use of deprecated exec_program.
2024-12-09 John Ralls
* New script to update translator-credits.
2024-12-08 John Ralls
* Merge potfile for GnuCash 5.10.
2024-12-08 John Ralls
* Merge latest translations from Weblate.
2024-12-08 Milo Ivir
* Translation update by Milo Ivir <mail@milotype.de> using Weblate
2024-12-08 Максим Горпиніч
* Translation update by Максим Горпиніч <mgorpinic2005@gmail.com> using Weblate
2024-12-08 Yuri Chornoivan
* Translation update by Yuri Chornoivan <yurchor@ukr.net> using Weblate
2024-12-08 hanyang cheng
* Translation update by hanyang cheng <cinxiafortis@tutanota.de> using Weblate
2024-12-08 Francisco Serrador
* Translation update by Francisco Serrador <fserrador@gmail.com> using Weblate
2024-12-08 Pedro Albuquerque
* Translation update by Pedro Albuquerque <pmra@protonmail.com> using Weblate
2024-12-08 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-12-08 Wellington Terumi Uemura
* Translation update by Wellington Terumi Uemura <wellingtonuemura@gmail.com> using Weblate
2024-12-08 Zhaoquan Huang
* Translation update by Zhaoquan Huang <zhaoquan2008@hotmail.com> using Weblate
2024-12-06 John Ralls
* Corrct the IRC network where GnuCash can be found.
2024-11-29 Christopher Lam
* [html-chart] change default mode to 'index and intersect #f
2024-11-29 Christopher Lam
* [gnucash-sheet] g_free strdup'd text
2024-11-28 Christopher Lam
* gnc_commodity_table_get_commodities must be g_list_freed
2024-11-28 Christopher Lam
* gnc_commodity_table_get_namespaces must be g_list_freed
2024-11-26 John Ralls
* Merge Landry Breuil's 'boost-1.87' into stable.
2024-11-26 Landry Breuil
* remove references to hybrid patched boost versions
2024-11-25 Landry Breuil
* drop fallback block supporting boost pre-1.67.0
2024-11-25 Landry Breuil
* fix build with recent boost where io_service was removed (deprecated since many releases)
2024-11-20 Roberto Kok
* Set tooltip text on the outer tab container again
2024-11-20 Roberto Kok
* Update main_window_find_tab_items for new page tab structure
2024-11-02 Christopher Lam
* Bug 799454 - Numeric value in exported CSV transactions
2024-11-03 John Ralls
* Merge David Seifert's 'gcc-15-includes' into stable
2024-11-02 David Seifert
* Add missing `#include <cstdint>`
2024-10-31 John Ralls
* Merge Przemysław Kryger's 'update-for-fq-1.63' insto stable.
2024-10-31 John Ralls
* Merge Huang Zhaoquan's 'bug-799451' isnto stable.
2024-10-31 Geert Janssens
* Fix invalid home test
2024-10-30 Christopher Lam
* Bug 799452 - Transaction Report: Cannot subtotal based on Number field
2024-10-21 Przemysław Kryger
* Mark quote source strings for translations
2024-10-29 Huang, Zhaoquan
* Bug 799451 - Cannot translate different meanings of string… "_Balance" to Chinese.
2024-10-28 John Ralls
* Bug 799451 - Cannot translate different meanings of string…
2024-10-27 Wellington Terumi Uemura
* Translation update by Wellington Terumi Uemura <wellingtonuemura@gmail.com> using Weblate
2024-10-27 Fabio Lima
* Translation update by Fabio Lima <fabiolimace@gmail.com> using Weblate
2024-10-27 Wellington Terumi Uemura
* Translation update by Wellington Terumi Uemura <wellingtonuemura@gmail.com> using Weblate
2024-10-27 Fabio Lima
* Translation update by Fabio Lima <fabiolimace@gmail.com> using Weblate
2024-10-27 Christian Wehling
* Translation update by Christian Wehling <christian.wehling@web.de> using Weblate
2024-10-27 Christopher Lam
* [reports] change xaccAccountGetSplitList to xaccAccountGetSplits
2024-10-27 Christopher Lam
* [engine.i] expose xaccAccountGetSplits in bindings
2024-10-27 Christopher Lam
* [engine.i] VECTORREF_HELPER_INOUT to handle SplitsVec&
2024-10-27 Christopher Lam
* [Account.hpp] xaccAccountGetSplits returns a reference to vector
2024-10-26 John Ralls
* Revisit Bug 799308.
2024-10-21 Martin LORANG
* Translation update by Martin LORANG <wablate@lorang.net> using Weblate
2024-10-21 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-10-21 Yaron Shahrabani
* Translation update by Yaron Shahrabani <sh.yaron@gmail.com> using Weblate
2024-10-21 Przemysław Kryger
* Use English names for Italian and Bucharest stock exchanges
2024-10-21 Przemysław Kryger
* Remove US from alphavantage
2024-10-21 Przemysław Kryger
* Athens is Greece
2024-10-21 Robert Fewell
* Errors in trace file if account deleted with open register
2024-10-21 Robert Fewell
* Error in trace file suspend counter not zero
2024-10-21 Robert Fewell
* Bug 799433 - Right-click issue in import window
2024-10-21 Robert Fewell
* Bug 799435 - Right-click issue in reconcile window
2024-10-11 Robert Fewell
* Realign source file split-register-control.cpp for spaces
2024-10-11 Robert Fewell
* Bug 799430 - Type-Ahead feature lost account setting functionality
2024-10-20 Przemysław Kryger
* Use UTF8 ellipsys character in mutliple qoute sources lists
2024-10-20 Przemysław Kryger
* Add regions to S-Investor and OnVista quote sources
2024-10-19 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-10-19 Wellington Terumi Uemura
* Translation update by Wellington Terumi Uemura <wellingtonuemura@gmail.com> using Weblate
2024-10-19 Simon Arlott
* Translation update by Simon Arlott <nomis@users.noreply.hosted.weblate.org> using Weblate
2024-10-18 Przemysław Kryger
* Add morningstarau to single and aufunds to multiple _quotes_sources
2024-10-18 Przemysław Kryger
* Remove ellipses from multiple_quote_sources where lists are complete
2024-10-17 Przemysław Kryger
* Add back cse - Colobmo Stock Exchange to single_quote_sources
2024-10-18 Christopher Lam
* Merge branch 'better-c++' into stable #1965
2024-10-18 Arve Eriksson
* Translation update by Arve Eriksson <031299870@telia.com> using Weblate
2024-10-18 Wellington Terumi Uemura
* Translation update by Wellington Terumi Uemura <wellingtonuemura@gmail.com> using Weblate
2024-10-18 Stephan Paternotte
* Translation update by Stephan Paternotte <stephan@paternottes.net> using Weblate
2024-10-18 gallegonovato
* Translation update by gallegonovato <fran-carro@hotmail.es> using Weblate
2024-10-13 Christopher Lam
* [Account.cpp] refactor acc->balance_limit getters/setters
2024-10-13 Christopher Lam
* [Account.cpp] use newer qof_instance_get|set_path_kvp
2024-10-15 Christopher Lam
* [qofinstance.cpp] GValue on stack instead of heap
2024-10-13 Christopher Lam
* [qofinstance.cpp] add overloaded qof_instance_set|get_path_kvp
2024-10-17 Frank H. Ellenberger
* I18N: msgmerge
2024-10-17 Frank H. Ellenberger
* Unify alphavanzage tooltip
2024-10-16 Przemysław Kryger
* Update gnc-commodity.cpp for finance-quote 1.63
2024-10-15 gallegonovato
* Translation update by gallegonovato <fran-carro@hotmail.es> using Weblate
2024-10-15 Francisco Serrador
* Translation update by Francisco Serrador <fserrador@gmail.com> using Weblate
2024-10-15 Frank H. Ellenberger
* Translation update by "Frank H. Ellenberger" <frank.h.ellenberger@gmail.com> using Weblate
2024-10-15 Pedro Albuquerque
* Translation update by Pedro Albuquerque <pmra@protonmail.com> using Weblate
2024-10-15 hitmman
* Translation update by hitmman <hitmman@gmail.com> using Weblate
2024-10-15 Christopher Lam
* Bug 799283 - Segfault/Crash if payment dialog change from customer to vendor
2024-10-14 Robert Fewell
* Reformat gnc-plugin-page-sx-list.cpp for spaces and cpp change
2024-10-14 Robert Fewell
* Bug 799437 - Crash deleting and recreating an SX with the scheduled transaction editor open
2024-10-13 Christopher Lam
* [Account.cpp] small modification xaccAccountSetLastNum
2024-06-05 Christopher Lam
* [Account.cpp] tightening loops, less g_list_free
2024-10-12 John Ralls
* Update webkit package for ubuntu-latest.
2024-10-08 John Ralls
* Bug 799429 - Crash when changing accounting period end date
2024-10-07 John Ralls
* Imbalance fraction testing: Check all of the account SCUs too.
2024-10-07 Roberto Kok
* Make gnc_tab_clicked_cb static
2024-10-06 John Ralls
* Bug 798789 - Trading Accounts
2024-10-03 Roberto Kok
* Close tabs when middle-clicked
2024-10-02 Christopher Lam
* Addendum 5c5b627cb1: handle blank split with null account
2024-10-02 Christopher Lam
* Merge branch 'delete-commodity-show-accounts' into stable #2028
2024-10-01 John Ralls
* Fix typo in 5c5b627cb1: Failed to negate condition.
2024-09-28 Christopher Lam
* [dialog-commodities.cpp] when deleting commodity fails, show accounts with commodity
2024-09-30 John Ralls
* Warn and don't try to balance a transaction with a too-small imbalance.
2024-09-30 John Ralls
* Bug 799423 - Crash when creating ETF transaction
2024-09-30 John Ralls
* Merge Yongun Seong's FQ-dump into stable.
2024-10-01 Yongun Seong
* [gnc-quotes.cpp] fix quote report
2024-09-28 Christopher Lam
* [dialog-commodities.cpp] convert to c++
2024-09-27 Christopher Lam
* [assistant-qif-import.c] fix gchar* leak
2024-09-28 John Ralls
* Release GnuCash 5.9 (tag: 5.9)
2024-09-28 John Ralls
* Merge latest translations from Weblate into stable.
2024-09-28 John Ralls
* Merge Consta's 'bugfix/797045' into stable.
2024-09-28 Simon Arlott
* Translation update by Simon Arlott <nomis@users.noreply.hosted.weblate.org> using Weblate
2024-09-28 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-09-28 Kanstantin K.
* Bugfix 797045 - Correct error message when connection to database failed
2024-09-26 John Ralls
* Bug 799419 - Intermittent quote price issue
2024-09-26 John Ralls
* Set CMake Policy CMP0167 to OLD.
2024-09-24 Andi Chandler
* Translation update by Andi Chandler <andi@gowling.com> using Weblate
2024-09-24 Stephan Paternotte
* Translation update by Stephan Paternotte <stephan@paternottes.net> using Weblate
2024-09-24 Jose Delvani
* Translation update by Jose Delvani <jsdelvani@users.noreply.hosted.weblate.org> using Weblate
2024-09-24 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-09-24 gallegonovato
* Translation update by gallegonovato <fran-carro@hotmail.es> using Weblate
2024-09-24 Francisco Serrador
* Translation update by Francisco Serrador <fserrador@gmail.com> using Weblate
2024-09-22 John Ralls
* Gnc-options-date: Make the accounting period struct tm empty...
2024-09-22 John Ralls
* Bug 799395 - relative date offset quarters occasionally wrong
2024-09-22 John Ralls
* I18N: Merge updated potfile for string freeze before GnuCash 5.9 release.
2024-09-22 John Ralls
* Merge latest translations from weblate.
2024-09-22 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-09-21 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-09-21 Stephan Paternotte
* Translation update by Stephan Paternotte <stephan@paternottes.net> using Weblate
2024-09-21 John Ralls
* Merge John Ralls's 'financeapi' into stable.
2024-09-20 John Ralls
* Replace GncFQQuoteSource api-key members with a bp::environment one.
2024-09-21 John Ralls
* Merge Bob Fewell's 'cutpaste' into stable.
2024-09-21 Robert Fewell
* Bug 798568 - Transaction Copy/Paste problem
2024-09-21 Robert Fewell
* Move copied_class and copied_leader_guid
2024-09-19 John Ralls
* Add YH Finance (FINANCEAPI) API Key to Quotes infrastructure.
2024-09-16 Wellington Terumi Uemura
* Translation update by Wellington Terumi Uemura <wellingtonuemura@gmail.com> using Weblate
2024-09-15 John Ralls
* I18N: Merge gnucash.pot update for GnuCash 5.9 release.
2024-09-15 John Ralls
* Merge latest translations from Weblate.
2024-09-15 Robert Fewell
* Bug 799391 - Transaction Cut/Paste doesn't move the transaction to the target account
2024-09-15 Henrique Oliveira
* Translation update by Henrique Oliveira <ho.henrique@proton.me> using Weblate
2024-09-15 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-09-02 Christopher Lam
* [gnc-datetime] improve CSV date parser with ICU and boost
2024-09-12 Morten Cools
* Translation update by Morten Cools <morten@cools.no> using Weblate
2024-09-12 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-09-12 Robert Fewell
* Remove Windows ifdef for VK_DECIMAL
2024-09-12 Robert Fewell
* Bug 799399 - Windows Keypad decimal locale error
2024-09-11 Geert Janssens
* Bug 799416 - Post invoice: post to account dropdown listbox too small
2024-07-26 Geert Janssens
* CsvImp - minor cleanups in test code
2024-07-26 Geert Janssens
* Csv Import - improve assisant's introduction page
2024-09-10 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-09-09 Christopher Lam
* [gnc-tree-model-price.c] bugfix adding a price causes segfault
2024-09-09 Christopher Lam
* [report-utilities.scm] use xaccAccountGetSplitSize
2024-09-08 Itsmechinmoy
* Translation update by Itsmechinmoy <itsmechinmoy@users.noreply.hosted.weblate.org> using Weblate
2024-09-08 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-09-08 Christopher Lam
* [gnc-date.cpp] deprecate gnc_difftime
2024-09-08 Christopher Lam
* don't use gnc_difftime
2024-09-07 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-09-05 John Ralls
* Bug 799308 - sqlite backend: Example Python script prints error...
2024-09-02 Christopher Lam
* [html-chart] html-chart-set! don't convert list to vector
2024-09-03 Robert Fewell
* Fix Windows build error in gnc_html_webkit1.c
2024-09-02 Allan Nordhøy
* Translation update by Allan Nordhøy <epost@anotheragency.no> using Weblate
2024-09-02 Milo Ivir
* Translation update by Milo Ivir <mail@milotype.de> using Weblate
2024-09-02 Vesna Micajkova
* Translation update by Vesna Micajkova <vmicajkova@institutpraktikum.mk> using Weblate
2024-09-02 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-08-31 Christopher Lam
* [gnc-pricedb.h] remove unused gnc_pricedb_substitute_commodity
2024-08-31 Christopher Lam
* [gnc-pricedb.h] remove unused gnc_pricedb_lookup_at_time64
2024-08-24 Christopher Lam
* [gnc-commodity.h] callers must free g_list
2024-08-20 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-08-20 Christopher Lam
* [gnc-plugin-page-account-tree.cpp] avoid assertion 'gas != NULL' warnings
2024-08-19 John Ralls
* Bug 799389 - Crash when removing an account
2024-07-08 Christopher Lam
* [import-main-matcher.cpp] tidy entry setup
2024-06-04 Christopher Lam
* [Account.cpp] compare vectors with std::equal in xaccAccountEqual
2024-06-18 Christopher Lam
* [window-reconcile.cpp] better c++
2024-06-18 Christopher Lam
* [gnc-plugin-page-account-tree.cpp] use c++ algo
2024-06-18 Christopher Lam
* [split-register-control.cpp] use c++ algo
2024-08-17 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-08-16 John Ralls
* Merge Hailiang Wang's GCC14.1 cmath update into stable.
2024-08-16 Hai Liang Wang
* Fix math methods not found on MINGW32 build
2024-08-13 Milo Ivir
* Translation update by Milo Ivir <mail@milotype.de> using Weblate
2024-08-11 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-08-11 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-08-09 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-08-09 Bora Atıcı
* Translation update by Bora Atıcı <boratici.acc@gmail.com> using Weblate
2024-08-06 Bora Atıcı
* Translation update by Bora Atıcı <boratici.acc@gmail.com> using Weblate
2024-08-06 Milo Ivir
* Translation update by Milo Ivir <mail@milotype.de> using Weblate
2024-08-06 toddchou
* Translation update by toddchou <toddchou@gmail.com> using Weblate
2024-08-02 Christopher Lam
* Amend last commit "Better fit for some report option widgets in options dialog."
2024-08-01 Robert Fewell
* Better fit for some report option widgets in options dialog.
2024-07-31 Bojan Topalovski
* Translation update by Bojan Topalovski <3dcncinfo@gmail.com> using Weblate
2024-07-31 Vesna Micajkova
* Translation update by Vesna Micajkova <vmicajkova@institutpraktikum.mk> using Weblate
2024-07-31 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-07-28 Wellington Terumi Uemura
* Translation update by Wellington Terumi Uemura <wellingtonuemura@gmail.com> using Weblate
2024-07-28 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-07-28 Jose Delvani
* Translation update by Jose Delvani <jsdelvani@users.noreply.hosted.weblate.org> using Weblate
2024-07-27 Christopher Lam
* [gnc-optiondb.i] instead of scm_list_ref, walk the list
2024-07-26 Christopher Lam
* [gnc-optiondb.i] don't add null accounts
2024-07-26 John Ralls
* Bug 724745 - Added new transaction during reconcile, didn't...
2024-07-26 gfbdrgng
* Translation update by gfbdrgng <hnaofegnp@hldrive.com> using Weblate
2024-07-26 Vesna Micajkova
* Translation update by Vesna Micajkova <vmicajkova@institutpraktikum.mk> using Weblate
2024-07-23 Vesna Micajkova
* Translation update by Vesna Micajkova <vmicajkova@institutpraktikum.mk> using Weblate
2024-07-22 Vesna Micajkova
* Translation update by Vesna Micajkova <vmicajkova@institutpraktikum.mk> using Weblate
2024-07-22 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-07-22 Bojan Topalovski
* Translation update by Bojan Topalovski <3dcncinfo@gmail.com> using Weblate
2024-07-22 John Ralls
* Bug 799384 - Reconciled date cannot be parsed.
2024-07-21 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2024-07-21 Arve Eriksson
* Translation update by Arve Eriksson <031299870@telia.com> using Weblate
2024-07-21 fleefar
* Translation update by fleefar <825272947@qq.com> using Weblate