gnucash maint: Multiple changes pushed

John Ralls jralls at code.gnucash.org
Fri Dec 3 17:00:31 EST 2021


Updated	 via  https://github.com/Gnucash/gnucash/commit/a85520de (commit)
	 via  https://github.com/Gnucash/gnucash/commit/ab609eda (commit)
	 via  https://github.com/Gnucash/gnucash/commit/5c7967c4 (commit)
	from  https://github.com/Gnucash/gnucash/commit/8e678533 (commit)



commit a85520de7b222ac61fca2bf264143996bddc311b
Author: Stefan Bayer <stefan at stefanbayer.net>
Date:   Mon Nov 22 18:35:38 2021 +0100

    addresses change request from jralls

commit ab609eda9bc1a13c21838302a5ad5c7843418145
Author: Stefan Bayer <stefan at stefanbayer.net>
Date:   Fri Oct 15 21:56:07 2021 +0200

    support SEPA internal transfer

commit 5c7967c4a534cb965dfafaf3cd60c8e10d0b28f2
Author: John Ralls <jralls at ceridwen.us>
Date:   Fri Dec 3 13:58:07 2021 -0800

    Revert "Merge Stefan Bayer's 'SepaInternalTransfer' into maint."
    
    This reverts commit 17a3f7fef23e8b1a40270b5837ed746875ff9fce, reversing
    changes made to b8458d073252daa564c1bf9efab0cbb016e6fe77.



Summary of changes:
 bindings/guile/CMakeLists.txt                      |   8 +
 bindings/guile/business-core.scm                   |  35 +-
 bindings/guile/engine.scm                          |  41 +
 bindings/guile/gnc-module.scm                      |  88 +++
 bindings/guile/test/CMakeLists.txt                 |  15 +-
 bindings/guile/test/test-business-core.scm         |  53 ++
 bindings/guile/test/test-scm-engine.scm            |   6 +
 bindings/guile/test/test-scm-utilities.scm         |  42 +
 bindings/guile/utilities.scm                       |  38 +
 common/test-core/CMakeLists.txt                    |   6 +
 gnucash/gnome/CMakeLists.txt                       |   6 +
 .../org.gnucash.GnuCash.deprecated.gschema.xml.in  |  26 +
 .../gschemas/org.gnucash.GnuCash.gschema.xml.in    |   5 +
 gnucash/gschemas/pref_transformations.xml          | 778 +------------------
 .../aqb/gschemas/pref_transformations.xml          |  52 --
 .../ofx/gschemas/pref_transformations.xml          |  19 -
 gnucash/import-export/qif-imp/CMakeLists.txt       |  12 +
 gnucash/report/CMakeLists.txt                      |  28 +
 gnucash/report/eguile-utilities.scm                |  57 ++
 gnucash/report/gnc-report.c                        |  49 ++
 gnucash/report/gnc-report.h                        |   2 +
 gnucash/report/html-barchart.scm                   | 397 ++++++++++
 gnucash/report/html-document.scm                   |  16 +
 gnucash/report/html-linechart.scm                  | 475 ++++++++++++
 gnucash/report/html-piechart.scm                   | 239 ++++++
 gnucash/report/html-scatter.scm                    | 227 ++++++
 gnucash/report/html-table.scm                      |  25 +
 gnucash/report/html-utilities.scm                  |  27 +
 gnucash/report/report-core.scm                     |  30 +
 gnucash/report/report-utilities.scm                |  68 ++
 gnucash/report/reports/CMakeLists.txt              | 198 +++++
 gnucash/report/reports/aging.scm                   | 847 ++++++++++++++++++++
 gnucash/report/reports/example/average-balance.scm |   1 +
 gnucash/report/reports/reports.scm                 |   2 +
 gnucash/report/reports/standard/job-report.scm     | 601 ++++++++++++++
 .../report/reports/standard/new-owner-report.scm   |   5 +
 gnucash/report/reports/standard/owner-report.scm   | 861 +++++++++++++++++++++
 gnucash/report/reports/standard/payables.scm       |  81 ++
 gnucash/report/reports/standard/receivables.scm    |  94 +++
 .../reports/standard/test/test-owner-report.scm    |  59 +-
 gnucash/report/stylesheets/CMakeLists.txt          |  22 +
 gnucash/report/test/CMakeLists.txt                 |   6 +
 gnucash/report/test/test-report-html.scm           |  29 +-
 gnucash/report/test/test-report-utilities.scm      |  24 +
 gnucash/report/test/test-report.scm                |   7 +-
 gnucash/report/trep-engine.scm                     |   7 +-
 libgnucash/app-utils/CMakeLists.txt                |   8 +
 libgnucash/app-utils/app-utils.scm                 |  11 +
 libgnucash/app-utils/c-interface.scm               |  18 +
 libgnucash/app-utils/date-utilities.scm            | 370 ++++++++-
 libgnucash/engine/Account.cpp                      |  21 +
 libgnucash/engine/Account.h                        |  12 +
 libgnucash/tax/CMakeLists.txt                      |  10 +
 po/POTFILES.in                                     |  10 +
 54 files changed, 5319 insertions(+), 855 deletions(-)
 create mode 100644 bindings/guile/gnc-module.scm
 create mode 100644 gnucash/report/html-barchart.scm
 create mode 100644 gnucash/report/html-linechart.scm
 create mode 100644 gnucash/report/html-piechart.scm
 create mode 100644 gnucash/report/html-scatter.scm
 create mode 100644 gnucash/report/reports/aging.scm
 create mode 100644 gnucash/report/reports/standard/job-report.scm
 create mode 100644 gnucash/report/reports/standard/owner-report.scm
 create mode 100644 gnucash/report/reports/standard/payables.scm
 create mode 100644 gnucash/report/reports/standard/receivables.scm



More information about the gnucash-patches mailing list