forked from Gnucash/gnucash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.2018
6807 lines (3404 loc) · 137 KB
/
ChangeLog.2018
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
2018-12-24 Christopher Lam
* [test-commodity-utils] upgrade to test DMLR prices
2019-03-07 Christopher Lam
* [budget-flow] don't write raw html
2019-03-07 Christopher Lam
* [budget-flow] *reindent/delete-trailing-whitespace/untabify*
2019-03-07 Christopher Lam
* [cash-flow] preprocess accounts/money-in/out-accounts
2019-03-07 Christopher Lam
* [cash-flow] convert account-disp-list to srfi-1
2019-03-07 Christopher Lam
* [cash-flow] combine common add-accounts-flow code
2019-03-07 Christopher Lam
* [cash-flow] reduce code line length
2019-03-07 Christopher Lam
* [cash-flow] convert subaccounts to srfi-1
2019-03-07 Frank H. Ellenberger
* Appdata: update data exchange [I18N]
2019-03-07 Frank H. Ellenberger
* de.po: Several fixes
2019-03-06 Frank H. Ellenberger
* Revert "de.po: reflect today changes in reports"
2019-03-06 Francisco Javier Serrador
* From Bug 797034 - Spanish Translation ...
2019-03-06 Frank H. Ellenberger
* I18N: Remove surplus spaces from a "Tip of the Day"
2019-03-05 Frank H. Ellenberger
* de.po: reflect today changes in reports
2019-03-05 Frank H. Ellenberger
* Merge recent template in de.po
2019-03-05 Frank H. Ellenberger
* I18N: Unify thanks phrase in business reports
2019-03-05 Frank H. Ellenberger
* I18N: Unify thanks phrase in business reports
2019-03-05 Frank H. Ellenberger
* Bug 797104 - Translations not showing in receipt options
2019-03-04 Christopher Lam
* [budget] clean up useless comments
2019-03-02 Christopher Lam
* [budget] compact gnc:html-table-display-budget-columns!
2019-03-03 Christopher Lam
* [budget] inline gnc:html-table-add-budget-line-columns!
2019-03-03 Christopher Lam
* [budget] compact gnc:html-table-add-budget-line!
2019-03-03 Christopher Lam
* [budget] compact gnc:html-table-add-budget-values!
2019-03-02 Christopher Lam
* [budget] compact budget-renderer
2019-03-02 Christopher Lam
* [budget] compact calc-periods
2019-03-02 Christopher Lam
* [budget] compact gnc:html-table-add-budget-headers!
2019-03-02 Christopher Lam
* [budget] convert iterative functions to use srfi-1
2019-03-02 Christopher Lam
* [budget] eradicate gnc-numeric methods
2019-03-02 Christopher Lam
* [budget] compact find-period-relative-to-current
2019-03-02 Christopher Lam
* [budget] compact calc-user-period
2019-03-02 Christopher Lam
* [budget] *reindent/untabify/delete-trailing-whitespace*
2019-03-03 Christopher Lam
* [test-budget] initial commit
2019-03-04 Christopher Lam
* [test-extras] augment xml parser to understand – entity
2019-03-02 Christopher Lam
* [budget][cash-flow] use srfi-1 functions
2019-03-02 Christopher Lam
* [standard-reports] drop (process-file-list)
2019-03-02 Christopher Lam
* [standard-reports] compact (directory-files) and remove regex
2019-03-02 Christopher Lam
* [standard-reports] compact functions
2019-03-02 Christopher Lam
* [standard-reports] reindent/untabify/delete-trailing-whitespace
2019-02-28 milotype
* acctchrt_common correction
2019-02-28 milotype
* Croatian accounts correction
2019-02-27 Christopher Lam
* [report] further refactor gnc:define-report
2019-02-27 Christopher Lam
* [report] deprecate report-without-guid handling
2019-02-11 Christopher Lam
* [report] refactor safely
2019-02-05 Christopher Lam
* [report] simplify (gnc:report-render-html)
2019-02-05 Christopher Lam
* [report] convert (gnc:restore-report) to use closure
2019-02-05 Christopher Lam
* [report] centralize strings, (gui-error-dialog) logic
2019-01-10 Christopher Lam
* [report] enforce gnu coding style
2019-01-10 Christopher Lam
* [report] *delete-trailing-whitespace/reindent/untabify*
2019-02-26 Christopher Lam
* [test-report-system] improve test coverage to ~40%
2019-02-26 loftx
* Resolve 'basic_string::_M_construct null not valid' error when no database is provided in connection string
2019-02-26 Christopher Lam
* [test-report-system] tests functions instead of returned values
2019-02-24 Christopher Lam
* [test-report-system] reindent
2019-02-26 Christopher Lam
* [report] display gnc-error-dialog only when UI is running
2019-02-08 Christopher Lam
* [html-utilities] compact (gnc:html-make-exchangerates)
2019-02-23 Christopher Lam
* [transaction] html anchor should target split
2019-02-23 milotype
* Initial release of croatian fixedassets account file
2019-02-23 milotype
* Initial release of croatian eduloan account file
2019-02-23 milotype
* Various small improvements in the Croatian account files
2019-02-23 Frank H. Ellenberger
* Merge branch 'hr' into maint
2019-02-21 Frank H. Ellenberger
* add data/accounts/hr and README-hr.win32-bin.txt to CMakeLists
2019-02-23 Christopher Lam
* [register] use scheme numeric operators instead of gnc-numeric
2019-02-22 Christopher Lam
* [register] simplify make-split-table main loop
2019-02-22 Christopher Lam
* [register] simplify named let
2019-02-22 Christopher Lam
* [register] simplify splits-leader
2019-02-22 Christopher Lam
* [register] change other-rows-driver to named-let
2019-02-22 Christopher Lam
* [register] *delete-trailing-whitespace/reindent/untabify*
2019-02-21 Frank H. Ellenberger
* Remove obsolete hr_HR direcory
2019-02-21 Frank H. Ellenberger
* add hr.po's to CMakeLists.txt
2019-02-22 Frank H. Ellenberger
* PR #455: initial release of the croatian translation
2019-02-22 Christopher Lam
* [register] changed do-rows-with-subtotals to named-let
2019-01-04 Christopher Lam
* [register] remove dead utility and invoice code
2019-01-04 Christopher Lam
* [register] trim reg-renderer
2019-02-22 Christopher Lam
* [test-register] basic test for register.scm
2019-02-22 Christopher Lam
* [test-extras] abstract test-data skeleton
2019-02-22 Christopher Lam
* [tests] encapsulate tests with (test-begin/end)
2019-02-22 Frank H. Ellenberger
* Shorten a german column header
2019-02-21 Geert Janssens
* Add dedicated api to query build-time, version related compile constants
2019-02-21 milotype
* update hr.po
2019-02-20 Joshua "jag" Ginsberg
* Fixes to traceback calls in pycons
2019-02-12 Christopher Lam
* [html-document] if headers? is #f, do not add <body> tag
2019-02-12 Christopher Lam
* [html-document] compact functions
2019-02-14 Christopher Lam
* [engine-utilities] deprecate account utility functions
2019-02-14 Christopher Lam
* [engine-utilities] deprecate split utility functions
2019-02-17 Christopher Lam
* [test-extras] (create-transaction) adds price trading commodities/currency
2019-02-15 Christopher Lam
* [test-extras] for tests: (env-create-multisplit-transaction)
2019-02-07 Christopher Lam
* [test-extras] (gnc:options->sxml) dumps better error
2019-02-20 Christopher Lam
* [general-ledger] Void-Transactions had moved from Accounts to Filter
2019-02-08 Christopher Lam
* [html-fonts] compact (font-name-to-style-info)
2019-02-10 Christopher Lam
* [hooks.scm] deprecate hooks.scm
2019-02-14 Christopher Lam
* [app-utils] remove config-var.scm
2019-02-20 Christopher Lam
* [cash-flow][budget] logic error in sub-accounts handling
2019-01-26 Christopher Lam
* [cash-flow] clean up cash-flow calculator
2019-02-20 Christopher Lam
* [cash-flow] *untabify/delete-trailing-whitespace/reindent*
2019-01-28 Christopher Lam
* [cash-flow] replace account-in-alist with srfi-1 equivalent
2019-01-22 Christopher Lam
* [cashflow-barchart] remove srfi-1 aliases
2019-02-20 Christopher Lam
* [cashflow-barchart] reuse cash-flow-calc-money-in-out
2019-02-12 Christopher Lam
* [commodity-utilities] first/second/third -> car/cadr/caddr
2019-01-09 Christopher Lam
* [commodity-utilities] simplify gnc:uniform-commodity?
2019-01-09 Christopher Lam
* [commodity-utilities] deprecate gnc-commodity-collector-commodity-count
2019-01-09 Christopher Lam
* [commodity-utilities] deprecate gnc-commodity-collector-contains-commodity?
2019-02-08 Christopher Lam
* [report-utilities] fix (gnc:make-stats-collector)
2019-02-06 Christopher Lam
* [report-utilities] (gnc:account-get-balances-at-dates) documentation
2019-01-07 Christopher Lam
* [report-utilities] gnc:account-get-balances-at-dates adjustment
2019-02-19 John Ralls
* Bug 796989 - some date/time does not honor user locale (bis).
2019-02-14 Christopher Lam
* [test-report-utilities] mark gnc:account-get-balance-at-date obsolete
2019-01-03 Christopher Lam
* [options] gnc:warn when looking up old option names
2019-02-19 Frank H. Ellenberger
* PR #458: Add accounts templates for fr_BE
2019-02-19 Christopher Lam
* [report-utilities] deprecate gnc:commodity-collectorlist-get-merged
2019-02-18 Frank H. Ellenberger
* Merge branch 'patch-1' of https://github.com/sicelo/Gnucash into maint
2019-02-17 Sicelo
* Update SZL section header
2019-02-17 Christopher Lam
* Merge branch 'christopherlam-maint-bugfixes' into maint
2019-02-16 Mike Alexander
* Bug 797106: Do a better job of converting decimal prices to rationals.
2019-02-12 Michiel Brentjens
* Update gnc-tree-view-split-reg.c
2019-02-10 Christopher Lam
* bugfix: fix crasher when loading saved-report with unknown choices.
2019-02-14 Christopher Lam
* [gnome-utils] add gnc:gui-warn/error/msg global functions
2019-02-16 Mike Alexander
* Bug 797106: Do a better job of converting decimal prices to rationals.
2019-02-16 Sicelo
* Update iso-4217-currencies.xml
2019-02-16 Sicelo
* Update iso-4217-currencies.xml
2019-02-15 Laurent Bigonville
* data/accounts/fr_*: Add usage precisions for the common account template
2019-02-13 Laurent Bigonville
* data/accounts/fr_BE: s/chèque/courant
2019-02-13 Laurent Bigonville
* Add accounts templates for French Belgium (fr_BE)
2019-02-13 Laurent Bigonville
* data/accounts/fr_{CH,FR}acctchrt_common.gnucash-xea: Add missing comma
2019-02-13 Laurent Bigonville
* data/accounts/fr_{CH,FR}/acctchrt_spouseretire.gnucash-xea: Add missing words
2019-02-13 Geert Janssens
* Merge branch 'maint' of https://github.com/brentjens/gnucash into maint
2019-02-13 milotype
* Initial release of README-hr.win32-bin.txt
2019-02-13 milotype
* Initial release of croatian accounts files
2019-02-13 milotype
* Initial release of hr.po (croatian translation)
2019-02-13 milotype
* Initial release of the croatian glossary files
2019-02-03 Christopher Lam
* [date-utilities] bugfix: date-intervals produces good month deltas
2019-01-11 Christopher Lam
* [transaction] bugfix: date-grouping must allow indenting
2019-01-20 Christopher Lam
* [transaction] bugfix: subtotal-table + subtotals-only = hide table
2019-02-05 Christopher Lam
* Bug 795729 - Advanced Portfolio Report - Percentage rates not displaying leading zeros
2019-01-10 Christopher Lam
* Bug 773169 - General Ledger Report report name should be specified
2019-02-01 Christopher Lam
* Bug 797074 - Reports with averages are displaying fractions
2019-02-13 Christian Stimming
* Remove ktoblzcheck dependency.
2019-02-12 John Ralls
* Log a warning in gnc_get_locale() instead of writing to stderr.
2019-02-12 John Ralls
* Bug 796946 - Mortgage and Loan Repayment Setup tool crashes when...
2019-02-12 Michiel Brentjens
* Update gnc-tree-view-split-reg.c
2019-02-11 John Ralls
* Fix erratic localization of dates on Windows.
2019-02-10 John Ralls
* Restore the global locale after Guile munges it.
2019-02-08 John Ralls
* Bug 797067 - Date displayed incorrectly in register take two.
2019-02-07 Geert Janssens
* Adapt our archlinux docker config to changes in the upstream DockerHub container definition
2019-02-05 milotype
* Initial release of README-hr.win32-bin.txt
2019-02-04 milotype
* Initial release of croatian accounts files
2019-02-04 milotype
* Initial release of hr.po (croatian translation)
2019-02-04 milotype
* Initial release of the croatian glossary files
2019-02-04 Christian Stimming
* Copy obfuscate script from wiki to here, with minor improvements.
2019-02-01 Geert Janssens
* Bug 797011 - GnuCash 3.4 Crashes When Printing Checks with Custom Format
2018-10-12 Carsten Rinke
* improved logging for HTML table tests
2018-09-03 Carsten Rinke
* Bug796827 - Report HTML - it is not possible to suppress the document title
2018-09-03 Carsten Rinke
* Bug796826 - Report HTML - not possible to suppress the document header
2018-09-03 Carsten Rinke
* Bug796829 - Report HTML - HTML table rows are prepended not as list elements
2018-09-06 Carsten Rinke
* Bug796831 - Report-HTML - append table column correctly
2018-09-02 Carsten Rinke
* test-report-html.scm reformatted after review PR#391 (major update)
2018-08-09 Carsten Rinke
* test-report-html.scm reformatted (cosmetic)
2018-07-30 Carsten Rinke
* Bug787401 - Test for the report system - HTML Tests
2019-01-31 Geert Janssens
* Merge branch 'Bug796965' of https://github.com/Bob-IT/gnucash into maint
2019-01-31 Geert Janssens
* Merge branch 'bugfix/python_examples' of https://github.com/rgreid/gnucash into maint
2019-01-31 Geert Janssens
* Merge branch 'maint-fr-update' of https://github.com/christopherlam/gnucash into maint
2019-01-28 Mike Alexander
* Don't use GNC-DENOM-SIGFIGS when converting prices to gnc-numeric values.
2019-01-27 Mike Alexander
* Revert the part of 923b01e2 which reverses currency quotes less than 1. Now that GnuCash uses 64 bit numbers in numerics this is not necessary. It can store a number as small as 1e-9 with 9 significant digits.
2019-01-28 Mike Alexander
* Fix the comments on double_to_gnc_numeric. GNC_DENOM_AUTO is allowed.
2019-01-27 Mike Alexander
* Make test-backend-dbi-basic build and run with libdbi 8.
2019-01-27 Alex Aycinena
* remove unnecessary KVPs and frames related to US Income Tax name and type
2019-01-27 Alex Aycinena
* scroll txf view to put line for selected account in center of view; doesn't work for first selected account but does for all subsequent delections. Will fix in later commit when I figure out why.
2019-01-27 Alex Aycinena
* bug 518833 - partially solves by not allowing multiple account selection; rest of bug is dupicate of 554391
2019-01-26 Christopher Lam
* [fr.po] fixes thanks to benjub
2018-12-18 Christopher Lam
* [fr.po] further tip-of-the-day translations
2018-12-17 Christopher Lam
* [fr.po] update translations
2018-12-24 Christoph Holtermann
* use GNC_DEFINE_TYPE_WITH_CODE to preserve 2nd init parameter
2018-12-06 Christoph Holtermann
* replace deprecated g_type_class_add_private
2018-12-23 Christoph Holtermann
* redefine macro to provide 2nd parameter for init
2018-12-20 Christoph Holtermann
* move G_DEFINE_TYPE_... further up
2018-12-20 Christoph Holtermann
* missed to remove call to g_type_class_add_private
2018-12-15 Christoph Holtermann
* Workaround to prevent segfault when accessing page_list->data when page_list is NULL
2018-12-07 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_CODE to replace g_type_class_add_private
2018-12-13 Christoph Holtermann
* fix
2018-12-13 Christoph Holtermann
* Revert "revert 630f5ba2a693d0a6a9b3ebced645dfd4c5046c98"
2018-12-13 Christoph Holtermann
* trying to keep memory tracking
2018-12-13 Christoph Holtermann
* remove forget as memory tracking is removed
2018-12-12 Christoph Holtermann
* trying to find a working gnc_embedded_window_class_init
2018-12-09 Christoph Holtermann
* Revert "Revert "use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private""
2018-12-09 Christoph Holtermann
* Revert "use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private"
2018-12-07 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-07 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-07 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-07 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-07 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-07 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-07 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-07 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-07 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_CODE to replace g_type_class_add_private
2018-12-07 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-07 Christoph Holtermann
* use GNC_DEFINE_TYPE_WITH_CODE to replace g_type_class_add_private
2018-12-07 Christoph Holtermann
* revert 630f5ba2a693d0a6a9b3ebced645dfd4c5046c98
2018-12-07 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-07 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private(rename)
2018-12-07 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-07 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-07 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-07 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-07 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-07 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-06 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-06 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-06 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-06 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-06 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-06 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-06 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-06 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-06 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-06 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-06 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-06 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-06 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private
2018-12-06 Christoph Holtermann
* use G_DEFINE_TYPE_WITH_PRIVATE to replace g_type_class_add_private -
2018-12-05 Christoph Holtermann
* Replace deprecated g_type_class_add_private
2018-12-05 Christoph Holtermann
* directly use G_DEFINE_TYPE instead of QOF_GOBJECT_GET_TYPE
2018-12-05 Christoph Holtermann
* directly use G_DEFINE_TYPE_WITH_PRIVATE instead of QOF_GOBJECT_GET_TYPE
2018-12-04 Christoph Holtermann
* replace deprecated g_type_class_add_private
2019-01-25 John Ralls
* Use NULL, not '\0', to set a char* argument to NULL.
2019-01-24 John Ralls
* gnc_pricedb_nth_price: Clarify code and cache results.
2019-01-24 Alex Aycinena
* remove unnecesary 'home' level in path for US Income Tax book tax information
2019-01-23 John Ralls
* Complete reversion of e81bcf6 in gnc-pricedb.c.
2019-01-20 Christian Stimming
* Fix unused return value error from e4836f3c
2019-01-20 Robert Fewell
* Save the Account page filter setting to the state file
2019-01-20 Robert Fewell
* Save the Account filter settings for a Budget Page
2019-01-20 Robert Fewell
* Create two functions to save/restore the account filter settings
2019-01-20 Robert Fewell
* Bug796965 - Change the default to show unused accounts
2019-01-19 John Ralls
* Bug 797046 - Tools / Price Database / Currencies UI not working...
2019-01-19 John Ralls
* Fix unlocalized date in status bar.
2019-01-19 Geert Janssens
* Merge branch 'bugs_icv' of https://github.com/ekinonnakapito/gnucash into maint
2019-01-19 Geert Janssens
* Suppress a few more gtk deprecation warnings
2019-01-18 Alex Aycinena
* bug #796498 - Incorrect starting balance in TXF Report calculations
2019-01-18 Christian Stimming
* Update German translation
2019-01-18 Christian Stimming
* Usability improvements for Bayes editor window
2019-01-18 Christian Stimming
* Online transfer: Do no longer force existence of local BIC code
2019-01-18 Christian Stimming
* Online transfer and PIN/TAN entry: Entering of TAN must use normal visibility
2019-01-01 Christian Stimming
* Aqbanking import: Fix reconcile timestamps when importing balances.
2019-01-01 Christian Stimming
* Speed-up of dealing with account_imap lists: Replace g_list_append with _prepend and subsequent _reverse.
2019-01-17 Alex Aycinena
* Updated from version 41 to 42, although new codes not implemented yet because data not reliably available
2019-01-17 Alex Aycinena
* Updated to include codes for version 42, although new codes not implemented yet because data not reliably available
2019-01-17 Alex Aycinena
* Bug #796687, Tax entity name and type don't get saved. Change frame->set to frame->set_path to create missing frames.
2019-01-17 Alex Aycinena
* Update US Income Tax information for 2018. Two forms haven't yet been published. If changes needed, will do in subsequent commit.
2019-01-12 Rob Laan
* Fixes for bugs 797029 7970331 797030 in Import Customers & Vendors
2019-01-12 Thomas Klausner
* Bug 797041 - enum confusion in qoflog.
2019-01-12 Mike Alexander
* Commit bf55c30 deleted the call to fgets that reads the file.
2019-01-09 Geert Janssens
* Bug 796877 - test-stress-options fails
2018-12-24 Rob Laan
* Match BOM in bill/invoice import