forked from Gnucash/gnucash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
8942 lines (8126 loc) · 476 KB
/
NEWS
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
Version history:
------- -------
5.4 - 24 September 2023
The following bugs have been fixed:
Bug 728875 - Back button does not work in QIF import assistant
Bug 797507 - GnuCash Splash screen may disappear before the main window
appears
Bug 798709 - Total(Period) column does not refresh period's value after
update of the period in settings.a>
Bug 798904 - GnuCash on Windows opens a CMD window at startup.
Bug 798925 - Python bindings: "invalid unclassed pointer in cast to
'QofInstance'".
Bug 798944 - Program crashes when matching transactions
Bug 798950 - Bug Report: Incorrect Currency Conversion and Provider
Invoice Payment Recording
* When balancing lots use the split amount, not the value
* Recalculate the values using deduced exchange rates after
adjusting split amounts.
* Be conservative when recalculating values after breaking
up a split to avoid imbalances caused by rounding.
Bug 798958 - gncScrubLotLinks will infinite loop in some conditions
Bug 798982 - GetQuotes crashes if Finance::Quote returns an empty date.
Bug 798983 - Empty Orphan account appears after entering transactions in 5.3
Bug 798990 - Notes No Longer Autofills
Bug 798991 - Incorrect Account Name Order in Transaction Report
Bug 798995 - Keystrokes ignored during ledger entry
Bug 798998 - Job Report Not Working
Bug 799004 - Update of Prices attaches incorrect Date
Bug 799010 - gnc-register-account-sel-limited-option errors doesn't work
Bug 799020 - widget of gnc-register-list-option disregards user's clicks
Bug 799021 - Saved report renders default of gnc-register-list-option
Bug 799036 - Import prices from a CSV date problem
Bug 799039 - gnc:strify produces unusual results or crashes GnuCash when
fed an option from gnc-lookup-option
Bug 799048 - Hover on tab not correct
Bug 799051 - Shortcut Ctrl + Tab not working in 5.3
Bug 799054 - Stock Assist not functioning
Bug 799060 - Consistent Crash in Invoices
Bug 799068 - csv export active register not working
Bug 799069 - Multicurrency Invoice Payment
Bug 799075 - Saving display tab changes in Report Options does not work.
Bug 799084 - Unable to create new scheduled transaction
Other repairs or enhancements not marked as bugs:
[import-main-matcher.cpp] After clicking/toggling A/U+C/C checkbox,
reselect the row because it'll be much faster to use keyboard
navigation -- use up/down/left/right to target desired checkbox,
hit <down> <space> repeatedly to repeat the same action over several
consecutive rows.
Implement support for !Type:Prices records in the QIF importer.
Modernize construction of GObjects using G_DECLARE_DERIVABLE, G_DECLARE_FINAL, etc.
Fix yet more leaks.
[DBI backend] Change DBI test URLs to environment variables from cmake
configuration definitions.
Restore the Stock Transaction Assistant to full operation.
Fix the Fancy Date file property so that it saves.
Fix formatting error in po files project-id line.
[simple-business-create.py] Overwrite an existing file instead of crashing.
Update github action package versions.
Add parsing mixed number and fraction (e.g. 10 1/2) to the gnc_numeric
string constructor.
Bump minimum cmake version to 3.14 and drop some conditionals for older
versions
Major speedup in the SQLBackend by replacing C++ exceptions with
std::optional for null values.
Refresh the GUI on completion of the import matcher so that the imports
are immediately reflected in the register.
Improve online quote retrieval error reporting.
Test loading and saving XML files with and without compression
[import-main-matcher] always defer_bal_computation during import to speed
up both importing new transactions, and destroying existing ones.
GncGtkListUIItem::set_option_from_ui_item: Iterate over selected items
Instead of all possible items.
Convert gnc-ofx-import.c, import-parse.c, import-utilities.c,
import-format-dialog.c, import-account-matcher.c,
import-commodity-matcher.c, import-settings.c,
import-pending-matches.c, import-match-picker.c, import-main-matcher.c,
and gnc-pricedb.c to .cpp
By default, filter out online_wiggle in test-gnc-quotes.
Running ./bin/test-gnc-quotes from the command line will still include
online_wiggle
Replace yahoo_json with alphavantage in test-gnc-quotes. yahoo_json is too
unstable.
Include timezone in price-quote date diagnostic messages.
New and Updated Translations: Arabic, Chinese (Traditional), Croatian, Dutch,
English (Australia), English (New Zealand), English (United Kingdom),
French, German, Greek, Hebrew, Hungarian, Indonesian, Italian, Polish,
Portuguese, Portuguese (Brazil), Romanian, Slovak, Spanish, Swedish,
Ukrainian
5.3 - 26 June 2023
The following bugs have been fixed:
Bug 798967 - Cannot Save to Any Path After Upgrading to 5.2 Fix
inverted if statement condition for save success flag
Other repairs or enhancements not marked as bugs:
Some memory cleanup by Chris Lam.
Missing from the 5.2 release notes is that Chris streamlined the
transaction scrubbing so that each transaction gets scrubbed
only once. This improves--in some cases substantially--the time
to load and to run Check and Repair.
New and Updated Translations: Hungarian, Dutch, Portuguese, French, Italian
5.2 - 25 June 2023
Between 5.1 and 5.2, the following bugfixes were accomplished:
Bug 777472 - reconcile does not work if transaction selected
Check that there's no outstanding activity in the current register page
before starting a reconciliation. It is still possible to start
modifying a transaction after the reconciliation window is open but
this will stop the most common issue with the process. Starting a
reconciliation from the account tree is left unprotected.
Bug 798564 - GnuCash is slow when there are a lot of open tabs/registers
Lazily load registers as is already done with reports.
Bug 798597 - The word "Separators" needs two separate versions
Use "Character-separated" when it's a choice between that and fixed
field width and "Select Separator Character" when it's a heading.
Bug 798695 - Deleting everything from the "Transfer" cell after suggestions
pop-up restricts search to the first 30 accounts
Skip the search on an empty value and return all accounts in the combo
box as it normally does if the account list is opened without searching
for something.
Bug 798796 - Account list incomplete in report options
Allow stock/fund accounts that are descendants of Bank accounts to be
selected for the Advanced Portfolio, Investment Lots and Investment
Portfolio reports.
Bug 798809 - Multicolumn report error when reopened after saving.
Bug 798839 - Edit -> Preferences string not translatable (reopened)
Bug 798862 - Merge identical strings (reopened)
Ensure similar strings are identical and use double line view instead
of double line mode.
Bug 798879 - RFE: [Transaction Report] add Running Total option
Bug 798885 - Accented character in folder name on Account Export (reopened)
Bug 798899 - Gnucash crashes during CSV import when using a template if the
destination account is changed from one used in the template
Bug 798901 - Wrong value for very small prices from Finance::Quote.
Bug 798916 - Exchange rates fetched from openexchange off by factor of 10
Bug 798919 - Inconsistent signs in creating budget
Bug 798923 - OFX import is no longer matching security nor asking for
stock account.
Bug 798930 - invoices won't sequence to the next number
Bug 798948 - XML file corrupted by saving twice in extremely short period
Bug 798952 - Unable to set day threshold or counters in properties.
Bug 798960 - Transaction completion horizontal scrolling opens without the
new text being visible and remembers previous position/width
Bug 798966 - Uninitialised variable used in
dialog-account-picker.c:dialog_response_cb()
The following fixes and improvements were not associated with bug reports:
The type-ahead selection of transaction descriptions has been substantially
overhauled based on extensive user feedback. Matches are now only on
the beginning of words and are now sorted by age since last use. This
both substantially reduces the number of matches and prioritizes the
most recently used as being the most likely candidates for re-use. To
help distinguish cases of long descriptions where the match would be
outside the popup's viewport the viewport is automatically scrolled
horizontally so that the end of the left-most (right-most in rtl
languages) matches is centered in the view. Completion can be aborted
with the <escape> key or a new Don't autocomplete selection that's the
first entry in the popup.
Fix lockup on Windows in type-ahead selection of transaction descriptions.
More budget-module sign fixes and improvements.
Lots of memory-leak fixes, GLib modernization, and code cleanup by
Richard Cohen, Simon Arlott, & Chris Lam.
Bugfix xaccTransGetTxnType: avoid returning TXN_TYPE_LINK incorrectly:
A TXN_TYPE_PAYMENT will have non-APAR splits; a TXN_TYPE_LINK will not
have non-APAR splits. This bug manifests as a regular TXN_TYPE_PAYMENT
transaction being later voided being incorrectly changed to
TXN_TYPE_LINK.
Including brokerage fees in Money Out calculation (if not ignoring them)
in advanced-portfolio.scm report and updating the "advanced" tests to
reflect selling fees being included into the money out value.
[stock-txn-asst] Don't use the initial value in amount edit widgets unless
they're valid. Otherwise the invalid value will log an error that will
prevent later valid input from working.
Bugfix: Actions > Online Actions > Show log Window does not open when it
is first clicked.
cmake: check gdk only when building GUI
Get the tooltip working on "Online Banking Setup"
New and Updated Translations: Chinese (Simplified), Chinese (Traditional),
Croatian, English (Australia), English (New Zealand),
English (United Kingdom), Estonian, French, German, Hungarian, Lithuanian,
Marathi, Norwegian Bokmål, Polish, Portuguese, Romanian, Spanish, Swedish,
Ukrainian
5.1 - 30 April 2023
Between 5.0 and 5.1, the following bugfixes were accomplished:
Bug 765920 - Running balance not accurate when sorted different ways
Renamed option to "Account Balance" to avoid confusion with running
total. Added helper function to ensure running balance and balance
forward are only shown when transaction are grouped by account and
sorted as in register. In that case column heading remains
"Running Balance" and balance forward is shown. Otherwise column
heading is renamed "Account Balance" and balance forward is not shown.
Also added missing code for Common Currency conversion.
Bug 797879 - [Transaction Report] running balance column not consistent
with amount column for SAME transaction date
Bug 798461 - balance sheet shows positions with zero balances despite
report options
Bug 798775 - Why is General Journal called "Register" in the tabs?
Bug 798802 - Online Price quote - Stocks not working GNU 5.0 Windows Bis
Bug 798802 - Online Price quote - Stocks not working GNU 5.0 Windows
Bug 798807 - Keyboard shortcuts not working
Bug 798808 - Saved reports shown on main menu
Bug 798810 - Income Statement (multicolumn) - account sorting is 'reversed'
each time you restart.
Bug 798812 - crashes after I open a customer report and select…
Bug 798813 - Under File->Import, Missing OFX/QFX menu item
Bug 798815 - flatpak run --command=gnucash-cli cannot download quotes
since 5.0.
Bug 798821 - Crash when running report in window
Bug 798834 - CSS-based Stylesheet Help Button not working
Bug 798839 - Edit -> Preferences string not translatable
Bug 798844 - "Assign as Payment" does nothing in 4.14 & 5.0
Bug 798845 - User Config and User Data link broken
Bug 798851 - Account Balance 'include subaccounts' not saved
Bug 798854 - Softkey 'Save Config' remains dark
Bug 798862 - Merge identical strings
Bug 798863 - Crash on clicking Settings button second time
Bug 798864 - Budget Reporting on select reports are wrong
Bug 798869 - Transaction Import MAP
Bug 798872 - Reload inoperative for reports
Bug 798877 - Program crashes upon selection of CSV profile
Bug 798885 - Accented character in folder name on Account Export
Bug 798886 - [Transaction Report] Subtotal upper headings do not follow
font style of lower headings
Bug 798893 - several menu tip messages in reports are marked translatable
but unused.
Bug 798894 - TOTD with ellipsis broken.
The following fixes and improvements were not associated with bug reports:
Add filters to the File>Open dialog in File mode to show only files with
GnuCash extensions, only those matching GnuCash's backup file pattern,
or any extension.
Select the first result in the Customer/Vendor search dialog. This allows
faster keyboard navigation -- Find Customer, input search string, press
ENTER, use up/down to select desired object, press ENTER to open object.
Improve foreign currency handling in budget report
Improve handling of the blank transaction when the register is sorted in
reverse:
* Change the preference option 'Future transactions after blank
transaction'
* Change tooltip for 'Blank Transaction' in register to mention moving
to the blank transaction.
* Show the blank transaction at top of register
Prevent infinite recursion from gnucash_item_edit_focus_out when using an
input method.
Create obsolete features list with first member book_currency.
Obsolete features set in the book will be removed from the book's KVP and
ignored.
Restore existence, but not implementation, of GNC_FEATURE_BOOK_CURRENCY.
At least one user has managed to get it set on their book so even
though it was supposed to be unimplemented it got through somehow.
Restoring it allows books with it set to load.
Offer to force edit non-identical fields when multiple matches are selected
in the import matcher window. Previously, only identical
Desc/Notes/Memo were unlocked for editing.
Guard against there being no namespaces in the new security dialog
Fix Finance::Quote use on Win32 by dealing with Win32 \r\n newlines on
return from finance-quote-wrapper.
Fix some menu labels that were not marked for translation
Fix category in CSV export with simple layout.
If Trading accounts is enabled, and the transaction is a transfer
between two accounts of differing commodities, the CSV simple-layout
export would incorrectly show "--Split Transaction--" as the category.
When configuring Guile use pkg-config before searching for binaries.
New and Updated Translations: Chinese (Simplified), Croatian, English (Australia), English (New Zealand), English (United Kingdom), Estonian, French, German, Hindi, Hungarian, Japanese, Portuguese, Slovak, Spanish, Swedish, Turkish, Ukrainian
5.0 - 26 March 2023
Between 4.904 and 5.0, the following bugfixes were accomplished:
Bug 798792 - "Delete Split" missing from context menu
Bug 798793 - Cursor jumps to the end of the field.
The following fixes and improvements were not associated with bug reports:
Fix crash in gnc_owner_get_owner
[gnc-account-sel] fix entered_text leak
Fix missing statusbar tooltips for popup menus
Popup menu missing from sx template transactions window
New and Updated Translations: Chinese (Simplified), Croatian, Hungarian,
Japanese, Portuguese, Portuguese (Brazil), Spanish, Swedish
4.14 - 26 March 2023
Between 4.13 and 4.14, the following bugfixes were accomplished:
Bug 797477 - Manual foreign transaction from APAR to another doesn't
trigger price input
Bug 797725 - Untranslatable string "For Period Covering ~a to ~a"
Bug 797903 - Transaction window: The 'blue line' is always (erroneously)
topmost when t. sorting order is inverted.
Bug 798570 - Totals for the income, expenses and remaining to budget
incorrect for one specific date.
Bug 798625 - "Last up through report date" changed in 4.12
Don't adjust report dates with time64CanonicalDayTime. They're
set to 23:59:59 local which is always >= neutral time at which
prices and transactions are timestamped. Local noon is before
neutral time for all time zones east of UTC+2.
Bug 798679 - Unicode normalization should be used for comparison but not
stored.
Change to NFC normalization for all comparisons because the
Unicode meaning of compatible might collide with the user's
intent.
Bug 798702 - Crash in gnc_plugin_page_focus_idle_destroy() closing a report
before it completes.
Bug 798705 - ] New: UI string mismatch: OK vs. Next
Bug 798712 - Regional Decimal Point not recognized in budgets
Bug 798717 - Reports > Business > Fancy Invoice duplicates company details
Bug 798732 - : Type of balance carry forward accounts for german skr49
account template fixed
Bug 798734 - Aging Reports don't handle mixed currency payments and
invoices without Trading Accounts
Bug 798737 - Minor grammatical error - 'for' missing in 'You will be asked
a conversion rate for each.'
Bug 798740 - Build fails with gcc 13
Bug 798747 - Crash in Investment Portfolio report
Bug 798748 - Transaction Notes field's value does not appear in reverse
transaction.
Bug 798754 - Build fails with gcc 13 and glib > 2.76
Bug 798759 - Register widths for 'with sub-account' not saved
Bug 798765 - Increase the limit for Maximum Slices in the Expense Piechart
The following fixes and improvements were not associated with bug reports:
Budget totals for one period would be wrong when increasing the number of
periods.
Allow C decls after statements, legal since C99.
[kvp] Use static strings and boxed in gvalue_from_kvp_value. Saves
allocating and copying complex values, avoiding potential memory leaks.
L10N:DE:Updating accounts from 0001 to 8000 DATEV-SKR04 2022-01-01.
Payment dialog - always list all possible post accounts. Before only the
post account in the currency of the selected vendor or customer was
available.
Revisit invoice payment in multi-currency context:
* Show proper amount in dialog when applying or editing an existing
transaction as payment
user chose a new transfer account and the old currency is neither the
new transfer account's currency nor the post account's currency)
Edit/assign payment - be more prudent not to lose data
We can't handle the case where a transaction has splits in more than one
APAR account. Instead of only warning that some of them will be lost
refuse to continue and leave it to the user to fix the transaction
first.
Multi-currency - show split amount rather than transaction value
Activate feature GNC_FEATURE_EQUITY_TYPE_OPENING_BALANCE
[balsheet-pnl] move out of experimental into regular menu. After 4 years it
can finally graduate.
[dialog-sx-editor]Allow a daily SX to show all recurrences in the calendar
instead of only 6 months.
Update Form/Schedule line references for 2022 for the US Income Tax Report
New and Updated Translations: Chinese (Simplified), Croatian, Czech,
English (Australia), English (New Zealand), English (United Kingdom),
French, Hebrew, Hungarian, Italian, Japanese, Macedonian, Polish,
Portuguese, Portuguese (Brazil), Russian, Spanish, Swedish, Ukrainian
4.904 - 19 March 2023
Between 4.903 and 4.904, the following bugfixes were accomplished:
The following fix will also appear in GnuCash 4.14:
Bug 798570 - Budget totals for income, expenses and remaining to budget
incorrect for one specific date.
The following fixes are in 4.904 only and will not appear in GnuCash 4.14:
Bug 798558 - Irregular line spacing in Account Tree View
Bug 798773 - Help file launches in browser when using command-H to hide
GnuCash
This is a MacOS-only problem. Note that for the fix to have
effect you must remove the file accelerator-map from
GNC_CONFIG_HOME when GnuCash isn't running.
Bug 798778 - GnuCash quits abruptly when attempting to edit options for
certain reports.
Bug 798781 - Printing multiple checks prints duplicate checks
Bug 798787 - gnc-register-owner-option currently broken
The following fixes and improvements were not associated with bug reports:
Fix quotes codecvt to wchar_t error on Windows.
Budget totals for one period would be wrong when increasing the number of
periods.
Change the handling of accelerator maps. Gtk no longer supports changing
these from the menus and the save no longer writes out the accelerators
that have their default values, so to assist users editing them we have
generated default ones that we include with GnuCash and have disabled
saving when quitting GnuCash. At startup GnuCash will check for the
presence of the file accelerator-map in GNC_CONFIG_HOME and if it's
not found will copy in the default one.
Properly parse plus signs while importing numbers in a CSV file.
Fix CSV price import file loading
CsvImport - actually do as the warning indicates: If an invalid column is
found in a preset, replace it with a NONE column, rather than not
inserting a column at all.
New and Updated Translations: Chinese (Simplified), Croatian, Hungarian,
Japanese, Portuguese, Portuguese (Brazil), Spanish, Swedish
4.903 - 12 March 2023
Between 4.902 and 4.903, the following bugfixes were accomplished:
The following fix will also appear in GnuCash 4.14:
Bug 798765 - Increase the limit for Maximum Slices in the Expense Piechart
The following fixes and improvements were not associated with bug reports:
Add JSON::Parse to gnc-fq-update.
Guard against some possible null pointer dereferences
Change the reconcile window toolbar icon for 'Other the Account' to
'gnc-jumpto'
Change toolbar 'Blank' icon for invoice page to match register
Change the short cut from CTRL+Page_Down to CTRL+b and change the toolbar
icon to 'go-jump'.
Remove -Wno-pointer-sign, adding the necessary casts in gnc-gwen-guic.c
Remove -Wno-error=parentheses, added for gcc 8.0 and gtk 3.14
Remove redundant uses of cmake -E env
[c++options] Save an empty SCM string for nil or empty option values.
Avoids crash at reload due to unknown variable.
[c++options]Really fix the gnc_option_db_lookup_string_value leak
New and Updated Translations: Chinese (Simplified), Croatian,
English (Australia), English (New Zealand), English (United Kingdom),
Hungarian, Macedonian, Polish, Portuguese, Russian, Ukrainian
4.902 - 5 March 2023
Between 4.901 and 4.902, the following bugfixes were accomplished:
The following fixes will also appear in GnuCash 4.14:
Bug 798748 - Transaction Notes field's value does not appear in reverse
transaction.
Bug 798754 - Build fails with gcc 13 and glib > 2.76
Bug 798759 - Register widths for 'with sub-account' not saved
Bug 798600 - CSV import of multi-split security transactions fails to load
capital gain. Transactions with capital gains processing can
have splits in transaction currency with a zero amount and a
non-zero value. To properly import those, prefer the value
column even if transaction currency equals account commodity.
Previous (wrong) assumption was that in case of a
same-currency split, the amount would always be the value.
Update csv transaction export format to include split values.
In the csv importer the 'GnuCash Export Format' option will
now include values. For compatibility with filex exported from
older gnucash versions the previous preset is still available
under the name 'GnuCash Export Format (4.x and older)'.
The following additional bug fixes are in unstable only:
Bug 782141 - Import CSV - Multi-currency support can cause rounding errors
Replace the column types 'Deposit' and 'Withdrawal' with
'Amount' and 'Amount (Negated)' that are conceptually
applicable more widely. Also introduce column types 'Value'
and 'Value (Negated)' to allow construction of splits in
commodities different from the transaction currency. While
Value is the number in the transaction currency, always use
'Amount' in single-currency transactions.
Bug 793306 - Price is not imported from CSV
Bug 796955 - Import CSV - Single-line two-currency transactions can't be
imported
Bug 797033 - The CSV Importer should not obey with the "automatic digital
point" setting
Bug 797383 - Import transaction via CSV selects the commodity as a currency,
results in an invalid transaction that is uneditable, and a
corrupted price database. Change the transaction currency to
the from or base account's parent account currency if the from
or base account is not denominated in a currency. This allows
to import stock transactions directly into the stock account.
Bug 797903 - Transaction window: The 'blue line' is always (erroneously) topmost when t. sorting order is inverted.
Bug 798334 - Importing transactions from CSV with space as thousand separator
Bug 798572 - Parse numbers with two minus signs as a positive numbers
Bug 798691 - Memo field not updated on CSV import using U+C
Bug 798732 - : Type of balance carry forward accounts for german skr49
account template fixed.
The accounts listed are of the EQUITY type and not ASSET.
Bug 798749 - Fails to read gsettings on startup
Bug 798753 - UX improvements in new import dialog
Bug 798763 - "Manage Document Link" keyboard shortcut is missing
The following fixes and improvements were not associated with bug reports:
Always use the Company Name from book options in reports, removing the
Company Name report option.
Fix the register sheet being insensitive when in reverse order
Allow C decls after statements. Legal since C99.
Make the scheme tests fail immediately if they load an external gnucash
file.
[c++options] Restore the ability to set plot sizes in pixels.
[c++ options] Restore forward & backward compatibility, fix crash.
CsvTokenizer - add additional test case for escaped quotes
It simulates the case where csv fields are fully quoted and an
escaped quote ("") is found in some field. This case is handled
correctly, adding the test to guard this in potential future
modifications.
[dialog-employee] toggle sensitivity instead of visibility of GncAccountSel
[eguile-utilities.scm] remove fmtnumber. deprecated in maint.
Sort the gnc tree view column menu
Delete action on account page not disabled on edits.
L10N:DE:Updating accounts from 0001 to 8000 DATEV-SKR04 2022-01-01
GSettings migration: Ensure that the current version is set on a new
GnuCash installation and that migrations applicable to versions of
GnuCash later than the current one do not run.
Turn on -Wunused
Rename Hellow World report to Sample Report.
Generic Importer - allow user to modify exchange rates for unbalanced
transactions.
Make logging accessible from python modules
Allow C declarations after statements
Good for declaring variables at point of use
New and Updated Translations: Czech, Hungarian
4.901 - 5 February 2023
Between 4.900 and 4.901, the following bugfixes were accomplished:
The following fixes will also appear in GnuCash 4.14:
Bug 797477 - Manual foreign transaction from APAR to another doesn't
trigger price input
Bug 797725 - Untranslatable string "For Period Covering ~a to ~a"
Bug 798734 - Aging Reports don't handle mixed currency payments and
invoices without Trading Accounts
Bug 798737 - Minor grammatical error - 'for' missing in 'You will be asked
a conversion rate for each.'
Bug 798740 - Build fails with gcc 13
Bug 798747 - Crash in Investment Portfolio report.
The following additional bug fixes are in unstable only:
Bug 753307 - Custom Report be selectable as default Report for Printing
Change the preference in Business->'Report for Printing' to be saved as
a book property and allow the selection of any Invoice Report to be
used as the default.
Bug 794028 - CSV import, default to matching full account name
If the account map doesn't yield a result, try to map the import
string against existing accounts' full names
Bug 796955 - Import CSV - Single-line two-currency transactions can't be
imported
Use a provided price if the transfer account uses a different commodity
from the base account's; apply it as
transfer amount = base amount * price.
Add a transfer amount column option to avoid the rounding that might
arise from having an inexact price.
Bug 797756 - Currency format setting is ignored
Bug 798292 - csv Import Transactions Ignores Multi-Splits
Bug 798475 - GNCAccountSel could have shortcuts
Bug 798730 - Open report doesn't remember selected accounts over restart
Bug 798739 - Advanced Portfolio report fails
The following fixes and improvements were not associated with bug reports:
Move the Balance Sheet P&L Report out of experimental into regular menu.
Rename the Deposit and Withdrawal column labels in the CSV import assistant
to Amount and Amount(Negated) for clarity when importing into something
other than a bank account.
Improve muti-currency invoice payment:
* Show proper amount in dialog when applying or editing an existing
transaction as payment.
* Be more careful not to waste the existing payment split
* If the user changed the payment amount while starting from an
existing transaction unreconcile the changed payment split
* Avoid needlessly changing transaction currency (only do so if the
user chose a new transfer account and the old currency is neither
the new transfer account's currency nor the post account's currency)
Payment dialog - always list all possible post accounts instead of
only those in the currency of the selected vendor or customer
* Refuse to continue when a transaction has splits in more than one
AP/AR account to avoid losing data.
Add widget names to import dialogs so they can be manipulated with css
Fix some memory leaks
Ensure original splits are freed in xaccTransRollbackEdit
Add ability to show placeholder and hidden accounts in the GNCAccountSel
widget to hide placeholder and hidden accounts. By default these
accounts are hidden, but with the use of a secondary icon a popup menu
is presented where the list can be configured to show them. Also when
the GNCAccountSel is set to a specific account with with
gnc_account_sel_set_account, the placeholder and hidden properties are
checked and appropriate changes made so the account will be visible.
Activate feature GNC_FEATURE_EQUITY_TYPE_OPENING_BALANCE
Wrap function decls in extern "C" in all headers so that they can be
included without wrapping the include statements.
New and Updated Translations: French, Hebrew, Hungarian, Italian,
Russian, Ukrainian
4.900 - 8 January 2023
New Features
A new Stock Transaction Assistant to guide you through entering
most investment transactions for stocks, bonds, and mutual
funds. You can access it from Actions>Stock Assistant when you
have the Accounts page ora Stock or Fund account register open.
A new Investment Lots report showing a graph of capital gains and
losses in a period by investment lot. Note that if you don't
use the View Lots dialog to manage capital gains and losses
this report won't have anything to show you. Use
Reports>Assets & Liabilities>Investment Lots to see the
report.
A new tab on the New/Edit Account dialog called More Properties
includes entries to set a high and low limit on an
account. That's coupled to a new column that's available on
the Accounts Page, Balance Limit. If you set a high or low
limit and the account balance falls above or below the
respective limit an indicator will be shown in the Balance
Limit column.
The description field quickfill in the register now displays a
drop-down list of possible completions instead of just one
inline completion.
File import menu items for the MT940, MT942, and DTAUS formats is
replaced with a single Import from AQBanking that supports
importing any file format supported by AQBanking, including
the frequently requested CAMT.
Between 4.13 and 4.900, the following bugfixes were accomplished:
The following fixes will also appear in GnuCash 4.14:
Bug 798588 - sx scrubbing was using incorrect free function
Bug 798625 - "Last up through report date" changed in 4.12
Bug 798679 - Unicode normalization should be used for comparison but
not stored.
Bug 798702 - Crash in gnc_plugin_page_focus_idle_destroy() closing a
report before it completes.
Bug 798705 - New: UI string mismatch: OK vs. Next
Bug 798717 - Reports > Business > Fancy Invoice duplicates company details
The following additional bug fixes are in unstable only:
Bug 403979 - Balance column shows only low order digits when too narrow
If the column is too narrow to display the whole number it
will display the leading digits with an ellipsis (…).
Bug 769256 - Change New Account Dialog
Rearrange the New and Edit Account dialog to move the
parent selector under the description field followed by the
account type as a combo (i.e. drop down) list.
The following fixes and improvements were not associated with bug reports:
Unicode normalization for string matches is changed from NFKC to
NFC. This means that font and positional variants will no
longer match and is unlikely to affect most users. See Unicode
Normalization Forms:Canonical and Compatibility Equivalence
for the technical details.
The Gtk menu structure has been rewritten to use the newer
GMenu/GMenuModel system. This change is mostly invisible to
users, except that to keep menu accelerators (like <cmd>Q to
quit) working on macOS we had to let macOS handle the
events. That will affect using cut, copy, and paste in dialog
boxes because the menu will intercept them. That's temporary,
we hope to have it fixed for GnuCash 4.901.
The Finance::Quote interface is rewritten in C++. This new design
will allow much better capture of diagnostics from
Finance::Quote making troubleshooting problems much easier.
The perl Finance::Quote utilities gnc-fq-check, gnc-fq-dump, and
gnc-fq-helper are removed and new commands added to
gnucash-cli: --quotes info replaces gnc-fq-check and --quotes
dump replaces gnc-fq-dump.
New API: The options system has been rewritten in C++ with Scheme
wrappers for report options. While this is invisible to most
users, those who have written custom reports should look for
deprecation warnings when the custom reports are
reconciled. The main difference is that option creation and
registration is now done in a single function call. Note that
gnc:new-options is now gnc-new-options. There are several
similar changes. All of these are wrapped in
bindings/guile/options.scm with the old names, but are marked
to raise deprecation warnings to encourage you to change. The
wrappers will be removed in GnuCash 6.0.
Deprecations: See the deprecation warnings in options.scm as noted above.
New and Updated Translations: Chinese (Simplified), Croatian, Hungarian,
Polish, Portuguese (Brazil)
4.13 - 18 December 2022
Between 4.12 and 4.13, the following bugfixes were accomplished:
Bug 760274 - The Statusbar "forgets" when register doesn't have focus
Bug 798545 - Crash when updating document link on vendor bill
Bug 798614 - Croatia to join the Euro
Bug 798629 - gnucash crashes attempting to import OFX file
Bug 798633 - 4.12 build failure on 32-bit Linux: "No code for module"
Bug 798640 - Segfault when running saved report
Bug 798649 - Crash when closing Edit Style Sheets dialog while Style Sheet
Properties dialog is still open.
Bug 798653 - Schedule Calendar event description pop up window does not
track mouse position
Bug 798657 - Import Summary language is wrong
Bug 798664 - Result of 'gnucash --nofile' is marked dirty
Bug 798669 - Multicolumn Balance Sheet not printing exchange rates
include equity accounts in the exchange rate commodities list.
Bug 798672 - Preferences are not saved nor loaded,
ERROR <GLib-GIO> g_settings_new_full: assertion
'schema != NULL' failed
Bug 798680 - Not able to match a reverse transaction of a previously
matched transaction.
Bug 798681 - Previously imported investment income transactions may not
be filtered.
Bug 798694 - Cursor in the wrong place after pasting with auto-completion
The following fixes and improvements were not associated with bug reports:
Don't normalize text when pasting from the clipboard or appending
descriptions or notes during imports.
[register] Delay post-ime reset of the selection to works around bug 798587.
[ofx import] Clean up importing investment transactions for smoother
workflow and better UI behavior.
[account-piecharts] drill-down piechart: tree-depth is at most 6
Fix numerous memory leaks.
[ifrs-report] From Bug 798004 allow Cr cash to offset Dr fee and remove
invalid "dividend reinvestment" during short.
[gtest-qofevent.cpp] Add comprehensive tests for qofevent
[test-qofbook] Test that gnc_features_test_unknown returns a suitable
error message
[test-qofbook.c] add test for gnc_features_set_unused
[gnc-features.cpp] backport gnc_features_set_unused from master
[qofbook.cpp] backport qof_book_unset_feature from master
Move gnc-euro.[ch] to engine and unit test it.
[test-qofbook] basic features test: Sets a feature and tests it's set.
It's impossible to design a book with unknown features using the API.
po/README: Remove relics from ancient context forms
[test-ifrs-cost-basis] amend tests to accommodate extra column.
[ifrs-cost-basis] compare register vs calculated capgain per transaction.
Accomodate WebKit package version update to webkit2gtk-4.1.
[assistant-stock-transaction] input positive capgains for Credit income account.
New API: None.
Deprecations:
qof_book_get_features
New and Updated Translations: Chinese (Simplified), Croatian, English
(Australia), English (New Zealand), English (United Kingdom), French,
Hungarian, Indonesian, Japanese, Korean, Macedonian, Polish, Spanish,
Urdu
4.12 - 25 September 2022
Between 4.11 and 4.12, the following bugfixes were accomplished:
Bug 794584 - Register not updated when scheduled transactions created
Bug 798262 - Scheduled transactions with blank amounts do not get created.
Bug 798385 - Description to often only
"Landesbank Hessen-Thuringen Girozentrale"
Prepend the Ulitimate Creditor or Ultimate Debtor to the
transaction description.
Bug 798565 - Import map editor: deletion of a map does not mark gnucash
document as dirty
Bug 798573 - Tab Width Behaviour
Formerly when the notebook tabs on the left or right,
the space used fluctuated depending on tab label
width. This change sets the label width to the
preference setting when the tabs are on the left or
right but when top or bottom the width is set to the
number of characters when shorter than the preference
setting so they take up less room.
Bug 798578 - MT940 imports broken - all transactions have date of first
transaction
Bug 798585 - segfault running sample script simple_business_create.py.
Bug 798588 - sx scrubbing was using incorrect free function
Bug 798590 - Transaction report: wrong type argument in position 1
Bug 798598 - Selecting a line in a Vendor Credit Note changes display of
Subtotal cell to 0.00
Bug 798611 - Date changing when changing timezone by one hour
When getting a date from the date editor anywhere in
the program set the time to neutral time instead of
the beginning of the day unless get_date_internal is
called with GNC_DATE_EDIT_SHOW_TIME in which case the
user-provided time is used.
Bug 798616 - Can't register amount greater than 9,000,000,000
Because when loading the value the split in the xml
backend doesn't yet have a parent so the code tried
to convert to GNC_COMMODITY_MAX_FRACTION and if the
numerator was larger than 10^10 that would
overflow. To fix it this changes the "don't know"
response in get_currency_denom and
get_commodity_denom to GNC_DENOM_AUTO which will
normally leave the denominator alone.
The following fixes and improvements were not associated with bug reports:
It is now possible to edit the description, notes, and memo fields of
new transactions in the import matcher and to do so for multiple
transactions. The option is accessed via a context menu on selected
import lines.
Show GnuCash's installation and configuration configuration paths in the
About dialog. List the same from the command line with a --paths option.
Add account hierarchy templates for locale es_AR
Continued work on the Stock Transaction Assistant. If you want to try out
this new way of recording your investment transactions start GnuCash
with the --extra option. The stock assistant is available on the
toolbar and from the Actions menu when a register for a STOCK or FUND
account is focused.
Replace the very obsolete ghelp: URI scheme with help and install the
documentation according to the XDG documentation spec on non-Mac Linux
systems. This ensures that the Help menu documentation items work with
Gnome 42 and later.
Conforming to the XDG documentation spec, rename the root page of the Help
manual to index from help. This has the happy side effect of removing
some special-case code from the macOS documentation links.
Standardize the top-level Equity and Assets account names in the French
templates to "Capitaux propres" and "Actif" respectively.
[gnc-ab-utils] concise string accumulator
[gnc-glib-utils] gnc_g_list_stringjoin skips NULL data
[ifrs-cost-basis] identify sale/purchase according to truth table instead
of via flawed heuristics
[ifrs-cost-basis] add options used as a report footer
[lot-viewer] Show Open & Close dates only when they have a value.
Fix use-after-free crash in gnc_set_busy_cursor.
Create Swiss SMB account chart acctchrt_pme-19.gnucash-xea.
[date-utilities] avoid report crash if start > end date
[html-chart] add percent formatter for numbers for older javascript.
[trial-balance] set default price-source to average-cost to minimise
complaints (see Bug 798550)
Use macos-latest github runner for mac tests.
[dialog-price] Price Database: Insert help buttons
Disable transaction type (i.e. Bill or Invoice) in Invoice/Bill Registers,
determining the type by inspecting the money flow.
Fix python tests dependencies so that ninja check works from a clean build
directory with Python enabled.
Review of account templates C—missing placeholders, redundancies
Fixed a variety of fixed memory leaks, poor list handling, and dangling
reference errors.
New API:
gnc_tm_get_today_neutral to complement gnc_tm_get_today_begin and
gnc_tm_get_today_end.
gnc_get_dialog_widget_from_id
gnc_list_all_paths
Deprecations: None.
New and Updated Translations: Basque, Chinese (Simplified), Croatian,
Dutch, English (Australia), English (New Zealand), English (United
Kingdom), French, German, Hebrew, Hungarian, Indonesian, Italian,
Korean, Marathi, Polish, Portuguese, Portuguese (Brazil), Russian,
Swedish, Ukrainian
4.11 - 26 June 2022
Between 4.10 and 4.11, the following bugfixes were accomplished:
Bug 797163 - qof_book_get_option segfaults when retrieving a non-leaf frame
Bug 798053 - Accounts renumeration (renumbering)
Bug 798471 - Can't see or select Income or Expense accounts in Income Tax
Information GUI
Bug 798483 - GnuCash Crashing With SIGSEGV During QFX Import Transaction
Matching
Bug 798491 - MT940 of day 28.02.2022 ends in transactiondate 01.01.1970
Bug 798493 - Invoice Report Quantity & Unit Price fields have limited
decimal precision on printed invoices
Bug 798496 - gncEntry Quantity and Discount are misusing commodity scu
Bug 798499 - Expense Chart data tables include extra columns of data
Bug 798500 - FTBFS (tests failure) on armhf
Bug 798501 - Balance wrong date end of period
Bug 798531 - Selecting "Print" from the file menu on a report crashes
gnucash
Bug 798533 - Crash when importing quicken @ currency
Bug 798535 - Crash when increasing the number of periods in a budget
Bug 798547 - Calculated Due Date is short 1 day when posting on day of fall
change from Daylight Time to Standard Time.
The following fixes and improvements were not associated with bug reports:
Partially fix Bug 771095 by inserting a help button in the Since-Last-Run dialog.
Lock down GITHUB_TOKEN permissions on workflows.
[g_option_context_get_help() returns a char* which must be freed.
[assistant-stock-transaction] dividends must include stock account.
Fix arch linux CI build failures.
Add a help button to the financial calculator dialog.
[assistant-stock-transaction] avoid resetting txn_types unnecessarily.
[assistant-stock-transaction] reorder of Pages - date before type.
[import matcher] Only append description if there's something to append to.
Otherwise just set the new string.
[balsheet-pnl] test "lvl <= depth-limit" outside add-indented-row
this will be the first step trying to fix bug 798502. the bug likely
resides in the (if) conditional in (add-account-row).
[gnc-main-window] page->window is not main_window, skip warning.
This function gets called for both regular register *and* the embedded
register in the SX template editor. The latter is not a main_window,
and launching the SX editor would lead to warnings.
[gnc-plugin-page-register] if account==NULL, skip AccountIsPriced because
gnc_plugin_page_register_ui_initial_state may be called for non-account
registers (eg the sx editor) and account may be null.
[gnc-account-sel.c] prepend & reverse while building acct list
and don't use confusing double pointer
Fix use-after-free in unable to save database dialog.
[account.cpp] restore breadth-first search for 2 functions
gnc_account_lookup_by_name and gnc_account_lookup_by_code were
searching breadth-first and accidentally changed to depth-first in 4.7.
[reports] use new function names
[account.cpp] gnc_accounts_and_all_descendants converted from scm
[CI]Work around new git security measure.
[balsheet-pnl] faster definition of balance lists
[gnc-numeric.cpp] Reduce logging level of gnc_numeric exception message
because exceptions are expected in some use cases.
Redo icon handling in cmake
Using globs for file copying prevents cmake from discovering newly added
icons. Writing rules that explicitly use lists of icons will fix this
as a new icon in the sources will have to be added to the list and will
force reparsing by cmake. We have to maintain the lists anyway for our
dist target so there's actually no extra work involved for the devs.
[assistant-stock-transaction] better Dr/Cr imbalance error message
New API:
gnc:accounts-and-all-descendants-sorted
gnc-accounts-and-all-descendantsNone
Deprecations:
gnc:account-path-less-p
gnc:accounts-and-all-descendants
New and Updated Translations: Arabic, Chinese (Simplified), Croatian,
English (Australia), English (New Zealand), English (United Kingdom), French,
German, Hebrew, Hindi, Hungarian, Italian, Korean, Nepali, Norwegian Bokmål,
Polish, Portuguese (Brazil), Russian, Spanish, Swedish, Ukrainian
4.10 - 27 March 2022
The eleventh release of the 4.x Stable Series
Between 4.9 and 4.10, the following bugfixes were accomplished:
Bug 684507 - commodity namespace should be localized
Bug 741674 - Newly created Scheduled Transactions appear in existing search windows
Bug 797501 - Currency symbols in Hebrew (RTL) language
Bug 797772 - Allow reconciliation report to double filter by both posting and reconciliation date
Bug 798164 - Import transaction window does not allow changing the transaction description.
Bug 798272 - up/down arrow keys do not work in account selection pop-up
Bug 798375 - Transfer Account Selection not editable after typing error
Bug 798386 - Cannot increment date by 1 day with Japanese keyboard.Allow ';' to increment the date because on those keyboards + is shift-;.
Bug 798391 -OFX import routine keeps prompting for accepted (and reconciled) transactions when imported again
Bug 797610 - Scrolling is too fast to follow
Bug 798392 - Reports do not display when Reports JavaScript dependencies are located at a filepath that includes special characters like hash ("#")
Bug 798395 - ofxdirectconnect downloads crash gnucash 4.9
Bug 798408 - The calculation in budgets UI and reports are wrong.
Bug 798411 - Untranslated/Unused string [pt only]
Bug 798415 - Due Bills Reminder Dialog - Right align 'amount'This was a right-to-left language (e.g. Hebrew) problem.
Bug 798435 - Crash on print after printing checks
Bug 798438 - on reconcile window, click on the last column 'R' does not order the entries according with the status
Bug 798448 - Column 'num' cannot be null
Bug 798458 - Build failure with gcc 12
Bug 798474 - Windows 10: Mouse scroll wheel on register only scrolls 1 pixel at a time (instead of 1 line at a time)
The following fixes and improvements were not associated with bug reports:
Added a BETA Stock Transaction Assistant to help create a variety of securities transactions. To try it out start GnuCash with the --extra option, open a stock-type register, and select Actions>Stock Assistant. Please note any issues on Bug 798004.
Remove the hard-coded default namespaces"AMEX", "NASDAQ", "NYSE", "EUREX", and "FUND" from the New Security dialog. These namespaces were added to the list of existing namespaces; it was necessary to create a commodity that used one of them to make that one an actual namespace, so users who have commodities in e.g. the namespace NYSE will still see that namespace in the selection list. Reasoning: The list was necessarily incomplete and confused new users.
Fixed the Income Statement report table formating so that all sections get laid out to the same width.
[Python Bindings]Implement some comparison and arithmetic operators for GncNumeric
Budgets are sensitive to readonly status
Disable some budget features if book is readonly
Fix suppression of "cut split/transaction" warnings for the current session
These were not working because they were missing from the temporary warnings settings schema. The warnings could only be dismissed permanently. Add them to the temporary warnings section of the settings schema.
Currencies in several locations not displayed correctly for Hebrew
[category-barchart] Added option to show ratios
[html-chart] Add format style option for numbers
Better wording for tax table changed info message.
[register] Checkbox any value other than 0x20 (ASCII space) is true.
Because it can be X or U+2716 now and could be something else in future. Fixes in particular the disappearing tax-included and tax-table in the Invoice/Bill entry register.
[gnc-budget-view.c] modify GList in reverse
because the GList modification in gnc_budget_view_refresh works on the tail end (see g_list_last being chopped off successively, followed by g_list_append successively), wherease it's much faster to work on the head end. Therefore: reverse, modify, and re-reverse.
[Python Bindings]Provide the complete set of QOF enums in gnucash
[Pyton Bindings]Provide wrapper for qof numeric predicate
Python bindings already have some wrapping objects for qof predicates. This adds the one missing for GncNumeric comparisons. Additionally fixes a wrong number for QOF_NUMERIC_MATCH_ANY in example file.
Remove commodity-table.scm, no longer required after adjusting qif-dialog-utils
Preferences, Import: UPDATE AND RECONCILE should be UPDATE AND CLEAR
on preference "Enable update match action" tooltip text.
[register] Enable horizontal scrolling with a touchpad.
[business]Add diagnostic messages to GncEntry and GncInvoice.
Replace code style guidance with reference to the wiki Coding Standard page.
Update Form/Schedule line references for 2021 for the US Income Tax Report
Update the register help label when cell read only
Change AR/AP Type cell to be read only
The Type cell in AR/AP registers should not be changeable from the register so make the cell read only.
Tip-of-the-Day, new tip: the full file path is shown in the status bar.
[assistant-qif-import] Prevent ambiguous mnemonic
Mnemonic N clashes with GtkAssistant "Next". Change to D which does not clash.
Numerous performance and code-clarity improvements.
New API: None