forked from Gnucash/gnucash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.2020
6464 lines (3232 loc) · 131 KB
/
ChangeLog.2020
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
2020-12-20 Frank H. Ellenberger
* Fix indentation of accounts/de_AT/common (HEAD)
2020-12-31 Avi Markovitz
* Translation update by Avi Markovitz <[email protected]> using Weblate
2020-12-31 Allan Nordhøy
* Translation update by Allan Nordhøy <[email protected]> using Weblate
2020-12-31 Yaron Shahrabani
* Translation update by Yaron Shahrabani <[email protected]> using Weblate
2020-12-31 An's Page
* L10N:bg: po/glossary/bg.po:89.2%
2020-12-31 Frank H. Ellenberger
* L10N:de: po/glossary/de.po:99.5%
2020-12-31 SebastianL
* L10N:de: po/glossary/de.po:99.5%
2020-12-30 Frank H. Ellenberger
* L10N:de: Glossary convert terms in brackets in comments
2020-12-30 Frank H. Ellenberger
* I18N: Glossary: new terms and conventions
2020-12-29 Marco Zietzling
* L10N:de_CH: po/glossary/de_CH.po:93.9%
2020-12-29 Giuseppe Foti
* L10N:it: po/it.po:100.0%
2020-12-29 Christopher Lam
* L10N:fr: po/fr.po:69.4%
2020-12-29 Milo Ivir
* L10N:de: po/glossary/de.po:100.0%
2020-12-29 Christian Wehling
* L10N:de: po/de.po:99.5%
2020-12-28 John Ralls
* Release GnuCash 4.4. (tag: 4.4)
2020-12-28 Frank H. Ellenberger
* Merge branch 'PR_850' into maint
2020-12-28 John Ralls
* Bug 798063 - Crash when opening SX Editor
2020-12-27 Giuseppe Foti
* L10N:it: po/it.po:100.0%
2020-12-27 YOSHINO Yoshihito
* L10N:ja: po/ja.po:92.8%
2020-12-28 Frank H. Ellenberger
* Bug 798038 - Incorrect spelling in german account templates 'common' and 'full' part 2: AT
2020-12-28 b4r3t
* L10:de: fix "Einkommensteuer"
2020-12-27 Christopher Lam
* [account.cpp][API] deprecate xaccAccountCountSplits
2020-12-27 Christopher Lam
* [dialog-account] don't use xaccAccountCountSplits
2020-12-26 Christopher Lam
* [html-table][API] deprecate gnc:html-table-append-column!
2020-12-26 Christopher Lam
* Reports: don't use gnc:html-table-append-column!
2020-12-26 John Ralls
* Release GnuCash 4.3 (tag: 4.3)
2020-12-26 John Ralls
* Add test_autoclear_SOURCES to the dist list for inclusion in the tarball.
2020-12-27 Frank H. Ellenberger
* L10N:hu: po/glossary/hu.po:87.4%
2020-12-27 Alois Spitzbart
* L10N:de: po/de.po:99.4%
2020-12-26 John Ralls
* Fix test-gnc-timezone failure caused by latest zoneinfo release.
2020-12-26 Frank H. Ellenberger
* ja left the Translation Project
2020-12-26 Frank H. Ellenberger
* L10N:nb: Fix format error
2020-12-26 YOSHINO Yoshihito
* L10N:ja: po/ja.po:92.8%
2020-12-26 Frank H. Ellenberger
* L10N:de: po/de.po:99.4%
2020-12-26 Takuro Onoue
* L10N:ja: po/ja.po:92.8%
2020-12-26 YOSHINO Yoshihito
* L10N:ja: po/ja.po:92.7%
2020-12-26 Giuseppe Foti
* L10N:it: po/glossary/it.po:100.0%
2020-12-26 Takuro Onoue
* L10N:ja: po/ja.po:92.5%
2020-12-26 YOSHINO Yoshihito
* L10N:ja: po/ja.po:92.5%
2020-12-26 Takuro Onoue
* L10N:ja: po/ja.po:92.4%
2020-12-26 YOSHINO Yoshihito
* L10N:ja: po/ja.po:92.2%
2020-12-26 Milo Ivir
* L10N:hr: po/hr.po:100.0%
2020-12-25 Frank H. Ellenberger
* Merge weblate-maint into maint
2020-12-25 Allan Nordhøy
* L10N:nb: po/nb.po:51.3%
2020-12-25 YOSHINO Yoshihito
* L10N:ja: po/ja.po:92.0%
2020-12-25 Frank H. Ellenberger
* L10N:de: Glossary/po/glossary/de.po
2020-12-25 Takuro Onoue
* L10N:ja: po/ja.po:91.9%
2020-12-25 Manuel Bichler
* L10N:de: Glossary/po/glossary/de.po
2020-12-25 Milo Ivir
* L10N:de: Glossary/po/glossary/de.po
2020-12-25 Yaron Shahrabani
* L10N:he: Glossary/po/glossary/he.po
2020-12-25 YOSHINO Yoshihito
* L10N:ja: po/ja.po:91.9%
2020-12-25 Marko Kohtala
* L10N:fi: Glossary/po/glossary/fi.po
2020-12-25 K. Herbert
* L10N:de: Glossary/po/glossary/de.po
2020-12-25 THANOS SIOURDAKIS
* L10N:el: Glossary/po/glossary/el.po
2020-12-25 Manuel Bichler
* L10N:de: Glossary/po/glossary/de.po
2020-12-25 LL Magical
* Translated using Weblate (Portuguese (Brazil))
2020-12-25 Giuseppe Foti
* L10N:it: po/it.po:100.0%
2020-12-25 Milo Ivir
* Translated using Weblate (Croatian)
2020-12-25 Frank H. Ellenberger
* Translated using Weblate (German)
2020-12-25 LL Magical
* Translated using Weblate (Portuguese (Brazil))
2020-12-25 Giuseppe Foti
* L10N:it: po/it.po:100.0%
2020-12-25 Milo Ivir
* Translated using Weblate (Croatian)
2020-12-25 Frank H. Ellenberger
* Translated using Weblate (German)
2020-12-25 Christopher Lam
* [new-owner-report] use translatable strings (tag: 4.2-post-string-freeze)
2020-12-24 Christopher Lam
* [app-utils] fix dependency chain
2020-12-24 Christopher Lam
* [c-interface] internal defines must be declared first
2020-12-23 Christopher Lam
* [c-interface] Deprecate gnc:make-string-database
2020-12-22 Christopher Lam
* [account-piecharts.scm] mark string as translatable
2020-12-20 Frank H. Ellenberger
* Merge branch PR #844 into maint
2020-12-20 Geert Janssens
* Bug 798038 - Incorrect spelling in german account templates 'common' and 'full'
2020-12-19 Jyri-Petteri Paloposki
* Some more grammar errors, splits and other small fixables.
2020-12-19 Jyri-Petteri Paloposki
* One more split to fix
2020-12-19 Jyri-Petteri Paloposki
* Change the wording regarding linked documents; revert the changes regarding the placeholder term for now due to debate on the term.
2020-12-19 Robert Fewell
* Realign the flicker_data function to 4 spaces
2020-12-16 Robert Fewell
* Free the char 'code' in gnc-flicker-gui.c
2020-12-19 Jyri-Petteri Paloposki
* Some more fixes to the Finnish translation based on the feedback.
2020-12-17 LL Magical
* Translated using Weblate (Portuguese (Brazil))
2020-12-17 Giuseppe Foti
* Translated using Weblate (Italian)
2020-12-15 Pedro Albuquerque
* Translated using Weblate (Portuguese)
2020-12-15 K. Herbert
* Translated using Weblate (French)
2020-12-15 Frank H. Ellenberger
* Translated using Weblate (German)
2020-12-17 LL Magical
* Translated using Weblate (Portuguese (Brazil))
2020-12-16 Allan Nordhøy
* Translated using Weblate (Norwegian Bokmål)
2020-12-16 K. Herbert
* Translated using Weblate (German)
2020-12-16 Christopher Lam
* Translated using Weblate (French)
2020-12-15 Geert Janssens
* Translated using Weblate (Dutch)
2020-12-15 Allan Nordhøy
* Translated using Weblate (Norwegian Bokmål)
2020-12-15 Frank H. Ellenberger
* Translated using Weblate (German)
2020-12-14 J. Lavoie
* Translated using Weblate (Italian)
2020-12-14 J. Lavoie
* Translated using Weblate (French)
2020-12-14 J. Lavoie
* Translated using Weblate (German)
2020-12-16 Giuseppe Foti
* L10N:it:glossario aggiornato.
2020-12-17 Giuseppe Foti
* L10N:it:5545 messaggi tradotti.
2020-12-17 Frank H. Ellenberger
* Merge branch 'PR_842' into maint
2020-12-17 Jyri-Petteri Paloposki
* Update the Finnish translation file to fix some typos and add missing translations.
2020-12-17 Christopher Lam
* [view-column] refactor to remove reference to gnc:last-captured-error
2020-12-16 Giuseppe Foti
* L10N:it:5545 messaggi tradotti.
2020-12-16 Frank H. Ellenberger
* I18N: Improve Translator comments about CUSIP
2020-12-15 Christopher Lam
* Merge branch 'maint-modularisation-hint' into maint #836
2020-12-15 Frank H. Ellenberger
* Merge PR #837 into maint
2020-12-14 CWehli
* L10N:de Übersetzung Flicker GUI
2020-12-14 Frank H. Ellenberger
* L10N:uk: 100% translation for 4.3 from TP
2020-12-14 Frank H. Ellenberger
* L10N:pt: 100% translation for 4.3 from TP
2020-12-14 John Ralls
* Remove Travis CI.
2020-12-13 Christopher Lam
* [core-utils] use custom unbound-variable exception printer
2020-12-13 John Ralls
* Add MAKE_LINKS to app-utils and qif-import scheme targets.
2020-12-13 John Ralls
* Revert bumping version in CMakeLists.txt. Not quite time.
2020-12-13 John Ralls
* Force scheme to make links before any builds.
2020-12-14 Christopher Lam
* Bug 798050 - error using Reports->Experimental->Income Statement (Multicolumn)
2020-12-14 Christopher Lam
* Fix format warnings by importing (ice-9 format), bis
2020-12-14 Christopher Lam
* Fix format warnings by importing (ice-9 format)
2020-12-13 John Ralls
* AQB Flicker: Replace malloc with g_malloc0.
2020-12-13 Frank H. Ellenberger
* L10N: Merge 4.3 pot
2020-12-13 John Ralls
* Echo into CMakeLists.txt rename of gmock-qofqury to fake-qofquery.
2020-12-13 John Ralls
* Change non-standard and non-Gnome uint to guint. (tag: 4.3-string-freeze)
2020-12-13 Christopher Lam
* [trep-engine] move currency options into their own section, ter
2020-12-13 Christopher Lam
* [advanced-portfolio] typo set!
2020-12-12 John Ralls
* Fix stray merge conflict marker.
2020-12-12 John Ralls
* Merge Christian Wehling's 'gnucash-flicker' into maint.
2020-12-12 John Ralls
* Bug 798047 - Crash on delete account.
2020-12-13 Christopher Lam
* [test-balsheet-pnl] tests reverse-chrono option
2020-12-13 Christopher Lam
* Merge branch 'maint-balsheet-pnl-reverse-chrono' into maint #834
2020-12-13 Christopher Lam
* [trep-engine] move currency options into their own section, ter
2020-11-15 CWehli
* Bug 667490 - Support chipTAN optical "Flicker code"
2020-12-09 Christopher Lam
* [balsheet-pnl] show most recent period first by default
2020-12-12 Christopher Lam
* [trep-engine] move currency options into their own section, bis
2020-12-12 Christopher Lam
* Bug 798039 - Using 'Consolidate Transactions' option on Consolidate Transaction Report returns Error
2020-12-11 Robert Fewell
* Bug 798041 - Open invoices in new window does not work
2020-12-10 John Ralls
* Rename github action jobs for consistency.
2020-12-10 John Ralls
* Run github actions on PR commits.
2020-12-06 Robert Fewell
* Change register page icon to a padlock if read only
2020-12-03 Robert Fewell
* When a resister is read only make whole sheet insensitive.
2020-11-29 Robert Fewell
* Bug 355496 - Indication of Read Only Register
2020-11-29 Robert Fewell
* Read-Only register warning non specific
2020-11-24 Robert Fewell
* Change the way the help button is setup for dialog-commodity
2020-11-24 Robert Fewell
* Add parent widget to gnc_gnome_help function
2020-11-22 Robert Fewell
* Bug 128772 - Account Help Button does not work
2020-12-09 Christopher Lam
* [API][eguile-html-utilities] use font-name-to-style-info-eguile
2020-12-09 Christopher Lam
* [options.scm] use srfi-1
2020-12-08 John Ralls
* Merge Chris Lam's 'guile-modularisation' into maint
2020-12-04 Christopher Lam
* [modularise] (gnucash reports) (guile-modularisation)
2020-12-05 Christopher Lam
* [modularise] (gnucash eguile)
2020-12-09 Christopher Lam
* [modularise] (gnucash report)
2020-12-09 Christopher Lam
* [report-utilities] don't use (ice-9 match) until guile-3.0 minimum
2020-12-05 Christopher Lam
* [modularise] (gnucash gnome-utils)
2020-12-03 Christopher Lam
* [modularise] (gnucash qif-import)
2020-12-05 Christopher Lam
* [modularise] (gnucash locale)
2020-12-03 Christopher Lam
* [modularise] (gnucash app-utils)
2020-12-03 Christopher Lam
* [modularise] (gnucash engine)
2020-12-03 Christopher Lam
* [modularise] (gnucash core-utils)
2020-12-02 Christopher Lam
* [modularise] (gnucash utilities)
2020-12-09 Christopher Lam
* Merge branch 'maint-improve-test-report-utilities' into maint
2020-12-08 Christopher Lam
* [options.scm] move gnc:options-fancy-date to business-options.scm
2020-12-08 Christopher Lam
* [test-report-utilities] add 4th txn to bank1 as originally written
2020-12-07 Christopher Lam
* [test-report-utilities] modify test to use unique amounts
2020-12-08 Robert Fewell
* Bug 309943 - Change previous fix commit
2020-12-07 Robert Fewell
* Move flag to indicate report loaded to before gnc_html_show_url
2020-12-07 Christopher Lam
* [category-barchart] don't drill down after acct lvl 6
2020-12-06 Frank H. Ellenberger
* I18N:glossary: add mortgage terms ARM, APR, FRM
2020-12-06 Frank H. Ellenberger
* I18N: another translatable flag removed
2020-12-06 Frank H. Ellenberger
* I18N: remove translatable flag from several numbers in glade files
2020-12-05 Christopher Lam
* [report-utilities] centralise gnc:not-all-zeros
2020-12-05 Christopher Lam
* [report-utilities] test gnc:not-all-zeros
2020-12-05 Christopher Lam
* [eguile-utilities] typo fix
2020-12-04 Christopher Lam
* [html-utilities] bugfix deprecated function
2020-12-04 Christopher Lam
* [piechart|scatter] define gnc:not-all-zeros locally
2020-12-04 Christopher Lam
* [utilities] simplify addto!
2020-12-04 Christopher Lam
* [options.scm] typo ref -> list-ref
2020-12-04 Christopher Lam
* [core-utils] N_ is identity function
2020-12-04 Christopher Lam
* Use proper format syntax
2020-12-04 Christopher Lam
* [balsheet-eg] instead of before, use macros after definition
2020-12-01 John Ralls
* Use guile-3.0 on Ubuntu-20.04 github-action CI tests.
2020-12-02 Christopher Lam
* [trep-engine] move currency options into their own section
2020-12-02 Christopher Lam
* Bug 798036 - Transaction Report should offer price source
2020-12-01 Frank H. Ellenberger
* L10N:hr: merge a fresh pot into po
2020-12-01 Frank H. Ellenberger
* Merge branch 'maint' into PR #828
2020-11-30 milotype
* Update Croatian translation
2020-12-01 Frank H. Ellenberger
* I18N: Remove date strings from pot
2020-11-30 milotype
* Update Croatian glossary file
2020-11-30 John Ralls
* [github-actions] Update the Ubuntu 18.04 apt repositories before running.
2020-11-30 pmraps
* L10N:pt: glossary (PR #827)
2020-11-29 John Ralls
* Fix missing space in warning message.
2020-11-29 John Ralls
* Bug 794807 - Calendar widget current month shown as (null).
2020-11-29 John Ralls
* Merge Pedro Alvarez's Portugues updates into maint.
2020-11-29 pmraps
* Translation Update pt
2020-11-29 Robert Fewell
* Bug 798031 - Date goes to prior year with mm/dd
2020-11-29 Robert Fewell
* Change the mnemonic of '_Open Read-Only' to 'Open _Read-Only'
2020-11-28 Robert Fewell
* Change the mnemonic of '_Open with No File' to 'Open with _No File' to fix conflict.
2020-11-28 Robert Fewell
* Bug 343647 - Keep scrolled report location
2020-11-22 Robert Fewell
* Change the icons used for the file lock message
2020-11-22 Robert Fewell
* Bug 309943 - When unable to obtain a lock, no option to open another file
2020-11-27 Frank H. Ellenberger
* Move pt translation to Translation Project
2020-11-26 Frank H. Ellenberger
* L10N: Update Glossaries to commit 3d7e66d
2020-11-24 John Ralls
* Register: Don't double-delete when typing over a selection.
2020-11-23 Christopher Lam
* [gnc_scm_to_numeric] create NaN gnc_numeric instead of runtime error
2020-11-23 Christopher Lam
* [gnc-engine-guile.c] return #f when gnc_numeric has error
2020-11-22 Christopher Lam
* Bug 798015 - cash flow numerical-overflow
2020-11-22 Christopher Lam
* Revert "[date-utilities] Convert reldate list into srfi-9 records"
2020-11-22 Christopher Lam
* Revert "[c-interface] deprecate gnc:make-string-database"
2020-11-22 Christopher Lam
* [c-interface] deprecate gnc:make-string-database
2020-11-21 Christopher Lam
* [date-utilities] Convert reldate list into srfi-9 records
2020-11-22 Robert Fewell
* Bug 330930 - Financial Calculator resets payment period to zero
2020-11-22 Robert Fewell
* Bug 106746 - Selecting New account in Loan Assistant
2020-11-22 Robert Fewell
* Change source files gnc-account-sel.* for space and tabs
2020-11-22 Robert Fewell
* GNCAccountSel with a New button
2020-11-22 Robert Fewell
* Bug 355498 - When there is only one result from a 'Find', select it.
2020-11-22 Robert Fewell
* Bug 720564 - Search in General Ledger
2020-11-21 Triyan W. Nugroho
* Update Indonesian translation for GnuCash.
2020-11-17 John Ralls
* Merge branch 'github-action' into maint; adds macOS unit tests.
2020-11-17 John Ralls
* Implement Github-actions tests on macOS.
2020-11-16 John Ralls
* Merge Ralf Habacker's add-opening-balance-accounts into maint.
2020-10-28 Ralf Habacker
* Add feature GNC_FEATURE_EQUITY_TYPE_OPENING_BALANCE
2020-10-23 Ralf Habacker
* Update opening balance account on adding, editing and deleting accounts
2020-10-23 Ralf Habacker
* Do not create additional opening balance account on creating new gnucash file
2020-09-19 Ralf Habacker
* Add support for the opening balance accounts flag
2020-09-15 Ralf Habacker
* Add slot "equity-type" with value "opening-balance" to account templates
2020-07-06 Ralf Habacker
* Add script to add slots with key 'equity-type' and value 'opening-balance' to detected opening balance accounts
2020-11-11 Robert Fewell
* Change source files gnucash-sheet/header.* for space and tabs
2020-11-11 Robert Fewell
* Bug 644242 - Register Panning Problem
2020-11-15 Robert Fewell
* Bug 797901 - File History not updated
2020-11-15 Christopher Lam
* Remove debugging statement
2020-11-15 Christopher Lam
* Bug 798005 - Import of QIF file sets expenses to zero, deposits are fine
2020-11-13 Geert Janssens
* Bug 798008 - Option '--log' cannot be specified more than once
2020-11-12 John Ralls
* Merge branch 'github-action' into maint
2020-11-12 John Ralls
* Implement CI tests on ArchLinux via docker container.
2020-11-12 John Ralls
* Merge branch 'github-action' into maint
2020-11-09 John Ralls
* Fix typo in .gitattributes, text not test.
2020-11-09 John Ralls
* Use LTDL_LIBRARY_PATH instead of (DY)LD_LIBRARY_PATH
2020-11-12 John Ralls
* Add Ubuntu-20 tests.
2020-11-09 John Ralls
* Setup Github Actions with CI testing for Ubuntu 18.04
2020-11-10 Robert Fewell
* Windows Build failure in dialog-dup-trans.c
2020-10-29 Frank H. Ellenberger
* I18N: Ammend intro of autoclear window
2020-10-14 Cristian Klein
* Document complexity in UI
2020-11-07 Frank H. Ellenberger
* Add a few more CSS classes for labels
2020-11-09 John Ralls
* Fix typo in .gitattributes, text not test.
2020-11-09 John Ralls
* Use LTDL_LIBRARY_PATH instead of (DY)LD_LIBRARY_PATH
2020-11-09 Christopher Lam
* Revert "[auto-clear] provide live feedback when a valid end_amount is input"
2020-11-08 John Ralls
* Merge Christian Gruber's 'test_import_backend' into maint.
2020-11-08 John Ralls
* Merge Christian Klein's 'auto-clear-tests' into maint.
2020-11-08 Robert Fewell
* Change source files dialog-dup-trans.* for space and tabs
2020-11-08 Robert Fewell
* Bug 645379 - Problem with Number field when duplicating a transaction
2020-11-08 Cristian Klein
* [auto-tests] Stick to CodingStandard for member variables
2020-11-08 Cristian Klein
* [auto-tests] Fix misspelling
2020-11-07 John Ralls
* Fix exception when converting to decimal values that reduce to N/1.
2020-11-07 John Ralls
* Remove redundant and incorrectly named constant.
2020-11-06 John Ralls
* Fix timezone transition times.
2020-10-28 Robert Fewell
* Add confirmation of Main Window close when more than one
2020-10-27 Robert Fewell
* Add two key combinations to the main notebook
2020-10-26 Robert Fewell
* Intercept the Ctrl+Alt+PgUp/Down for a report page
2020-10-26 Robert Fewell
* Fix report page focus