Skip to content

Commit 654b6f7

Browse files
committed
Release GnuCash 5.9
1 parent 1fe5723 commit 654b6f7

File tree

2 files changed

+66
-12
lines changed

2 files changed

+66
-12
lines changed

CMakeLists.txt

+6-3
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,17 @@ cmake_minimum_required (VERSION 3.14.5)
66
if (POLICY CMP0094)
77
cmake_policy(SET CMP0094 NEW)
88
endif()
9-
# CMake 3.30+ Use Boost's builtin BoostConfig.cmake instead of FindBoost, the latter of which is removed. Stting this policy to OLD temporarily restores it. BoostConfig.cmake was introduced in Boost 1.70.
10-
# A fair number of distros are still shipping Boost 1.69 in "legacy" versions so make it OLD for the 5.x series and NEW for 6.x.
9+
# CMake 3.30+ Use Boost's builtin BoostConfig.cmake instead of
10+
# FindBoost, the latter of which is removed. Setting this policy to OLD
11+
# temporarily restores it. BoostConfig.cmake was introduced in Boost
12+
# 1.70. A fair number of distros are still shipping Boost 1.69 in
13+
# "legacy" versions so make it OLD for the 5.x series and NEW for 6.x.
1114
if (POLICY CMP0167)
1215
cmake_policy(SET CMP0167 OLD)
1316
endif()
1417

1518
project (gnucash
16-
VERSION 5.8
19+
VERSION 5.9
1720
)
1821

1922
enable_testing()

NEWS

+60-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,53 @@
11
Version history:
22
------- -------
3+
5.9 - 29 September 2024
4+
The following bugs have been fixed:
5+
Bug 724745 - Added new transaction during reconcile, didn't show up in
6+
reconcile window.
7+
Bug 797045 - Improve error reporting for bad credentials with MySQL backend
8+
("bad or corrupt data" => "access denied")
9+
Bug 798568 - Transaction Copy/Paste problem
10+
Bug 799308 - sqlite backend: Example Python script prints error when
11+
creating new file.
12+
Bug 799370 - Transaction Journal view cursor placement after commit to
13+
transaction change.
14+
Bug 799384 - Reconciled date cannot be parsed.
15+
Bug 799389 - Crash when removing an account
16+
Bug 799391 - Transaction Cut/Paste doesn't move the transaction to the
17+
target account
18+
Bug 799395 - relative date offset quarters occasionally wrong
19+
Bug 799399 - Windows Keypad decimal locale error
20+
Bug 799416 - Post invoice: post to account dropdown listbox too small
21+
Bug 799419 - Intermittent quote price issue
22+
23+
Other repairs or enhancements not marked as bugs:
24+
25+
Add YH Finance (FINANCEAPI) API Key to Quotes infrastructure with a
26+
preference in the Online Quotes page and add financeapi to known
27+
sources.
28+
Move copied_class and copied_leader_guid
29+
Move static copied_class and static copied_leader_guid to be part of the
30+
copied_item structure. This makes it more evident that calling
31+
clear_copied_item needs to be called before copied_item is used.
32+
[gnc-datetime] improve CSV date parser with ICU and Boost.
33+
1. Add dateformat "Locale" with ICU; uses current locale for date
34+
parsing. ICU's locale date parser may parse "3 May 2023" or
35+
"2024年9月13日" (LC_TIME=zh_TW.utf8) and maybe others.
36+
2. Augment d-m-y m-d-y and y-m-d with boost UK/US/ISO parsers. This
37+
allows CSV import of dates with months as words as "30 Sep 2023"
38+
or "May 4, 1978" or "2023-Dec-25". Note boost parser cannot
39+
recognise 2-digit years, therefore "30 Sep 24" is invalid.
40+
Csv Import - improve assisant's introduction page
41+
Correctly handle uncommitted edits when opening a file from history.
42+
Don't use gnc_difftime and deprecate it because it casts time64 to doubles
43+
[gnc-pricedb.h] remove unused gnc_pricedb_substitute_commodity
44+
[gnc-pricedb.h] remove unused gnc_pricedb_lookup_at_time64
45+
46+
New and Updated Translations: Assamese, Chinese (Simplified),
47+
Chinese (Traditional), Croatian, Dutch, English (United Kingdom), Hebrew,
48+
Hungarian, Macedonian, Norwegian Bokmål, Portuguese (Brazil), Russian,
49+
Spanish, Swedish, Turkish
50+
351
5.8 - 7 July 2024
452
The following bugs have been fixed:
553

@@ -16,28 +64,31 @@ The following bugs have been fixed:
1664
Bug 799047 - AutoComplete Only Considers Visible Transactions
1765
Bug 799258 - Reports calculating net worth incorrectly after stock split
1866
Bug 799262 - Failed import QIF investment
19-
Bug 799264 - option account selector fails to include appropriate hidden accounts.
67+
Bug 799264 - option account selector fails to include appropriate hidden
68+
accounts.
2069
Bug 799268 - Cannot write a check over $1000
2170
Bug 799272 - Crashes when pasting a copied transaction
22-
Bug 799279 - Import Matcher (CSV) does not compute correctly the share amount based
71+
Bug 799279 - Import Matcher (CSV) does not compute correctly the share
72+
amount based
2373
on security price
2474
Bug 799281 - Deleting a transaction may trigger a crash
2575
Bug 799290 - Invoice register context menu issue
26-
Bug 799298 - Shortcut Ctrl-G does not work in the General Journal register for the
27-
default date value
76+
Bug 799298 - Shortcut Ctrl-G does not work in the General Journal register
77+
for the default date value
2878
Bug 799300 - Nullpointer exception in gnc_quote_source_s
29-
Bug 799305 - Crash when there is more than one unknown quote source for commodities
30-
Bug 799309 - Import Multi-split CSV can duplicate 'Notes' field from one transaction to next
79+
Bug 799305 - Crash when there is more than one unknown quote source for
80+
commodities
81+
Bug 799309 - Import Multi-split CSV can duplicate 'Notes' field from one
82+
transaction to next
3183
Bug 799320 - GNUCash Immediately Exits on Startup
3284
Bug 799324 - Invalid free in gvalue_from_kvp_value()
33-
Bug 799334 - GnuCash re-opens to incorrect account window if there are transient tabs
34-
present when closed.
85+
Bug 799334 - GnuCash re-opens to incorrect account window if there are
86+
transient tabs present when closed.
3587
Bug 799336 - Stock Assistant closes with its New Account dialog
3688
Bug 799339 - RFE: Add Document Link for Payments to Owner Report
3789

3890
Other repairs or enhancements not marked as bugs:
3991

40-
4192
New Report: Exprimental>Transaction Breakdown Report
4293

4394
Retrieves transactions from an account, distributes the splits into accounts

0 commit comments

Comments
 (0)