-
Notifications
You must be signed in to change notification settings - Fork 802
/
ChangeLog.2019
5132 lines (2566 loc) · 107 KB
/
ChangeLog.2019
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
2019-12-28 Christopher Lam
* [new-owner-report] add double-header
2019-12-27 Christopher Lam
* [html-table][API] html-table can have multirow-col-headers
2019-12-28 Christopher Lam
* [new-owner-report] style monetary sale/tax cols with number-cell
2020-01-02 Frank H. Ellenberger
* L12N:pl: Merge a fresh template
2020-01-02 Frank H. Ellenberger
* L12N:pl: Recover translator credits from git history
2020-01-02 Jannick
* po/de.po: amend translation about eguile reports
2020-01-02 Jannick
* po/de.po: fix translation bug
2020-01-01 Michał Ciołek
* Polish translation improved (part2)
2019-12-31 Michał Ciołek
* Polish translation improved
2019-12-30 Daniel Dittmann
* gnucash/import-export/aqb/gnc-ab-utils.c: extract 'create_online_id' function
2019-12-30 Daniel Dittmann
* Merge remote-tracking branch 'upstream/maint' into maint
2019-12-29 Christian Stimming
* German translation improved.
2019-12-29 Christian Stimming
* I18n improvement: Translated column headers should get more human-readable names
2019-12-29 Christian Stimming
* More translation improvements by scriptedly removing the removed colon suffix.
2019-12-29 Christian Stimming
* Minor translation improvements
2019-12-30 Daniel Dittmann
* test_gnc_setlocale: add missing whitespaces to diagnostic message
2019-12-29 John Ralls
* Bug 797536 - cmake errors out because it cannot find GncPkgConfig (cmake 3.5.2) (tag: 3.8b)
2019-12-26 Christian Stimming
* Re-apply 67b508ba: Improve translations by scriptedly removing the removed colon suffix. (tag: 3.8a)
2019-12-29 Christian Stimming
* Update recently updated translation files with gnucash.pot template
2019-12-28 John Ralls
* Release GnuCash 3.8. (tag: 3.8)
2019-12-28 John Ralls
* Bug 797532 - Crash/Coredump Lots
2019-12-28 John Ralls
* Improve bug-fix detection and reformatting in release-notes script.
2019-12-27 Christopher Lam
* [stylesheet-css] a user-customisable CSS based stylesheet
2019-12-27 John Ralls
* Latest translations from the Translation Project
2019-12-27 Geert Janssens
* Bug 797482 - Can't edit date when using Edit Payment function
2019-12-27 Geert Janssens
* Allow account selection by typing into the post-to field of the payment window
2019-12-27 Geert Janssens
* Bug 796530 - [txn csv importer] usability suggestions
2019-12-27 Geert Janssens
* Bug 796530 - [txn csv importer] usability suggestions
2019-12-27 Geert Janssens
* Bug 796530 - [txn csv importer] usability suggestions
2019-12-27 Robert Fewell
* Take account of some columns in the register having 'Tot' added.
2019-12-27 Robert Fewell
* Take account for the pop up button border in the register.
2019-12-27 Robert Fewell
* Change the date sample so it has the maximum text width possible
2019-12-27 Christopher Lam
* [new-owner-report] bugfix: balance row needs variable linked cols
2019-12-26 Christian Stimming
* Update German translation.
2019-12-26 Christian Stimming
* Improve translations by scriptedly removing the removed colon suffix.
2019-12-26 Christian Stimming
* Update all translation files with most recent gnucash.pot template
2019-12-26 Christopher Lam
* [new-owner-report] insert narrow-cell to split LHS and RHS cleanly
2019-12-26 Christopher Lam
* [new-owner-report] improve maintainability - rename vars
2019-12-24 Christopher Lam
* Bug 797521 Receivable Aging (beta): prepayments logic doesn't work, appears to use incorrect absolute value logic
2019-12-24 Christopher Lam
* [gnc-lot.h] amend description for gnc_lot_get_earliest_split
2019-12-24 Christopher Lam
* [test-owner-report] amend to test different descriptions
2019-12-18 Christopher Lam
* [new-owner-report] invoice->payments displays lot links
2019-12-23 Robert Fewell
* Change Invoice Entries in dialog-invoice.glade
2019-12-23 Geert Janssens
* Merge branch 'fix_bug_743943' of https://github.com/mauritslamers/gnucash into maint
2019-10-29 Maurits Lamers
* add { NULL, NULL } markers at the end of the arrays and remove translation markers for placeholder texts.
2019-10-28 Maurits Lamers
* I18N: Make capitalization consistent in tooltip texts
2019-10-24 Maurits Lamers
* add include to gncInvoice.h to make sure the GncInvoiceType enum is available
2019-10-24 Maurits Lamers
* Bug #743943 - "Edit->Post Invoice" is ambiguous Read invoice type and set label and tooltip texts to the translations of static definitions. Remove unnecessary list counts.
2019-12-17 Christopher Lam
* sort-and-delete-duplicates: change < function to ensure dedupe works
2019-12-16 Robert Fewell
* Move the adding of the register state file comment
2019-12-16 Robert Fewell
* Allow room for the border on the item_edit button
2019-12-16 Robert Fewell
* Bug 796736 - Register cell pop up columns width to narrow
2019-12-16 Christopher Lam
* Bug 797521 - Receivable Aging (beta): invoice->payments refined
2019-12-16 Christopher Lam
* Bug 797521 - Receivable Aging (beta): omit duplicate invoices
2019-12-15 Christopher Lam
* Bug 797521 - Receivable Aging (beta): omit duplicate invoices
2019-12-15 Christopher Lam
* Bug 797521 - Receivable Aging (beta): include earliest split
2019-12-15 Christopher Lam
* [new-owner-report] fix args to make-payment->invoices-table
2019-12-13 Christopher Lam
* [new-owner-report] use gnc-lot API for searching business links
2019-12-14 Christopher Lam
* [test-owner-report] properly test link amounts
2019-12-12 Christopher Lam
* [test-owner-report] initial tests new-owner-report
2019-12-12 Christopher Lam
* [report-utilities] bugfix: aging-list was incorrect. off-by-1 error.
2019-12-11 Christopher Lam
* [report-utilities] bugfix: overpayment works for AP accounts
2019-12-11 Robert Fewell
* Swap the buttons around on the Budget Open dialogue
2019-12-11 Robert Fewell
* Change the spacing in files gnc-plugin-page-budget.*
2019-12-11 Robert Fewell
* Change the spacing in files gnc-plugin-budget.*
2019-12-11 Robert Fewell
* Missing g_strfreev in gnc-plugin-page-report for keys value
2019-12-11 Robert Fewell
* Bug 797489 - No option to use account codes in Budget View - Part1
2019-12-10 Robert Fewell
* Bug797519 - Budget Viewer Totals do not redraw upon to Sign-Reversal changes
2019-12-10 Robert Fewell
* Make sure the same variable name is used for GncBudgetView
2019-12-10 Robert Fewell
* Change some spacing in source files gnc-budget-view.*
2019-12-11 Christopher Lam
* [report-utilities] bugfix: fix overpayment detection
2019-12-11 Christopher Lam
* [new-owner-report] bugfix: fix overpayment detection
2019-12-10 Christopher Lam
* Bug 797521 - Receivable Aging (beta): prepayments logic doesn't work, appears to use incorrect absolute value logic
2019-12-09 Christopher Lam
* Bug 797279 - Reports RTL do not support RTL
2019-12-09 Christopher Lam
* [Bug 797520] Balance Sheet (Multicolumn) the retained earnings amount in the equity section has its sign reversed
2019-11-29 Christopher Lam
* g_free() output of get_negative_color
2019-11-29 Christopher Lam
* Bug 797401 - Invoice Reports need an overall page width set
2019-10-19 Christopher Lam
* [budgets.scm] budget reports handle both natural & reversed budgets
2019-10-22 Christopher Lam
* [gnc-budget-view.c] totals - 5 fundamental types
2019-10-19 Christopher Lam
* [budgets.c] handle both natural & reversed signs budgets
2019-10-19 Christopher Lam
* [gnc-features] enable reading of unreversed budgets
2019-12-05 Christopher Lam
* Transaction.c: avoid slow g_list_nth_data
2019-12-05 Christopher Lam
* base-typemaps: avoid slow g_list_nth_data
2019-12-02 Christopher Lam
* Bug 724219 - Customer Summary includes Closing Entries when reporting across the end of year
2019-12-02 Christopher Lam
* [html-acct-table] compact gnc:html-acct-table-get-cell
2019-12-02 Christopher Lam
* [html-acct-table] compact traverse-accounts!
2019-12-02 Christopher Lam
* [report-utilities] strify hash-table to Hash(kvp-list)
2019-12-01 Christopher Lam
* [reports] avoid "<br/>" literal: use gnc:multiline-to-html-text
2019-12-01 Christopher Lam
* [new-aging] use gnc:html-markup-ol
2019-12-01 Christopher Lam
* [html-text][API] gnc:html-markup-ol, gnc:multiline-to-html-text
2019-12-01 Christopher Lam
* [business-reports] compact gnc:owner-report-text
2019-11-30 Geert Janssens
* bindings-python - drop references to gnucash-env
2019-11-30 Christopher Lam
* Merge branch 'maint' of git://github.com/andrey-legayev/gnucash into maint
2019-11-28 Christopher Lam
* [balsheet-pnl] refactor common account-balance-list adder
2019-11-28 Christopher Lam
* [balsheet-pnl] use and-let*, reindent
2019-11-28 Christopher Lam
* [balsheet-pnl] fix: single-date balsheet missed printing date
2019-11-28 Christopher Lam
* [balsheet-pnl] fix: hide Equity sections when not needed
2019-11-29 Andrey Legayev
* Remove not needed semicolons in Python bindings
2019-11-28 John Ralls
* Ignore trailing noise on imported transaction account numbers.
2019-11-26 Christopher Lam
* [balsheet-pnl] unrealized-gain calculator is now much faster.
2019-11-26 Christopher Lam
* [test-balsheet-pnl] add multicol-balsheet and multicol-pnl tests
2019-11-26 Christopher Lam
* [test-balsheet-pnl] separate balance-sheet and pnl tests
2019-11-25 Christopher Lam
* [report-utilities] can strify records
2019-11-25 Christopher Lam
* [report-utilities] make gnc:owner-splits->aging-list less noisy
2019-11-24 Christopher Lam
* [report-utilities] gnc:strify can render vectors too
2019-11-24 Christopher Lam
* [balsheet-pnl] compact functions
2019-11-24 Christopher Lam
* [balsheet-pnl] accumulate column data report-dates
2019-11-25 Frank H. Ellenberger
* Merge branch 'emacs' into maint
2019-11-25 Frank H. Ellenberger
* drop emacs_trailer from xml files.
2019-11-24 Christopher Lam
* Bug 797506 - New Aging errors out with guile backtrace in case of a few uncommon transactions
2019-11-23 Christopher Lam
* [html-style-info] deprecate font-face/size/color
2019-11-23 Christopher Lam
* [hello-world] remove 'Text Color' option - will be deprecated
2019-11-22 Christopher Lam
* [reports] use new api gnc:account-accumulate-at-dates
2019-11-22 Christopher Lam
* [report-utilities] gnc:account-accumulate-at-dates: specify default elt
2019-11-18 Robert Fewell
* [I18N] Remove trailing colon and space from source file dialogue labels
2019-11-18 Robert Fewell
* [I18N] Remove trailing colon and space from glade dialogue labels - part2
2019-11-18 Robert Fewell
* [I18N] Remove trailing colon and space from glade dialogue labels - part1
2019-11-21 Christopher Lam
* [new-owner-report] fix: payment->invoice gets invoice totals
2019-11-21 Christopher Lam
* [balsheet-pnl] speed up by pre-generating account report-date splits
2019-11-21 Christopher Lam
* [report-utilities][API] gnc:account-accumulate-at-dates
2019-11-21 Christopher Lam
* [test-report-utilities] add test-get-account-at-dates
2019-11-20 Christopher Lam
* [balsheet-pnl] income statement parent account can link to TR
2019-11-20 Christopher Lam
* [invoice][i18n] enable i18n options helptext
2019-11-19 Christopher Lam
* [stylesheet-plain][html5] omit <h3></h3> when headline is empty.
2019-11-19 Christopher Lam
* [html-fonts][html5] add html,body height 100vh
2019-11-18 Christopher Lam
* [scm/utilities] even more efficient list-flatten functions
2019-11-18 Robert Fewell
* Reformat the gnc_cell_renderer_date* source files
2019-11-18 Robert Fewell
* Fix GncPopupEntry missing property error
2019-11-18 Robert Fewell
* Bug 797492 - Lock up on 'Find Account'
2019-11-17 Christopher Lam
* Bug 797500 - valgrind errors - new/delete vs malloc/free
2019-11-15 Christopher Lam
* [html-fonts] compact and tidy functions
2019-11-15 Christopher Lam
* [test-report-html] modify test to expect DOCTYPE
2019-11-15 Christopher Lam
* [html-fonts] enforce border-color grey to td & th elements
2019-11-15 Christopher Lam
* [html-document] add <!DOCTYPE html> to reports
2019-11-14 Christopher Lam
* [trep-engine] add transaction filter exclude option
2019-11-14 Christopher Lam
* [new-owner-report] fix signs for vendor/employee reports
2019-11-12 pianoslum
* Add three missing German translations
2019-11-12 Christopher Lam
* [new-owner-report] fix: Payment links to payment split
2019-11-12 Christopher Lam
* [new-owner-report] fix: invoice->payments renders full amount
2019-11-12 Christopher Lam
* [report-utilities] fix: gnc:owner-splits->aging-list uses APAR splits
2019-11-11 Christopher Lam
* [new-owner-report] use total-number-cell for monetaries
2019-11-10 Christopher Lam
* [report-utilities] fix: overpayments in gnc:owner-splits->aging-list
2019-11-10 Christopher Lam
* [new-owner-report] fix: overpayments must show prepayment row
2019-11-10 John Ralls
* Bug 797078 - "Automatic decimal point" Should Not Cause 2 Different Behaviors
2019-11-10 Christopher Lam
* [new-aging] step 4 - prepended lists must be reversed
2019-11-10 Christopher Lam
* [new-aging] step 3 - only render APAR details if APAR-accounts>1
2019-11-10 Christopher Lam
* [new-aging] step 2 - reduce indentation level by 1
2019-11-09 Christopher Lam
* [new-aging] step 1 - split loops into processing vs building table
2019-11-09 Christopher Lam
* [new-owner-report] merge setup-query and setup-job-query
2019-11-09 Christopher Lam
* [new-owner-report] apply total-label-cell to label
2019-11-09 Christopher Lam
* [new-owner-report] modify report row->value accessor
2019-11-08 John Ralls
* Ensure all uses of g_table_index are protected from NULL return values.
2019-11-08 John Ralls
* Bug 797481 - crash on close of unsaved tabs by pressing [X]
2019-11-08 Robert Fewell
* Bug 796945 - Search dialog update - follow up
2019-11-04 Christopher Lam
* [dialog-payment] instead of tooltip, render in gtklabel
2019-11-04 Christopher Lam
* [dialog-payment] tooltip warning if payment is unattached
2019-11-04 Christopher Lam
* Addendum to UI Jump to Invoice at 535632b02
2019-11-05 John Ralls
* Bug 797086 - Import customer dialog – headers not translated
2019-11-05 John Ralls
* Fix compile error, missing return value.
2019-11-05 Christopher Lam
* [new-owner-report] job-reports reverse according to ownertype
2019-11-05 Christopher Lam
* [new-aging] restore html link to account register
2019-11-05 Christopher Lam
* [new-owner-report] fix signs for calling gnc:owner-splits->aging-list
2019-11-04 Robert Fewell
* Bug 796945 - Search dialog update
2019-11-03 Christopher Lam
* Revert "Bug 797468 - Receivable Aging report - phantom company with negative total"
2019-11-03 Christopher Lam
* Bug 787295 - Allow UI jump from Business accounts to their relevant invoice/bill/voucher
2019-11-03 Christopher Lam
* Bug 797468 - Receivable Aging report - phantom company with negative total
2019-11-03 Christopher Lam
* with-output-to-file -> call-with-output-file
2019-11-03 Christopher Lam
* [qif-guess-map] with-output-to-file -> call-with-output-file
2019-11-03 Robert Fewell
* Fix for previous commit 2ff91cf
2019-11-03 Christopher Lam
* [view-column] don't emit raw html, include captured-error
2019-11-03 Christopher Lam
* [c-interface] gnc:backtrace-if-exception returns #f if error
2019-11-02 Christopher Lam
* [hello-world] fix indenting and incorrect change
2019-11-02 Christian Stimming
* Merge pull request #597 from ingoha/purpose-encoding
2019-11-02 Christian Stimming
* Bug #797405: Fix hiding PIN entry window behind online banking log window
2019-10-30 Ingo Haschler
* Bug 797473 - UTF8 characters not processed correctly with aqbanking6
2019-11-02 Christopher Lam
* cleanup (list->vector (list ...))
2019-11-02 Christopher Lam
* [html-utilities] more deprecations
2019-11-02 Christopher Lam
* [new-owner-report] remove dependency on new-aging
2019-11-01 Christopher Lam
* [new-aging] restore display of owner address
2019-11-01 Christopher Lam
* [gncOwner] i18n gncOwnerGetTypeString types
2019-11-01 Christopher Lam
* [report-utilities] minor refinements
2019-11-01 Christopher Lam
* [report-utilities] tiny reordering to remove unnecessary reference
2019-10-31 Christopher Lam
* [html-style-sheet] compact function using ice-9 match
2019-10-28 Christopher Lam
* [stylesheets] merge easy/fancy/footer stylesheets
2019-10-30 Robert Fewell
* Change some spacing in the source files gnc-tree-model-account.*
2019-10-30 Robert Fewell
* Bug 797453 - Chart of Accounts is slow to update / redraw
2019-10-28 Christopher Lam
* [aging] update error reporting
2019-10-28 Christopher Lam
* [report-utilities] gnc:strify add lot printer
2019-10-28 Christopher Lam
* [gncOwner] add gncOwnerGetTypeString returns owner-type
2019-10-27 Christopher Lam
* [new-owner-report] combined job/owner reports
2019-10-27 Christopher Lam
* [new-aging] upgrade owner-splits->aging-list to report-utilities
2019-10-27 Christopher Lam
* [new-aging] new receivable/payable aging reports
2019-10-27 Christopher Lam
* [report-utilities] fix dangling ) in eb929fd6d
2019-10-27 Christopher Lam
* [report-utilities] gnc:strify add invoice->str, refine owner->str
2019-10-26 Christopher Lam
* [report-utilities] add owner printers
2019-10-25 Christopher Lam
* [stylesheets] homogenize easy/fancy/footer
2019-10-25 Christopher Lam
* [stylesheets] replace raw <center> with style attribute
2019-10-25 Christopher Lam
* [stylesheets] replace raw <div> for headpixmap with html-table-cell
2019-10-25 Christopher Lam
* [stylesheets] remove unnecessary N_ in option section/name
2019-10-25 Christopher Lam
* Bug 797326 - Enhancement: budget's Estimate tool should ignore Closing Entries
2019-10-24 Maurits Lamers
* exposing invoice type through a invoice window getter
2019-10-24 Maurits Lamers
* fix missing word in documentation
2019-10-22 John Ralls
* Fix test_xaccTransEqual.
2019-09-04 Christopher Lam
* Bug 797326 - Enhancement: budget's Estimate tool should ignore Closing Entries
2019-09-04 Christopher Lam
* Bug 797390 - xaccAccountRecomputeBalance also tallies no-closing balances
2019-10-23 Christopher Lam
* [standard-reports] convert to srfi-9
2019-10-23 Christopher Lam
* [balsheet-eg] remove dead code
2019-10-20 Frank H. Ellenberger
* Merge PR #594 into maint
2019-10-19 Christian Stimming
* Merge pull request #593 from stovocor/iban-error-de
2019-10-19 milotype
* Update croatian hr.po
2019-10-19 Stephan Windmüller
* Fixed German IBAN error message
2019-10-19 Frank H. Ellenberger
* [L12N] Update hr.po to POT-Creation-Date: 2019-10-19 07:26+0200
2019-10-18 milotype
* Update hr.po to POT-Creation-Date: 2019-09-26
2019-10-19 Frank H. Ellenberger
* Merge branch 'PR_#590' into maint
2019-10-19 Frank H. Ellenberger
* Fix a typo in README.dependencies
2019-10-18 Christopher Lam
* Bug 797462 - gnc:strify reports the amount and value incorrectly
2019-10-17 Geert Janssens
* Merge branch 'editable-fields-posted-invoice' of https://github.com/amishmm/gnucash into maint
2019-10-17 Geert Janssens
* Remove debugging messages that accidentally had slipped in
2019-10-17 Geert Janssens
* Correct Dutch Win32 README file
2019-10-17 avma
* Hebrew translation update
2019-10-16 Christopher Lam
* [test-budget] add budget-balance-sheet tests
2019-10-15 Christopher Lam
* [budget-balance-sheet] sanitize html string to enable sxml parsing
2019-10-15 John Ralls
* Bug 797459 - Installation (for 3.7) Readme Version number shows 2.2.x
2019-10-12 John Ralls
* Fix segfault in test-portfolios after debug build.
2019-10-11 Christopher Lam
* Bug 412151 - Not handling exception when guile is compiled w/o regexp support
2019-10-11 Christopher Lam
* [trep-engine] disable regex if no regex in guile
2019-10-12 Christopher Lam
* [html-style-info] compact gnc:html-style-table-fetch
2019-10-10 Christopher Lam
* [html-style-info] compact gnc:html-markup-style-info-set!
2019-10-12 Christopher Lam
* [html-text] compact gnc:html-text-set-style!
2019-10-10 Christopher Lam
* [html-text] dedupe gnc:html-text-render-markup-noclose
2019-10-11 Christopher Lam
* [html-table] renderer detects neg amounts for first cell-data
2019-10-10 Christopher Lam
* [html-table] dedupe & compact html-table column prepend/append
2019-10-10 Christopher Lam
* [commodity-utilities] compact gnc:pricelist-price-find-nearest
2019-10-09 Geert Janssens
* Add a note in the documentation we require guile with regex support enabled.
2019-10-09 Christopher Lam
* [average-balance] show monetaries instead of numbers in data table
2019-10-08 Christopher Lam
* [html-table] refactor and dedupe row/col modifiers
2019-10-09 Christopher Lam
* [html-table] convert to srfi-2 and-let*
2019-10-09 Christopher Lam
* [html-table] html-table-cell negative amount does not apply to <td>
2019-10-09 Christopher Lam
* [html-table] compact gnc:html-table-render
2019-10-09 Christopher Lam
* [html-table] compact gnc:html-table-append-column!
2019-10-09 Christopher Lam
* [html-table] compact gnc:html-table-prepend-row!
2019-10-09 Christopher Lam
* [html-table] compact functions, define vars in formals
2019-10-08 Christopher Lam
* [html-table] deprecate gnc:html-table-remove-last-row!
2019-10-09 Christopher Lam
* [test-report-html] add tests for html-table-cell row/col modifiers
2019-10-07 Christopher Lam
* [html-document] schemify gnc:html-document-tree-collapse
2019-10-08 Frank H. Ellenberger
* UK VAT template: replace obsolete EEC and EC by EU
2019-10-07 John Ralls
* Merge Ingo Haschler's 'opticalTAN' into maint.
2019-10-07 Christopher Lam
* Bug 759005 - Print negatives in red, bis
2019-10-07 Christopher Lam
* [budget] bug 759005 we don't need style-tag "-neg" anymore
2019-10-07 Christopher Lam
* Bug 759005 - Print negatives in red