Received: by mail.netbsd.org (Postfix, from userid 605) id 9C57384D8C; Sun, 26 Mar 2023 21:35:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CAF0084D4C for ; Sun, 26 Mar 2023 21:35:05 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id Lip7YGkc0raD for ; Sun, 26 Mar 2023 21:35:05 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id E977D84CED for ; Sun, 26 Mar 2023 21:35:04 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D8214F9E7; Sun, 26 Mar 2023 21:35:04 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_167986650436190" MIME-Version: 1.0 Date: Sun, 26 Mar 2023 21:35:04 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/finance/gnucash To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230326213504.D8214F9E7@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_167986650436190 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Mar 26 21:35:04 UTC 2023 Modified Files: pkgsrc/finance/gnucash: Makefile distinfo Log Message: gnucash: update to 4.14. 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 * 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) 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 To generate a diff of this commit: cvs rdiff -u -r1.331 -r1.332 pkgsrc/finance/gnucash/Makefile cvs rdiff -u -r1.115 -r1.116 pkgsrc/finance/gnucash/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_167986650436190 Content-Disposition: inline Content-Length: 1567 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/finance/gnucash/Makefile diff -u pkgsrc/finance/gnucash/Makefile:1.331 pkgsrc/finance/gnucash/Makefile:1.332 --- pkgsrc/finance/gnucash/Makefile:1.331 Sun Jan 29 21:16:04 2023 +++ pkgsrc/finance/gnucash/Makefile Sun Mar 26 21:35:04 2023 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.331 2023/01/29 21:16:04 ryoon Exp $ +# $NetBSD: Makefile,v 1.332 2023/03/26 21:35:04 wiz Exp $ -DISTNAME= gnucash-4.13 -PKGREVISION= 4 +DISTNAME= gnucash-4.14 CATEGORIES= finance MASTER_SITES= ${MASTER_SITE_GITHUB:=gnucash/} EXTRACT_SUFX= .tar.bz2 Index: pkgsrc/finance/gnucash/distinfo diff -u pkgsrc/finance/gnucash/distinfo:1.115 pkgsrc/finance/gnucash/distinfo:1.116 --- pkgsrc/finance/gnucash/distinfo:1.115 Tue Jan 3 12:28:23 2023 +++ pkgsrc/finance/gnucash/distinfo Sun Mar 26 21:35:04 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.115 2023/01/03 12:28:23 wiz Exp $ +$NetBSD: distinfo,v 1.116 2023/03/26 21:35:04 wiz Exp $ -BLAKE2s (gnucash-4.13.tar.bz2) = cf9df4a45d4dd292f537bdcc9f862f6cf344f07176bb458eb52a459214c41522 -SHA512 (gnucash-4.13.tar.bz2) = 7f1f5a6c6e537aca7e88c806461c58e90256954842026d801dba48586fa5817519220f532b9e460bc34751c94e6be4a80aac06325b7bada716616a735e2de3d3 -Size (gnucash-4.13.tar.bz2) = 14658572 bytes +BLAKE2s (gnucash-4.14.tar.bz2) = 7261d17bbdcc598dfa647ac2ab58790e9f2034b4ceb52933a6dfeef2e5454f55 +SHA512 (gnucash-4.14.tar.bz2) = 65323c318b38e46120cceed54ae4066ebff6de5bb2e45b91e801367f054e1ca66e8abe44b9edcf1a26d6a465ad14d2d46462b297c0a6bb28181a0d9809c22c73 +Size (gnucash-4.14.tar.bz2) = 14675204 bytes --_----------=_167986650436190--