-
Notifications
You must be signed in to change notification settings - Fork 802
/
ChangeLog.2021
5564 lines (2782 loc) · 125 KB
/
ChangeLog.2021
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
2022-01-01 Pedro Albuquerque
* Translation update by Pedro Albuquerque <pmra@gmx.com> using Weblate (HEAD)
2022-01-01 Christopher Lam
* [register] simplify gnc:register-report-create-internal
2021-12-30 Bora
* Translation update by Bora <boratici@gmail.com> using Weblate
2021-12-30 Pedro Albuquerque
* Translation update by Pedro Albuquerque <pmra@gmx.com> using Weblate
2021-12-31 Christopher Lam
* Merge branch 'maint-speedup-reconcile-finalize' into maint #1227
2021-12-30 Christopher Lam
* [window-reconcile] speed up by postponing account balance recalc
2021-12-30 Christopher Lam
* Merge branch '798392' into maint #1222
2021-12-30 Christopher Lam
* html-utilities: don't need (sxml simple) module
2021-12-29 Giuseppe Foti
* Translation update by Giuseppe Foti <foti.giuseppe@gmail.com> using Weblate
2021-12-29 Pedro Albuquerque
* Translation update by Pedro Albuquerque <pmra@gmx.com> using Weblate
2021-12-27 John Ralls
* gnc:html-foo-include: Use gnc-resolve-file-path.
2021-12-27 John Ralls
* make-uri: Ensure correct number of slashes in file URI.
2021-12-27 Pedro Albuquerque
* Translation update by Pedro Albuquerque <pmra@gmx.com> using Weblate
2021-12-26 Christopher Lam
* [trep-engine] Option to show date of entry
2021-12-22 Arve Eriksson
* Translation update by Arve Eriksson <031299870@telia.com> using Weblate
2021-12-22 Frank H. Ellenberger
* L10N:he:glossary: remove obsolete msgs, caused a fatal error
2021-12-21 Pedro Albuquerque
* Translation update by Pedro Albuquerque <pmra@gmx.com> using Weblate
2021-12-21 Avi Markovitz
* Translation update by Avi Markovitz <avi.markovitz@gmail.com> using Weblate
2021-12-21 Jiri Grönroos
* Translation update by Jiri Grönroos <jiri.gronroos@iki.fi> using Weblate
2021-12-21 Christopher Lam
* Bug 798392 - Reports do not display when Reports JavaScript dependencies are located at a filepath that includes special characters like hash ("#")
2021-12-21 Christopher Lam
* [assistant-qif-import] prevent ambiguous mnemonic
2021-12-05 Christopher Lam
* [qif-guess-map] simplify extract-all-account-info
2021-12-21 Frank H. Ellenberger
* Goodbye Translationproject!
2021-12-20 Jiri Grönroos
* Translation update by Jiri Grönroos <jiri.gronroos@iki.fi> using Weblate
2021-12-20 Giuseppe Foti
* Translation update by Giuseppe Foti <foti.giuseppe@gmail.com> using Weblate
2021-12-20 Arve Eriksson
* Translation update by Arve Eriksson <031299870@telia.com> using Weblate
2021-12-19 Yuri Chornoivan
* Translation update by Yuri Chornoivan <yurchor@ukr.net> using Weblate
2021-12-19 Pedro Albuquerque
* Translation update by Pedro Albuquerque <pmra@gmx.com> using Weblate
2021-12-19 YTX
* Translation update by YTX <ytx.cash@gmail.com> using Weblate
2021-12-19 Brian Hsu
* Translation update by Brian Hsu <brianhsu.hsu@gmail.com> using Weblate
2021-12-19 John Ralls
* Fix CMakeLists version number that missed getting committed.
2021-12-18 John Ralls
* Release GnuCash 4.9. (tag: 4.9)
2021-12-18 John Ralls
* Add gnc-autoclear.h to CMakeLists.txt so that it's in the tarball.
2021-12-18 Milo Ivir
* Translation update by Milo Ivir <mail@milotype.de> using Weblate
2021-12-17 Pedro Albuquerque
* Translation update by Pedro Albuquerque <pmra@gmx.com> using Weblate
2021-12-17 Geert Janssens
* Fix build with cmake older than 3.18
2021-12-17 Frank H. Ellenberger
* L10N:pt: move from translationproject to weblate
2021-12-16 Francisco Serrador
* Translation update by Francisco Serrador <fserrador@gmail.com> using Weblate
2021-12-15 Robert Fewell
* Bug 798222 - Account search dialog: Pushing enter does nothing
2021-12-15 Christopher Lam
* [invoice] remove unused option Display / Totals addendum 068acfb9e
2021-12-14 Christopher Lam
* [invoice] remove unused option Display / Totals
2021-12-14 Christopher Lam
* rename "Date Reconciled" to "Reconciled Date"
2021-12-14 Christopher Lam
* [account-piecharts] don't use gnc:make-internal-option
2021-12-14 Frank H. Ellenberger
* L10N:ar: remove a fuzzy flag, follow up of commit f363e17
2021-12-12 Avi Markovitz
* Translation update by Avi Markovitz <avi.markovitz@gmail.com> using Weblate
2021-12-12 Milo Ivir
* Translation update by Milo Ivir <mail@milotype.de> using Weblate
2021-12-12 Yaron Shahrabani
* Translation update by Yaron Shahrabani <sh.yaron@gmail.com> using Weblate
2021-12-12 Pedro Albuquerque
* Translation update by Pedro Albuquerque <pmra@gmx.com> using Weblate
2021-12-12 Avi Markovitz
* Translation update by Avi Markovitz <avi.markovitz@gmail.com> using Weblate
2021-12-12 Maxime Leroy
* Translation update by Maxime Leroy <lisacintosh@gmail.com> using Weblate
2021-12-12 Даниил Морозюк
* Translation update by Даниил Морозюк <morozdan2003@gmail.com> using Weblate
2021-12-12 Stefan Bayer
* Translation update by Stefan Bayer <stefan.bayer@stefanbayer.net> using Weblate
2021-12-12 Brian Hsu
* Translation update by Brian Hsu <brianhsu.hsu@gmail.com> using Weblate
2021-12-12 Arve Eriksson
* Translation update by Arve Eriksson <031299870@telia.com> using Weblate
2021-12-12 Eric
* Translation update by Eric <spice2wolf@gmail.com> using Weblate
2021-12-12 Wellington Terumi Uemura
* Translation update by Wellington Terumi Uemura <wellingtonuemura@gmail.com> using Weblate
2021-12-12 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-13 Christopher Lam
* [ifrs-cost-basis] slight reordering of columns
2021-12-09 Christopher Lam
* [account.cpp] gnc_account_and_descendants_empty: don't copy children
2021-12-12 Robert Fewell
* Bug 798266 - Dropdown picker menu for category does not appear
2021-12-11 Robert Fewell
* Fix default folder for the Document link dialogue
2021-12-11 Robert Fewell
* Manage Document Link dialog shows escaped characters.
2021-12-11 Robert Fewell
* Bug798341 - Right align in Hebrew - Account screen
2021-12-11 Robert Fewell
* Bug 797502 - (RTL) - Right edge of the reports are locked
2021-12-12 John Ralls
* Fix obsolete links to bugzilla.gnome.org in translations.
2021-12-12 Kevin M. Buckley
* Bug 798382 - Typo corrections in comments
2021-12-09 John Ralls
* Bug 798352 - Decimal Precision when Entering Mutual Fund Transaction
2021-12-08 Yuri Chornoivan
* L10N:uk: Update from Translation Project 2021-12-06; wrapped
2021-12-07 Frank H. Ellenberger
* SI18N: msgmerge 4.9-pre1
2021-12-05 Frank H. Ellenberger
* Glossary: rerun msgmerge to remove unwanted entries
2021-12-05 Frank H. Ellenberger
* L1ßN: Fix glossary/es.po:906: duplicate message definition...
2021-12-05 Yaron Shahrabani
* Translation update by Yaron Shahrabani <sh.yaron@gmail.com> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Frank H. Ellenberger
* Glossaries: msgmerge recent changes
2021-12-05 Frank H. Ellenberger
* Add some variants of "due" and "stock" to the glossary source
2021-12-05 Frank H. Ellenberger
* Merge pending changes from weblate
2021-12-05 Frank H. Ellenberger
* Revert "Add "stocks" and "stock split" to the glossary source suggested by commit 9da789f"
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Frank H. Ellenberger
* Add "stocks" and "stock split" to the glossary source suggested by commit 9da789f
2021-12-05 Arve Eriksson
* Translation update by Arve Eriksson <031299870@telia.com> using Weblate
2021-12-05 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-12-05 Francisco Serrador
* Translation update by Francisco Serrador <fserrador@gmail.com> using Weblate
2021-12-03 Christopher Lam
* [ifrs-cost-basis] store amounts intead of gnc:monetary objects
2021-11-28 Christopher Lam
* [ifrs-cost-basis] reuse txn-info instead of rescanning txn
2021-12-04 Christopher Lam
* [options.scm] addendum ca6604c93 gnc:make-budget-option
2021-12-04 Christopher Lam
* [budget-flow] delay creating exchange-fn until a valid budget exists
2021-12-04 Christopher Lam
* [options.scm] Addon previous commit... need to initialize with guid
2021-12-04 Christopher Lam
* Merge branch 'budget-option-stores-guid' into maint PR #1207
2021-11-22 Stefan Bayer
* addresses change request from jralls
2021-10-15 Stefan Bayer
* support SEPA internal transfer
2021-12-03 John Ralls
* Revert "Merge Stefan Bayer's 'SepaInternalTransfer' into maint."
2021-12-03 John Ralls
* Put version back to 4.8.
2021-12-03 John Ralls
* Merge Chris Good's 'maintBug797678OfxAppend' into maint.
2021-12-03 John Ralls
* Merge Jean Laroche's 'ofx_combine_accounts' into maint.
2021-12-03 John Ralls
* Merge Stefan Bayer's 'SepaInternalTransfer' into maint.
2021-12-04 Christopher Lam
* [options.scm] gnc:make-budget-option stores guid instead of object
2021-12-03 Frank H. Ellenberger
* L10N:es: minor formal fixes on last commit; merge last pot
2021-12-02 Javier F. Serrador
* Bug 797618 - Spanish translation of Shares and Stock
2021-12-02 Yaron Shahrabani
* Translation update by Yaron Shahrabani <sh.yaron@gmail.com> using Weblate
2021-12-02 Avi Markovitz
* Translation update by Avi Markovitz <avi.markovitz@gmail.com> using Weblate
2021-12-02 Yaron Shahrabani
* Translation update by Yaron Shahrabani <sh.yaron@gmail.com> using Weblate
2021-12-01 Avi Markovitz
* Translation update by Avi Markovitz <avi.markovitz@gmail.com> using Weblate
2021-11-30 Avi Markovitz
* Translation update by Avi Markovitz <avi.markovitz@gmail.com> using Weblate
2021-11-28 Avi Markovitz
* Translation update by Avi Markovitz <avi.markovitz@gmail.com> using Weblate
2021-11-25 Avi Markovitz
* Translation update by Avi Markovitz <avi.markovitz@gmail.com> using Weblate
2021-09-29 Christopher Lam
* [ifrs-cost-basis] use truth table to interpret stock transaction
2021-11-23 Maxime Leroy
* Translation update by Maxime Leroy <lisacintosh@gmail.com> using Weblate
2021-11-22 Stefan Bayer
* addresses change request from jralls
2021-11-21 Avi Markovitz
* Translation update by Avi Markovitz <avi.markovitz@gmail.com> using Weblate
2021-11-21 Maxime Leroy
* Translation update by Maxime Leroy <lisacintosh@gmail.com> using Weblate
2021-11-21 Christopher Lam
* [test-engine-extras] don't create splits of opposing amt/value signs
2021-10-15 Stefan Bayer
* support SEPA internal transfer
2021-11-19 Maxime Leroy
* Translation update by Maxime Leroy <lisacintosh@gmail.com> using Weblate
2021-11-19 Christopher Lam
* [dialog-search] another QofQuery "q" must be destroyed
2021-11-18 Christopher Lam
* [dialog-search] QofQuery must be destroyed
2021-11-18 Christopher Lam
* Merge branch 'maint-797772' into maint #1186
2021-11-18 Maxime Leroy
* Translation update by Maxime Leroy <lisacintosh@gmail.com> using Weblate
2021-11-17 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-11-17 Maxime Leroy
* Translation update by Maxime Leroy <lisacintosh@gmail.com> using Weblate
2021-11-16 cjh
* Translation update by cjh <cjh@cjh0613.com> using Weblate
2021-11-16 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-11-16 Christian Wehling
* Translation update by Christian Wehling <christian.wehling@web.de> using Weblate
2021-11-16 Maxime Leroy
* Translation update by Maxime Leroy <lisacintosh@gmail.com> using Weblate
2021-11-15 YTX
* Translation update by YTX <ytx.cash@gmail.com> using Weblate
2021-11-15 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-11-15 Maxime Leroy
* Translation update by Maxime Leroy <lisacintosh@gmail.com> using Weblate
2021-11-13 Maxime Leroy
* Translation update by Maxime Leroy <lisacintosh@gmail.com> using Weblate
2021-11-13 Lionel Élie Mamane
* Small documentation patch
2021-11-13 Maxime Leroy
* Translation update by Maxime Leroy <lisacintosh@gmail.com> using Weblate
2021-11-10 Avi Markovitz
* Translation update by Avi Markovitz <avi.markovitz@gmail.com> using Weblate
2021-11-10 Maxime Leroy
* Translation update by Maxime Leroy <lisacintosh@gmail.com> using Weblate
2021-11-10 Anonymous
* Translation update by Anonymous <noreply@weblate.org> using Weblate
2021-11-10 Maxime Leroy
* Translation update by Maxime Leroy <lisacintosh@gmail.com> using Weblate
2021-11-08 John Ralls
* Bug 798346 - crashes when running check & repair
2021-11-07 YTX
* Translation update by YTX <ytx.cash@gmail.com> using Weblate
2021-11-06 Christopher Lam
* Merge branch 'maint'
2021-11-06 Christopher Lam
* Merge branch 'maint-progress2' into maint #1175
2021-11-05 Christopher Lam
* Bug 797772 - Allow reconciliation report to double filter by both posting and reconciliation date
2021-11-05 Christopher Lam
* [trep-engine] new option "Date Filter" to specify dates to filter by
2021-11-06 Christopher Lam
* [test-transaction] "Report Currency" renamed to "Report's currency"
2021-11-05 Maxime Leroy
* Translation update by Maxime Leroy <lisacintosh@gmail.com> using Weblate
2021-11-04 Frank H. Ellenberger
* Revert "Translation update by Hugo Carvalho <hugokarvalho@hotmail.com> using Weblate"
2021-11-04 Avi Markovitz
* Translation update by Avi Markovitz <avi.markovitz@gmail.com> using Weblate
2021-11-04 Allan Nordhøy
* Translation update by Allan Nordhøy <epost@anotheragency.no> using Weblate
2021-11-04 Maxime Leroy
* Translation update by Maxime Leroy <lisacintosh@gmail.com> using Weblate
2021-11-04 Hugo Carvalho
* Translation update by Hugo Carvalho <hugokarvalho@hotmail.com> using Weblate
2021-11-03 John Ralls
* Merge Simon Arlott's 'cut-txn-warning' into maint.
2021-11-02 Christopher Lam
* Merge branch 'glist-functions' into maint #1183
2021-11-02 Christopher Lam
* Revert b5f5129f7 using gnc_list_length_cmp
2021-11-01 Christopher Lam
* [gnc-glib-utils] Define and export gnc_list_length_cmp
2021-10-19 Christopher Lam
* [dialog-sx-since-last-run] don't allocate repeatedly to combine strings
2021-10-19 Christopher Lam
* Shortcut g_list_length comparison against small numbers
2021-10-14 Christopher Lam
* Don't g_strdup char* from scm_to_locale|utf8_string
2021-10-28 Simon Arlott
* Separate the warnings for "cut split/transaction" and "delete split/transaction"
2021-10-25 Christopher Lam
* [gnc-autoclear] Move autoclear algorithm into gnome-utils
2021-10-27 Christopher Lam
* [window-autoclear.glade] upgrade to glade 3.38.2
2021-10-26 Christopher Lam
* [window-reconcile.glade] upgrade to glade 3.38.2
2021-09-30 goodvibes2
* Bug797678 OFX import should append not replace, existing Notes & Desc
2021-10-27 Christian Wehling
* Translation update by Christian Wehling <christian.wehling@web.de> using Weblate
2021-10-27 Geert Janssens
* GSettings - fix GObject warning when old prefs-version is unset
2021-10-18 jean
* Fix issue with failure to run reconciliation with all accounts present in a multi-account OFX file. Do that by saving a GList of statements, rather than a pointer to a single one. Also freeing of info happens during the call to process_next_file.
2021-10-23 cjh
* Translation update by cjh <cjh@cjh0613.com> using Weblate
2021-10-23 John Ralls
* Bug 798325 - New Currency for Venezuela (VED)
2021-10-21 Avi Markovitz
* Translation update by Avi Markovitz <avi.markovitz@gmail.com> using Weblate
2021-10-21 Milo Ivir
* Translation update by Milo Ivir <mail@milotype.de> using Weblate
2021-10-19 Christopher Lam
* Avoid unnecessary g_list_length in equality functions
2021-10-19 Christopher Lam
* [gnc-features] don't repeatedly g_strconcat gchars*
2021-10-19 Christopher Lam
* [Recurrence.c] avoid repeated calls to g_list_length
2021-10-19 Christopher Lam
* [gnc-budget-view] avoid O(N^2) g_list_length calls
2021-10-19 Yaron Shahrabani
* Translation update by Yaron Shahrabani <sh.yaron@gmail.com> using Weblate
2021-10-19 Frank H. Ellenberger
* L10N:sv:: merge recent 4.8-pot2
2021-10-19 Arve Eriksson
* L10N:sv: 2021-10-17 Update from translationproject.org (4.7-pre1)
2021-10-13 jean
* Import of OFX files with many securities opens too many matching dialogs Because ofx import is currently split per target account, and since each security has its own accounts, importing such OFX is a tedious process. The fix is to only split the transactions if we identify a potential transfer, currently based on amount, date and accounts. To do that, we insert transactions one by one into a list, making sure we have not already inserted one that has the same date, and the same absolute amount. If we have, we keep this potential transfer for a second phase. A naive approach would loop through added transactions for each new transaction by that ends up being O(N^2), which matters if we have many transactions. Instead, I'm using a hash to make this O(N log N).
2021-10-18 Wellington Terumi Uemura
* Translation update by Wellington Terumi Uemura <wellingtonuemura@gmail.com> using Weblate
2021-10-18 Yaron Shahrabani
* Translation update by Yaron Shahrabani <sh.yaron@gmail.com> using Weblate
2021-10-18 Christopher Lam
* [gnc-pricedb] gnc_price_list_equal: avoid 4 g_list_length calls
2021-10-18 Christopher Lam
* [utest-gnc-pricedb] add tests for gnc_price_list_equal
2021-10-17 Frank H. Ellenberger
* L10N: merge recent change
2021-10-17 Frank H. Ellenberger
* I18N: Improve the recently marked messages from commit ae55908
2021-10-17 Christian Wehling
* Translation update by Christian Wehling <christian.wehling@web.de> using Weblate
2021-10-16 John Ralls
* Bug 798313 - "File/Import/Import Transactions From CSV" crashes Gnucash.
2021-10-16 Geert Janssens
* Revert "Add structure to map migrated preferences to old ones"
2021-10-16 Geert Janssens
* Revert "GSettings - make most of the api private"
2021-10-16 Geert Janssens
* Revert "GSettings - rework internal helper functions to use more C++"
2021-10-16 Milo Ivir
* Translation update by Milo Ivir <mail@milotype.de> using Weblate
2021-10-16 Eric
* Translation update by Eric <spice2wolf@gmail.com> using Weblate
2021-10-16 Wellington Terumi Uemura
* Translation update by Wellington Terumi Uemura <wellingtonuemura@gmail.com> using Weblate
2021-10-16 Christopher Lam
* Don't g_strdup char* returned by scm_to_locale_string
2021-10-16 Christopher Lam
* Revert "g_list_free swigged GList* arguments"
2021-10-16 Geert Janssens
* Remove redundant function declaration
2021-10-06 Geert Janssens
* GSettings - rework internal helper functions to use more C++
2021-10-06 Geert Janssens
* GSettings - make most of the api private
2021-10-06 Geert Janssens
* Add structure to map migrated preferences to old ones
2021-10-16 Christopher Lam
* g_list_free swigged GList* arguments
2021-10-16 Frank H. Ellenberger
* L10N:de: Update translator-credit
2021-10-15 Yaron Shahrabani
* Translation update by Yaron Shahrabani <sh.yaron@gmail.com> using Weblate
2021-10-15 Frank H. Ellenberger
* L10N: merge recent changes
2021-10-15 Frank H. Ellenberger
* L10N: Patch PR 1156 into existing translatons
2021-10-14 Francisco Serrador
* Translation update by Francisco Serrador <fserrador@gmail.com> using Weblate
2021-10-14 John Ralls
* Bug 798335 - No longer possible to change trading account
2021-10-14 Christopher Lam
* Merge branch 'maint'
2021-10-13 Christopher Lam
* Merge branch 'maint-leaks2' into maint #1166
2021-10-13 Christopher Lam
* [dialog-custom-report] don't allocate GValue
2021-10-13 Christopher Lam
* [dialog-custom-report] plug leaks when destroying dialog
2021-10-13 Christopher Lam
* [dialog-custom-report] refactor empty_tree_model into static fn
2021-10-12 Christopher Lam
* [dialog-custom-report] plug leaks
2021-10-13 Christopher Lam
* Merge branch 'price_and_reconcile' into maint #1165
2021-10-12 Christopher Lam
* [reconcile-view][bug] dr/cr query tests amount instead of value
2021-10-12 John Ralls
* Merge Jean Laroche's '798327_ofx_import_terminates_too_early' into maint.
2021-10-12 Christopher Lam
* [split-register-model.c] Hide price==1 for zero-amount splits
2021-10-12 Christopher Lam
* [split-register-model.c] more efficient acct->full_names constructor
2021-10-12 Christopher Lam
* [split-register-model.c] prepend parent account, faster
2021-10-09 Christopher Lam
* [reports] QofQuery must be qof_query_destroyed
2021-10-03 jean
* Bug 798327 - Ofx import stops too early for multi-account OFX and one account has no new transactions info->response must show GTK_RESPONSE_OK for the import to pproceed, otherwise the code assumes the user canceled.
2021-10-12 Frank H. Ellenberger
* Don't translate org.gnucash.GnuCash.deprecated.gschema.xml.in
2021-10-10 TianXing_Yi
* Translation update by TianXing_Yi <ytx.cash@gmail.com> using Weblate
2021-10-10 J0kWang
* Translation update by J0kWang <lianjiefly@gmail.com> using Weblate
2021-10-11 John Ralls
* Merge Christian Wehling's 'trailing_spaces' into maint.
2021-10-11 John Ralls
* Merge Jean Laroche's '105334_ofx_multiple_accounts' into maint.
2021-10-09 Christopher Lam
* g_list_free_full requires a GDestroyNotify
2021-10-06 Christopher Lam
* [core-utils] introduce gnc:format
2021-10-07 Christopher Lam
* [test-core-utils] uses srfi-64