forked from Gnucash/gnucash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.2023
7496 lines (3748 loc) · 165 KB
/
ChangeLog.2023
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
2023-12-31 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2023-12-30 Christopher Lam
* [trep-engine] accumulate subtotals within add-split-row
2023-12-30 Christopher Lam
* [invoice.scm] reorder defines to allow compilation
2023-12-28 Robert Fewell
* Bug 799179 - SLR won't allow change from "Reminder" to any other state
2023-12-30 Christopher Lam
* [invoice.scm] centralize layout components into layout-key-list
2023-12-30 Christopher Lam
* [invoice.scm] normalize header section generators
2023-12-29 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2023-12-29 Zdenko Podobný
* Translation update by Zdenko Podobný <zdenop@gmail.com> using Weblate
2023-12-29 Milo Ivir
* Translation update by Milo Ivir <mail@milotype.de> using Weblate
2023-12-29 Christopher Lam
* Merge Glenn Fowler's branch add-spacing-long-invoice-ID into stable #1844
2023-12-23 Glenn Fowler
* Update invoice.scm
2023-12-23 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2023-12-23 Andika Triwidada
* Translation update by Andika Triwidada <andika@gmail.com> using Weblate
2023-12-22 Glenn Fowler
* Update invoice.scm
2023-12-21 Christopher Lam
* [gnc-report.cpp] Refinement to 1da2464577 -- *errmsg must be assigned
2023-12-20 Frank H. Ellenberger
* Authors: Fix error in tense about Christian Stimming
2023-12-20 Frank H. Ellenberger
* L10N:de: update translotor-credits
2023-12-19 Pedro Albuquerque
* Translation update by Pedro Albuquerque <pmra@gmx.com> using Weblate
2023-12-19 Stephan Paternotte
* Translation update by Stephan Paternotte <stephan@paternottes.net> using Weblate
2023-12-19 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2023-12-18 Stephan Paternotte
* Update AUTHORS
2023-12-16 John Ralls
* Release GnuCash 5.5 (tag: 5.5)
2023-12-16 Christopher Lam
* Bug 799148 - Reliable crash when saving a modified saved report...
2023-12-16 John Ralls
* Reports: Don't crash when report generator fails without backtrace.
2023-12-16 Frank H. Ellenberger
* Translation update by "Frank H. Ellenberger" <frank.h.ellenberger@gmail.com> using Weblate
2023-12-16 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2023-12-16 Christian Wehling
* Translation update by Christian Wehling <christian.wehling@web.de> using Weblate
2023-12-11 John Ralls
* Add gnc-quote-source.cpp to POTFILES.in
2023-12-11 John Ralls
* Bug 799130 - split-register.c:1847:gnc_split_register_save:...
2023-12-11 Simon Arlott
* Translation update by Simon Arlott <weblate.simon@arlott.org> using Weblate
2023-12-11 Pedro Albuquerque
* Translation update by Pedro Albuquerque <pmra@gmx.com> using Weblate
2023-12-11 Arve Eriksson
* Translation update by Arve Eriksson <031299870@telia.com> using Weblate
2023-12-11 John Ralls
* Workflows: Try limiting the coverage-upload to the root repo.
2023-12-10 John Ralls
* Fix Win32 build, broken by COMMAND_EXPAND_LISTS
2023-12-11 Christopher Lam
* QofIdType and QofIdTypeConst: handle similarly to const char*
2023-12-10 Stephan Paternotte
* Translation update by Stephan Paternotte <stephan@paternottes.net> using Weblate
2023-12-10 gallegonovato
* Translation update by gallegonovato <fran-carro@hotmail.es> using Weblate
2023-12-10 bittin1ddc447d824349b2
* Translation update by bittin1ddc447d824349b2 <bittin@reimu.nl> using Weblate
2023-12-10 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2023-12-10 Christopher Lam
* [reports] don't offer individual coverage tests
2023-12-09 John Ralls
* Merge update potfile for 5.5 release.
2023-12-08 John Ralls
* Merge John Ralls's 'asan' into stable.
2023-12-05 John Ralls
* Add Scheme coverage collection with option GUILE_COVERAGE.
2023-12-04 John Ralls
* Add workflow job to generate a coverage report.
2023-12-04 John Ralls
* Implement coverage option
2023-12-08 John Ralls
* GncDate: Remove now-superfluous base parameter.
2023-12-08 John Ralls
* GncDate: Remove pointless normalize_month function.
2023-12-08 John Ralls
* Bug 799156 - normalize_struct_tm() does not normalize seconds,...
2023-12-07 John Ralls
* Merge Sherlock's 'bug799151' into stable.
2023-12-05 Sherlock
* Update test-gnc-date.c
2023-12-05 Sherlock
* Bug 799151 - gnc_date_get_last_mday () does not account for,,,
2023-12-07 John Ralls
* Merge Sherlock's 'bug-799152' into stable.
2023-12-05 Sherlock
* Bug 799152 - normalize_reldate_tm() does not handle dates with...
2023-12-06 Xangel2Net
* Translation update by Xangel2Net <xangel1@mail.ru> using Weblate
2023-12-03 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2023-12-03 Andrea Andre
* Translation update by Andrea Andre <andrea.tsg19@slmail.me> using Weblate
2023-12-03 Petter Reinholdtsen
* Translation update by Petter Reinholdtsen <pere-weblate@hungry.com> using Weblate
2023-12-03 Robert Fewell
* Bug 799150 - Can't paste text (with Ctrl+V) in Notes field in Account Tree View
2023-12-01 Christopher Lam
* Merge branch 'stable-leaks' into stable #1831
2023-11-30 Christopher Lam
* [gnc-engine-guile.cpp] plug runaway GSList* leak
2023-11-28 John Ralls
* Bug 799143 - FTBFS on 32bit architectures
2023-11-27 Christopher Lam
* [dialog-report-column-view.cpp] new/delete instead of g_new/g_free
2023-11-27 Christopher Lam
* [engine-common.i] AccountList* arg must be g_list_freed
2023-11-26 John Ralls
* Bug 799144 - Date Completion is broken after 5.4 upgrade
2023-11-25 John Ralls
* Merge Jerry James's python-regex-raw into stable.
2023-11-25 John Ralls
* Asan: Make leak and ODR violation reporting CMake options.
2023-11-24 John Ralls
* Bug 799138 - Port to new Python C config API
2023-11-21 John Ralls
* Bug 799134 - Fails to build with GCC 14 (‘find_if’ is not a member...
2023-11-15 Robert Fewell
* Rename the scheduled edit/new/delete menus
2023-10-15 Robert Fewell
* Make it clearer for which SX's will be deleted
2023-10-15 Robert Fewell
* Bug 799090 - Right Clicking scheduled transaction
2023-11-16 Robert Fewell
* Bug 798025 - SLR Value entry not tied to location
2023-11-15 Robert Fewell
* Bug 798760 - SLR change reminder with value entry
2023-11-15 Robert Fewell
* Bug 798760 - SLR OK button to complete value entry
2023-11-15 Robert Fewell
* Bug 607000 - SLR visible transactions
2023-11-15 Robert Fewell
* Allow saving the sorting in the SLR
2023-11-15 Robert Fewell
* Bug 792241 - Allow sorting scheduled transactions
2023-11-18 Jerry James
* Mark 2 regular expressions as raw strings
2023-11-19 Frank H. Ellenberger
* Revert "Translation update by Petter Reinholdtsen <pere-weblate@hungry.com> using Weblate"
2023-11-19 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2023-11-19 Petter Reinholdtsen
* Translation update by Petter Reinholdtsen <pere-weblate@hungry.com> using Weblate
2023-11-17 Christopher Lam
* [gnc-budget] use std::optional<gnc_numeric> instead of bool+gnc_numeric
2023-11-17 John Ralls
* Fix global array index out of range.
2023-11-17 John Ralls
* Use csv_price_imp_preview_sep_button_cb only as a callback.
2023-11-16 John Ralls
* Bug 799121 - Parse error on CSV import on MacOS
2023-11-16 derxi
* Translation update by derxi <happycxin@163.com> using Weblate
2023-11-15 Zdenko Podobný
* Translation update by Zdenko Podobný <zdenop@gmail.com> using Weblate
2023-11-15 hades
* Translation update by hades <dev@hades.name> using Weblate
2023-11-15 Robert Fewell
* Change default column for SX list tree view
2023-11-15 Robert Fewell
* Realign source files gnc-tree-view-sx-list.*
2023-11-15 Robert Fewell
* Realign source files gnc-sx-list-tree-model-adapter.*
2023-11-11 Milo Ivir
* Translation update by Milo Ivir <mail@milotype.de> using Weblate
2023-11-12 John Ralls
* Qif Import assistant: Extract function mark_page_complete
2023-11-12 John Ralls
* Qif import assistant: Use Enter and Leave macros
2023-11-12 John Ralls
* Bug 799113 - "Start Import" button reports "Failed"
2023-11-07 Christopher Lam
* [sixtp-dom-generators.cpp] char* must be freed
2023-11-10 Christopher Lam
* Merge branch 'icu-list-formatter' into stable #1791
2023-11-10 Christopher Lam
* [import-main-matcher] don't quote account fullnames
2023-11-09 John Ralls
* Add coverage option for Asan builds.
2023-11-09 John Ralls
* Merge Mark Browning's 'check-print-subacct' into stable.
2023-11-07 hades
* Translation update by hades <dev@hades.name> using Weblate
2023-11-07 Pedro Albuquerque
* Translation update by Pedro Albuquerque <pmra@gmx.com> using Weblate
2023-11-08 Christopher Lam
* [gnc-plugin-page-report] re-enable actions after disabling
2020-02-28 Mark Browning
* Correct check amount when printed from subaccount
2023-11-07 Christopher Lam
* Merge branch 'plug-recurrence-to-string' into stable #1812
2023-11-01 Christopher Lam
* recurrencePeriodTypeToString and recurrenceWeekendAdjustToString g_strdup only when necessary
2023-11-06 John Ralls
* Merge Adam Wight's 'mem-fix' into stable.
2023-11-06 John Ralls
* Merge Hades's 'patch-1' into stable.
2023-11-06 hades
* add a tip on keyboard shortcuts
2023-11-06 hades
* Translation update by hades <dev@hades.name> using Weblate
2023-11-01 Christopher Lam
* recurrencePeriodTypeToString and recurrenceWeekendAdjustToString g_strdup only when necessary
2023-11-05 Adam Wight
* Always return an allocated gchar*
2023-11-05 hades
* Translation update by hades <dev@hades.name> using Weblate
2023-11-04 mocsa
* Translation update by mocsa <csaba@feltoltve.hu> using Weblate
2023-11-04 Zdenko Podobný
* Translation update by Zdenko Podobný <zdenop@gmail.com> using Weblate
2023-11-03 Wellington Terumi Uemura
* Translation update by Wellington Terumi Uemura <wellingtonuemura@gmail.com> using Weblate
2023-10-30 John Ralls
* Xml backend tests: Use libgnc-backend-xml-utils instead of sources.
2023-10-27 John Ralls
* Split test other
2023-10-22 John Ralls
* Add CI job for Asan build.
2023-10-22 John Ralls
* Fix UAF in xaccFreeSplit.
2023-10-21 John Ralls
* Add Asan build type that enables the Address and UB sanitizers.
2023-11-01 John Ralls
* Fix NULL dereference in gnc_plugin_page_report_focus_widget.
2023-11-01 Christopher Lam
* avoid strlen where possible
2023-11-01 Kaligula
* Translation update by Kaligula <kaligula.dev@gmail.com> using Weblate
2023-11-01 Wellington Terumi Uemura
* Translation update by Wellington Terumi Uemura <wellingtonuemura@gmail.com> using Weblate
2023-10-30 Marko Kohtala
* Translation update by Marko Kohtala <marko.kohtala@gmail.com> using Weblate
2023-10-30 Wellington Terumi Uemura
* Translation update by Wellington Terumi Uemura <wellingtonuemura@gmail.com> using Weblate
2023-10-29 Marko Kohtala
* Translation update by Marko Kohtala <marko.kohtala@gmail.com> using Weblate
2023-10-29 Milo Ivir
* Translation update by Milo Ivir <mail@milotype.de> using Weblate
2023-10-28 Marko Kohtala
* Translation update by Marko Kohtala <marko.kohtala@gmail.com> using Weblate
2023-10-27 Marko Kohtala
* Translation update by Marko Kohtala <marko.kohtala@gmail.com> using Weblate
2023-10-27 Zdenko Podobný
* Translation update by Zdenko Podobný <zdenop@gmail.com> using Weblate
2023-10-27 mocsa
* Translation update by mocsa <csaba@feltoltve.hu> using Weblate
2023-10-27 Milo Ivir
* Translation update by Milo Ivir <mail@milotype.de> using Weblate
2023-10-24 Zdenko Podobný
* Translation update by Zdenko Podobný <zdenop@gmail.com> using Weblate
2023-10-24 Wellington Terumi Uemura
* Translation update by Wellington Terumi Uemura <wellingtonuemura@gmail.com> using Weblate
2023-10-22 Ral Hole
* Translation update by Ral Hole <ral-hole@outlook.com> using Weblate
2023-10-22 Milo Ivir
* Translation update by Milo Ivir <mail@milotype.de> using Weblate
2023-10-22 John Ralls
* Merge Simon Arlott's 'bug-799108-sx-crash' into stable.
2023-10-21 Simon Arlott
* Bug 799108 - "Since Last Run" crashes if there are any errors creating a scheduled transaction
2023-10-20 John Ralls
* Bug 799099 - Crash when trying to get quotes
2023-10-19 Milo Ivir
* Translation update by Milo Ivir <mail@milotype.de> using Weblate
2023-10-16 Christopher Lam
* [gnucash-commands.cpp] plug some char* leaks
2023-10-14 John Ralls
* Merge Sherlock's 'bug-799104' into stable.
2023-10-14 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2023-10-14 Wellington Terumi Uemura
* Translation update by Wellington Terumi Uemura <wellingtonuemura@gmail.com> using Weblate
2023-10-13 Sherlock
* Bug 799104 - "Asset Chart" broken
2023-10-10 Christopher Lam
* [report-utilities.scm] pull out gnc:dump-transaction
2023-10-12 John Ralls
* Fix GncDateEntry date parsing oddities.
2023-10-11 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2023-10-11 mocsa
* Translation update by mocsa <csaba@feltoltve.hu> using Weblate
2023-10-11 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2023-10-11 Giuseppe Foti
* Translation update by Giuseppe Foti <foti.giuseppe@gmail.com> using Weblate
2023-10-07 Zdenko Podobný
* Translation update by Zdenko Podobný <zdenop@gmail.com> using Weblate
2023-10-05 John Ralls
* Merge Simon Arlott's 'use-default-python-version' into stable.
2023-10-04 Simon Arlott
* Use the default version of Python 3
2023-10-05 Christian Wehling
* Translation update by Christian Wehling <christian.wehling@web.de> using Weblate
2023-10-05 KULDIP PIPALIYA
* Translation update by KULDIP PIPALIYA <kuldipem@gmail.com> using Weblate
2023-10-01 mocsa
* Translation update by mocsa <csaba@feltoltve.hu> using Weblate
2023-10-01 Christian Wehling
* Translation update by Christian Wehling <christian.wehling@web.de> using Weblate
2023-10-03 John Ralls
* CI: Run distcheck on one workflow.
2023-10-02 John Ralls
* IWYU and gnc-gsettings.h isn't used in these files.
2023-10-02 John Ralls
* Bug 799092 - GnuCash 5.4 leaves background process running on exit
2023-10-02 Christopher Lam
* use gnc_list_formatter instead of gnc_g_list_stringjoin (..., ", ");
2023-10-02 Christopher Lam
* use icu::ListFormatter to combine a list strings into a string
2023-09-30 Kaligula
* Translation update by Kaligula <kaligula.dev@gmail.com> using Weblate
2023-09-30 Szia Tomi
* Translation update by Szia Tomi <sziatomi01@gmail.com> using Weblate
2023-09-29 Christopher Lam
* [gtest-assistant-stock-transaction] add cpp header for std::setw
2023-09-29 Kaligula
* Translation update by Kaligula <kaligula.dev@gmail.com> using Weblate
2023-09-27 Christopher Lam
* Merge Yongun Seong's branch 'utest-gnc-pricedb-types' into stable #1784
2023-09-26 John Ralls
* Bug 799087 - Import - Unbalanced (need acct) transactions now show...
2023-09-27 Zdenko Podobný
* Translation update by Zdenko Podobný <zdenop@gmail.com> using Weblate
2023-09-27 Stephan Paternotte
* Translation update by Stephan Paternotte <stephan@paternottes.net> using Weblate
2023-09-26 John Ralls
* Merge John Ralls's 'bug798890' into stable.
2023-09-25 Yongun Seong
* [utest-gnc-pricedb] fix test failure due to callback type mismatch
2023-09-25 Frank H. Ellenberger
* L10N: Improve Glossary
2023-09-24 gallegonovato
* Translation update by gallegonovato <fran-carro@hotmail.es> using Weblate
2023-09-25 Christopher Lam
* [assistant-qif-import.c] if user cancelled QIF file dialog, bail out
2023-09-24 Zdenko Podobný
* Translation update by Zdenko Podobný <zdenop@gmail.com> using Weblate
2023-09-24 Yaron Shahrabani
* Translation update by Yaron Shahrabani <sh.yaron@gmail.com> using Weblate
2023-09-21 Frank H. Ellenberger
* L10N: add missing glossaries
2023-09-21 Frank H. Ellenberger
* L10N: msgmerge glossaries
2023-09-19 Frank H. Ellenberger
* I18N: Several minor improvements of descriptions in the glossary from PR #1237
2023-09-23 John Ralls
* Release GnuCash 5.4 (tag: 5.4)
2023-09-23 John Ralls
* Fix misspelled/missing dist files.
2023-09-23 John Ralls
* Merge latest translations from weblate.
2023-09-23 Zdenko Podobný
* Translation update by Zdenko Podobný <zdenop@gmail.com> using Weblate
2023-09-22 Zdenko Podobný
* Translation update by Zdenko Podobný <zdenop@gmail.com> using Weblate
2023-09-22 Andrea Andre
* Translation update by Andrea Andre <andrea.tsg19@slmail.me> using Weblate
2023-09-22 John Ralls
* Bug 798904 - GnuCash on Windows opens a CMD window at startup.
2023-09-22 John Ralls
* Bug 799084 - Unable to create new scheduled transaction
2023-09-22 John Ralls
* Remove test-gnc-recurrence.c from dist
2023-09-21 gallegonovato
* Translation update by gallegonovato <fran-carro@hotmail.es> using Weblate
2023-09-21 Zdenko Podobný
* Translation update by Zdenko Podobný <zdenop@gmail.com> using Weblate
2023-09-21 Brian Hsu
* Translation update by Brian Hsu <brianhsu.hsu@gmail.com> using Weblate
2023-09-21 John Ralls
* [DBI backend] Change DBI test URLs to environment variables.
2023-09-20 Andrea Andre
* Translation update by Andrea Andre <andrea.tsg19@slmail.me> using Weblate
2023-09-20 Christian Wehling
* Translation update by Christian Wehling <christian.wehling@web.de> using Weblate
2023-09-20 Christopher Lam
* Merge branch 'free-guid-string' into stable #1777
2023-09-19 John Ralls
* [c++options] Correctly implement handling Fancy Date Format.
2023-09-19 Andrea Andre
* Translation update by Andrea Andre <andrea.tsg19@slmail.me> using Weblate
2023-09-19 Zdenko Podobný
* Translation update by Zdenko Podobný <zdenop@gmail.com> using Weblate
2023-09-19 Christopher Lam
* guid_to_string should be freed.
2023-09-19 Andrea Andre
* Translation update by Andrea Andre <andrea.tsg19@slmail.me> using Weblate
2023-09-19 gallegonovato
* Translation update by gallegonovato <fran-carro@hotmail.es> using Weblate
2023-09-19 Yaron Shahrabani
* Translation update by Yaron Shahrabani <sh.yaron@gmail.com> using Weblate
2023-09-19 Zdenko Podobný
* Translation update by Zdenko Podobný <zdenop@gmail.com> using Weblate
2023-09-19 Simon Arlott
* Translation update by Simon Arlott <weblate.simon@arlott.org> using Weblate
2023-09-19 Pedro Albuquerque
* Translation update by Pedro Albuquerque <pmra@gmx.com> using Weblate
2023-09-19 Stephan Paternotte
* Translation update by Stephan Paternotte <stephan@paternottes.net> using Weblate
2023-09-19 Arve Eriksson
* Translation update by Arve Eriksson <031299870@telia.com> using Weblate
2023-09-18 Christopher Lam
* [gnc-option-impl] don't leak char*
2023-09-18 Christopher Lam
* [utest-gnc-backend-sql] properly clean up QofBook
2023-09-18 Christopher Lam
* [test-commodities] clean up commodities
2023-09-18 Christopher Lam
* [utest-Account] g_free char*
2023-09-18 John Ralls
* Revert "[assistant-stock-transaction] refresh_handler: avoid leaking GList*"
2023-09-18 John Ralls
* [stock-txn-asst] Reset entry amount/value to GNC_ERROR_ARG.
2023-09-18 John Ralls
* [stock-txn-asst] Fix exception converting GNC_ERROR_ARG to GncNumeric.
2023-09-18 Christopher Lam
* Revert "[assistant-stock-transaction] don't add dr/cr if the entry is NaN"
2023-09-18 Christopher Lam
* [assistant-stock-transaction] don't add dr/cr if the entry is NaN
2023-09-18 Christopher Lam
* Merge branch 'test-qof-plug-leaks' into stable #1773
2023-09-17 John Ralls
* Fix formatting error in po files project-id line.
2023-09-17 John Ralls
* Msgmerge po files in preparation for 5.4 release.
2023-09-17 John Ralls
* Merge latest translations from weblate.
2023-09-17 Zdenko Podobný
* Translation update by Zdenko Podobný <zdenop@gmail.com> using Weblate
2023-09-17 BL
* Translation update by BL <ghostzeko@gmail.com> using Weblate
2023-09-17 Andrea Andre
* Translation update by Andrea Andre <andrea.tsg19@slmail.me> using Weblate
2023-09-17 John Ralls
* [stock-txn-asst] Fix balance check
2023-09-16 Christopher Lam
* [test-qofsession] plugs Account* leak
2023-09-16 Christopher Lam
* [test-qofbook] plugs Account* leak
2023-09-17 Christopher Lam
* [assistant-stock-transaction] refresh_handler: avoid leaking GList*
2023-09-16 John Ralls
* Bug 798890 - Printing Problem
2023-09-16 Christopher Lam
* [assistant-stock-transaction] g_free a char*
2023-09-16 Christopher Lam
* Merge branch 'stable-autoclear' into stable #1769
2023-09-16 Christopher Lam
* [test-sx] plug some leaks
2023-09-16 Christopher Lam
* [test-sx] plug some leaks
2023-09-16 Christopher Lam
* [test-print-parse-amount] plug leaks
2023-09-16 Christopher Lam
* Merge branch 'plug-test-leaks' into stable #1771
2023-09-15 John Ralls
* Merge Jeff Shelley's 'issue/728910' into stable.
2023-09-15 Christopher Lam
* [test-xml-pricedb] free a sixtp parser
2023-09-15 Christopher Lam
* [test-qofobject] plug some leaks
2023-09-15 Christopher Lam
* [test-qofbook] plug leaks
2023-09-15 Christopher Lam
* [gtest-import-map] plug leaks
2023-09-15 Christopher Lam
* [account.cpp] ~GncImapInfo = gnc_account_imap_info_destroy
2023-09-15 Christopher Lam
* [test-job] plug leaks
2023-09-15 Christopher Lam
* [gnc-date.cpp] don't alloc tm* unless GncDateTime() succeeds
2023-09-15 Christopher Lam
* [gnc-sx-instance-model] g_free char*
2023-09-14 John Ralls
* Bug 798709 - Total(Period) column does not refresh period's value...
2023-08-23 Jeff Shelley
* 728910: Made report handle liabilities correctly
2023-09-14 Zdenko Podobný
* Translation update by Zdenko Podobný <zdenop@gmail.com> using Weblate