summaryrefslogtreecommitdiff
path: root/finance
AgeCommit message (Collapse)AuthorFilesLines
2020-08-03bitcoin: updated to 0.20.1adam3-21/+7
0.20.1 change log Mining * Fix GBT: Restore "!segwit" and "csv" to "rules" key (luke-jr) P2P protocol and network code * Replace automatic bans with discouragement filter (sipa) Wallet * Handle concurrent wallet loading (promag) * Minimal fix to restore conflicted transaction notifications (ryanofsky) RPC and other APIs * Increment input value sum only once per UTXO in decodepsbt (fanquake) * psbt: Increment input value sum only once per UTXO in decodepsbt (achow101) * psbt: Include and allow both non_witness_utxo and witness_utxo for segwit inputs (achow101) GUI * Add missing QPainterPath include (achow101) * update Qt base translations for macOS release (fanquake) Build system * improve build OS configure output (skmcontrib) * qt, build: Fix QFileDialog for static builds (hebasto) Tests and QA * Remove cached directories and associated script blocks from appveyor config (sipsorcery) * appveyor: Remove clcache (MarcoFalke) Miscellaneous * util: Don't reference errno when pthread fails (miztake) * Fix locking on WSL using flock instead of fcntl
2020-08-03py-braintree: updated to 4.3.0adam2-7/+7
4.3.0 Add validation error code Transaction.ProductSkuIsInvalid Add 'RiskThreshold' gateway rejection reason Add processed_with_network_token to Transaction Add is_network_tokenized to CreditCard
2020-07-27gnucash: update to 4.1.wiz3-8/+9
4.1 - 26 July 2020 The second release of the 4.x stable series. Between 4.0 and 4.1, the following bugfixes were accomplished: Bug 775582 - Change "Petrol" (or Gas if seen in USA) to "Fuel". Bug 797759 - Some transactions are not highlighted in the matching window Bug 797787 - Feature request: preference setting to open new tabs adjacent to currently active tab (as opposed to at the end of the tab list). Bug 797825 - OFX import crashes on import of investment transaction Bug 797827 - 4.0.1 gnucash-cli seg faults on macOS Catalina Bug 797828 - Budget Barchart was not upgraded Upgrade to html-chart: Use period start/end instead of date start/end Bug 797830 - Expense over time has extra empty row Bug 797831 - Printer not found Bug 797834 - Ctrl+A in account register fields chimes after any element newly focussed. Bug 797835 - Zero Crossing in 4.0 that wasn't in 3.10 Bug 797842 - Windows: Insertion cursor invisible in Edit Account or New Account windows until text fields have content. Bug 797843 - Quickfill broken with Cyrillic input language Bug 797844 - Typing account number to select account fails Bug 797845 - Backspace key produces incorrect result Bug 797847 - Best match probability calculation on import is too pessimistic. Lowering the minimum value for the auto-clear preference. This is to allow user to still auto clear even when date doesn't match exactly. Bug 797850 - Account register credit/debit column headings untranslated Bug 797853 - Crash on "Save As" in MacOS Mojave and Gnucash 4 Bug 797854 - Global Register Preference to prompt for interest payment is not being honored. Replace the global preference item with a per-account option, enabled only on those account types where interest might be paid or charged. Bug 797858 - Transaction date is one day too early from SWIFT MT940 import. Bug 797861 - Yearly / Monthly average reporting displays zeros Bug 797873 - New Account Hierarchy selects en_US The following fixes and improvements were not associated with bug reports: Accommodate Guile-3.0 in Scheme code. [html-style-info] Display fractional amounts as decimal in price-render Warn against using xaccTransGetSplit for iteration instead of encouraging it. Quickfill cells: Remove the selection after a delete. Accommodate AQBanking < 6 use of GWEN_TIME instead of GWEN_DATE. ensure averaging-multipler returns exact numbers rather than floats [gnucash-cli] improve "-R show" to describe report Don't leak the libofx contexts in gnc_file_ofx_import_process_file/ Make the edit dialog refresh the auto-interest flag display based on pref Remove global preference for auto-interest-transfer [Reports] Use SRFI-9 records for HTML styling. [html-style-sheet] combine 2 similar functions Let environment override AppleLanguages on Macs. [balsheet-eg] remove unused functions [balsheet-eg] modernize accrec to use srfi-9 record [account.cpp] prevent crash in gnc_account_get_currency_or_parent. CMakeLists: mark deprecation of .scm files [eguile-utilities] Ensure that fmtnumeric renders numbers as decimals instead of exact fractions. [Python Bindings] Implement keyword paramters to selected functions. [Python Bindings] Adapt to use of sessionOpenMode in qof_session_begin introduce python submodule deprecation. Link with libm.so on those platforms that require it. [account-piecharts] round account->balance to report-currency SCU [report-utilities] ensure commodity-collector doesn't round amounts [advanced-portfolio] simplify basis functions [advanced-portfolio] simplify basis-builderand use scheme division which is more accurate than gnc_numeric_div. tests need to change slightly. [git-release-notes.pl] html-escape strings in the html output. Updated Translations: Croatian, Hebrew, Italian, Japanese, Romanian, Ukrainian
2020-07-21py-stripe: updated to 2.49.0adam2-7/+7
2.49.0: Support stripe.File.create(stripe_version='...')
2020-07-16finance/ledger2beancount: Update upstream, and cite upstream patch.riastradh3-7/+9
No functional change intended, so no revbump.
2020-07-13*: reset maintainer for darcywiz1-2/+2
2020-07-12bitcoin: updated to 0.20.0adam5-35/+32
0.20.0 change log Mining * miner: Avoid stack-use-after-return in validationinterface Block and transaction handling * log: Fix UB with bench on genesis block * feefilter: Compute the absolute fee rather than stored rate * log: Add validation interface logging * log: Add timing information to FlushStateToDisk() * O(1) OP_IF/NOTIF/ELSE/ENDIF script implementation * introduce CChainState::GetCoinsCacheSizeState * Walk pindexBestHeader back to ChainActive().Tip() if it is invalid * Remove REJECT code from CValidationState * Explain why fCheckDuplicateInputs can not be skipped and remove it * GuessVerificationProgress: cap the ratio to 1 * Templatize ValidationState instead of subclassing * node: Add reference to mempool in NodeContext * prevector: Avoid misaligned member accesses * Improve UpdateTransactionsFromBlock with Epochs * Abstract out script execution out of VerifyWitnessProgram() * Make VerifyWitnessProgram use a Span stack * serialization: prevent int overflow for big Coin::nHeight * chainparams: Bump assumed valid hash * Do not clear validationinterface entries being executed P2P protocol and network code * Remove BIP61 reject messages * Supply and use asmap to improve IP bucketing in addrman * Continue relaying transactions after they expire from mapRelay * Avoid allocating memory for addrKnown where we don't need it * tools: add PoissonNextSend method that returns mockable time * SocketHandler logs peer id for close and disconnect * Seed RNG with precision timestamps on receipt of net messages * Fix an uninitialized read in ProcessMessage(…, "tx", …) when receiving a transaction we already have * Don't allow resolving of std::string with embedded NUL characters. Add tests * Fix CNetAddr::IsRFC2544 comment + tests * config, net, test: Asmap feature refinements and functional tests * Use rolling bloom filter of recent block txs for AlreadyHave() check * Remove forcerelay of rejected txs * Fix some asmap issues * Reference instead of copy in BlockConnected range loop * Fix use-after-free in tests * Make addr relay mockable, add test * Add missing cs_vNodes lock * Hardcoded seeds update for 0.20 * Drop unknown types in getdata * Only send a getheaders for one block in an INV Wallet * Replace %w by wallet name in -walletnotify script * Remove GetDepthInMainChain dependency on locked chain interface * bumpfee: Return PSBT when wallet has privkeys disabled * Disable -fallbackfee by default * Make IsTrusted scan parents recursively * Change default address type to bech32 * Only check the hash of transactions loaded from disk * Handle duplicate fileid exception * descriptors: Introduce sortedmulti descriptor * Avoid showing GUI popups on RPC errors * Remove wallet access to some node arguments * LearnRelatedScripts only if KeepDestination * Split some CWallet functions into new LegacyScriptPubKeyMan * Make ScriptPubKeyMan an actual interface and the wallet to have multiple * Enable BnB coin selection for preset inputs and subtract fee from outputs * Various fixes and cleanup to keypool handling in LegacyScriptPubKeyMan and CWallet * Rename db log category to walletdb * Avoid showing GUI popups on RPC errors * Make -walletdir network only * Cleanup and move opportunistic and superfluous TopUp()s * Remove out of date comments for CalculateMaximumSignedTxSize * Fix when sufficient preset inputs and subtractFeeFromOutputs * Activate watchonly wallet behavior for LegacySPKM only * Document better -keypool as a look-ahead safety mechanism * Reset reused transactions cache * Improve CWallet:MarkDestinationsDirty * Get the OutputType for a descriptor * Improve LegacyScriptPubKeyMan::CanProvide script recognition * Pass in transactions and messages for signing instead of exporting the private keys * Bugfix: Wallet: Safely deal with change in the address book * descriptors: Improve descriptor cache and cache xpubs * rpc/wallet: Initialize nFeeRequired to avoid using garbage value on failure * Remove deprecated fee bumping by totalFee * Fix wallet unload race condition RPC and other APIs * Add RPC Whitelist Feature * cli: -stdinwalletpassphrase and non-echo stdin passwords * Add missing fields to wallet rpc help output * Fix bug where duplicate PSBT keys are accepted * UTXO snapshot creation * psbt: Check that various indexes and amounts are within bounds * Set default bip32derivs to true for psbt methods * improve getaddressinfo test coverage, help, code docs * cli: Add "headers" and "verificationprogress" to -getinfo * replace asserts in RPC code with CHECK_NONFATAL and add linter * Expose block height of wallet transactions * Remove unused COINBASE_FLAGS * Simplify getaddressinfo labels, deprecate previous behavior * deprecate getaddressinfo label * Remove vector copy from listtransactions * Auto-format RPCResult * Output a descriptor in createmultisig and addmultisigaddress * Update validateaddress RPCExamples to bech32 * Change RPCExamples to bech32 * Remove redundant types from descriptions * Document an RPCResult for all calls; Enforce at compile time * Add missing HelpExampleRpc for getblockfilter * Fix broken RPCExamples for waitforblock(height) * Remove final comma for last entry of fixed-size arrays/objects in RPCResult * Remove unused getbalances() code * Correctly compute redeemScript from witnessScript for signrawtransaction * Fix rpcRunLater race in walletpassphrase * Make rpc documentation not depend on call-time rpc args * Avoid initialization-order-fiasco on static CRPCCommand tables * Make verifychain default values static, not depend on global args * Do not advertise dumptxoutset as a way to flush the chainstate * Relock wallet only if most recent callback GUI * Restore RPC Console to non-wallet tray icon menu * Don't disable the sync overlay when wallet is disabled * Show addresses for "SendToSelf" transactions * Add shortcuts for tab tools * create PSBT with watch-only wallet * Change sendcoins dialogue Yes to Send * Always generate bitcoinstrings.cpp on make translate * Rename debug window * Make RPCConsole::TabTypes an enum class * Add toolTip and placeholderText to sign message fields * Remove BIP70 support * Improved tooltip for send amount field * Add placeholder text to the sign message field * Send amount placeholder value * Fix payAmount tooltip in SendCoinsEntry * Cleaning up hide button tool tip * Changed tooltip for 'Label' & 'Message' text fields to be more clear * Fix intro dialog labels when the prune button is toggled * Bugfix: GUI: Recognise NETWORK_LIMITED in formatServicesStr * Bump fee returns PSBT on clipboard for watchonly-only wallets * Remove macOS start on login code * Show watch-only balance in send screen * Disable 3rd-party tx-urls when wallet disabled * Force set nPruneSize in QSettings after the intro dialog * Move static placeholder texts to forms * Log Qt related info * Restore English translation option * Set CConnman byte counters earlier to avoid uninitialized reads * Hide HD & encryption icons when no wallet loaded * Shortcut to close ModalOverlay * Bugfix: GUI: Hide the HD/encrypt icons earlier so they get re-shown if another wallet is open * Drop PeerTableModel dependency to ClientModel * Fix unintialized WalletView::progressDialog * Pass clientmodel changes from walletframe to walletviews * Fix deprecated QCharRef usage * Throttle GUI update pace when -reindex * Fix race in WalletModel::pollBalanceChanged * Avoid Wallet::GetBalance in WalletModel::pollBalanceChanged * Bump transifex slug and update English translations for 0.20 * Display mapped AS in peers info window * Translations update pre-branch * Fix Window -> Minimize menu item * Fix leak in CoinControlDialog::updateView * Fix manual coin control with multiple wallets loaded Build system * Remove mingw linker workaround from win gitian descriptor * Use new fork of osslsigncode for windows gitian signing * Only pass --disable-dependency-tracking to packages that understand it * Bump libevent to 2.1.11 in depends * gitian: Various improvements for windows descriptor * Disable _FORTIFY_SOURCE when enable-debug * Switch to upstream libdmg-hfsplus * Remove workaround for ancient libtool * Added double quotes * Add variable printing target to Makefiles * depends macOS: point --sysroot to SDK * Fix boost mac cross build with clang 9+ * Remove OpenSSL * Update retry to current version * nsis: Write to correct filename in first place * Update univalue subtree * Update leveldb to 1.22+ * Avoid hardcoded libfaketime dir in gitian * Fix C{,XX} pickup * Set gitian arch back to amd64 * Make Travis catch unused variables * Bump minimum libc to 2.17 for release binaries * Create test utility library from src/test/util/ * Remove libanl.so.1 from ALLOWED_LIBRARIES * Fix configure report about qr * Allow export of environ symbols and work around rv64 toolchain issue * lcov: filter depends from coverage reports * Add ability to skip building qrencode * Support for S390X and POWER targets * util: Update tinyformat to upstream * Don't configure xcb_proto * Remove Qt networking features * Remove linking librt for backwards compatibility * Remove configure checks for win libraries we don't link against * Included test_bitcoin-qt in msvc build * Remove WINDOWS_BITS from build system * Set AC_PREREQ to 2.69 * Add -Wdate-time to Werror flags * Remove double LIBBITCOIN_SERVER linking * Consistent use of package variable * guix: Pin Guix using guix time-machine * pass -fno-ident in Windows gitian descriptor * Remove --large-address-aware linker flag * Don't embed a build-id when building libdmg-hfsplus * Fix behavior when ALLOW_HOST_PACKAGES unset * Add missing attributes to Win installer * Skip i686 build by default in guix and gitian * Add cov_fuzz target * Add --enable-determinism configure flag * Add Wreturn-type to Werror flags, check on more Travis machines * Remove Boost Chrono * Set minimum Automake version to 1.13 * guix: Remove now-unnecessary gcc make flag * Use git archive as source tarball * Fix libevent linking for bench_bitcoin binary * scripts: Previous_release: improve behaviour on failed download * Remove double LIBBITCOIN_SERVER from bench-Makefile * Create test_fuzz library from src/test/fuzz/fuzz.cpp * Fix boost detection for arch armv7l * gitian: Add missing automake package to gitian-win-signer.yml * Check libevent minimum version in configure script * Ensure source tarball has leading directory name Platform support * Add Android NDK support * macOS toolchain update * Increase init file stop timeout * Remove OpenSSL PRNG seeding * Update README.md with working Android targets and API levels * Only use D-Bus with Qt on linux * Set minimum supported macOS to 10.12 * Appveyor install libevent[thread] vcpkg * Remove deprecated key from macOS Info.plist * Pass -dead_strip_dylibs to ld on macOS * Don't use OpenGL in Qt on macOS * Add -bind_at_load to macOS hardened LDFLAGS * scripts: Add macho pie check to security-check.py * random: don't special case clock usage on macOS * scripts: Add macho dylib checks to symbol-check.py * msvc: Ignore msvc linker warning and update to msvc build instructions * windows: Enable heap terminate-on-corruption * logging: Enable thread_local usage on macos * Fix .gitignore policy in build_msvc directory * scripts: Add macho lazy bindings check to security-check.py * util: Fix compilation with mingw-w64 7.0.0 * Fix sysctl() detection on macOS * random: remove getentropy() fallback for macOS < 10.12 * scripts: Add pe dylib checking to symbol-check.py * scripts: Add macho tests to test-security-check.py * releases: Update with new Windows code signing certificate * Fix ASLR for bitcoin-cli on Windows Tests and QA * Build previous releases and run functional tests * Add coverage to estimaterawfee and estimatesmartfee * lint: Run the ci lint stage on mac * Add getdescriptorinfo functional test * Add wallet_implicitsegwit to test the ability to transform keys between address types * Add ASSERT_DEBUG_LOG to unit test framework * travis: Run full test suite on native macos * Use self.chain instead of 'regtest' in all current tests * add unit test for wallet watch-only methods involving PubKeys * Add generatetodescriptor RPC * Fix combine_logs.py for AppVeyor build * Show debug log on unit test failure * Seed test RNG context for each test case, print seed * ci: Use busybox utils for one build * Fix Python Docstring to include all Args * ci: Run tests on arm * Pass fuzzing inputs as constant references * Add test for loadblock option and linearize scripts * fix "tx-size-small" errors after default address change * Speed up wallet_backup by whitelisting peers * Speed up wallet_address_types by whitelisting peers * Fix bug in blockfilter_index_tests * use default address type * ci: Enable address sanitizer * Add testcase to simulate bitcoin schema in leveldb * Remove no longer needed UBSan suppressions * Add unit testing for the CompressScript function * Test serialisation as part of deserialisation fuzzing. Test round-trip equality where possible * Add RegTestingSetup to setup_common * travis: Run unit and functional tests on native arm * Skip unnecessary fuzzer initialisation. Hold ECCVerifyHandle only when needed * ci: Disable functional tests on mac host * Fix script_p2sh_tests OP_PUSHBACK2/4 missing * bench: Fix negative values and zero for -evals flag * pubkey: Assert CPubKey's ECCVerifyHandle precondition * Added TestWrapper class for interactive Python environments * Add new mempool benchmarks for a complex pool * add reason checks for non-standard txs in test_IsStandard * Fix input size assertion in wallet_bumpfee.py * Add rpc_fundrawtransaction logging * Add shrinkdebugfile=0 to regtest bitcoin.conf * Speed up fundrawtransaction test * Do not instantiate CAddrDB for static call CAddrDB::Read() * Speed up wallet_avoidreuse, add logging * add "diamond" unit test to MempoolAncestryTests * Reset global args between test suites * ci: Run non-cross-compile builds natively * TestShell: Fix typos & implement cleanups * Create new test library * wallet_importmulti: use addresses of the same type as being imported * Add missing newline in util_ChainMerge test * Add util_ArgParsing test * travis: Rework cache_err_msg * ci: Make ci system read-only on the git work tree * check custom ancestor limit in mempool_packages.py * Update valgrind suppressions * Check custom descendant limit in mempool_packages.py * Remove fragile assert_memory_usage_stable * ci: Use clang-8 for fuzzing to run on aarch64 ci systems * Add unit test for non-standard txs with too large scriptSig * Skip tests when utils haven't been compiled * Add unit test for non-standard bare multisig txs * Add bounds checks before base58 decoding * ci: Bump to clang-8 for asan build to avoid segfaults on ppc64le * Wait until mempool is loaded in wallet_abandonconflict * Add functional test for non-standard txs with too large scriptSig * Add functional test for non-standard bare multisig txs * Add unit test for non-standard txs with wrong nVersion * Add libtest_util library to msvc build configuration * ci: Add big endian platform - s390x * Move more utility functions into test utility library * Add option --valgrind to run the functional tests under Valgrind * ci: Add centos 7 build * Add unit test for leveldb creation with unicode path * Add initialization order fiasco detection in Travis * Enable tests which are incorrectly skipped when running test_runner.py --usecli * Fix bug in the descriptor parsing fuzzing harness * re-enable CLI test support by using EncodeDecimal in json.dumps() * add unit test for non-standard "scriptsig-not-pushonly" txs * ci: Fix qemu issues * ci: Update github actions ci vcpkg cache on msbuild update * Change filemode of rpc_whitelist.py * ci: Fix brew python link * Add std::to_string to list of locale dependent functions * Fix double-negative arg test * ci: Combine 32-bit build with centos 7 build * Test OP_CSV empty stack fail in feature_csv_activation.py * Fix p2p_invalid_messages failing in Python 3.8 because of warning * add unit test for non-standard txs with too large tx size * Check specific reject reasons in feature_csv_activation.py * Add p2p test for forcerelay permission * Updated appveyor job to checkout a specific vcpkg commit ID * fix fuzzing using libFuzzer on macOS * bench: Fix benchmarks filters * reset fIsBareMultisigStd after bare-multisig tests * Fix appveyor test_bitcoin build of *.raw * util: Allow scheduler to be mocked * ci: Check for submodules * Replace 'regtest' leftovers by self.chain * Set a name for CI Docker containers * Avoid hitting some known minor tinyformat issues when fuzzing strprintf(…) * Add harness which fuzzes EvalScript and VerifyScript using a fuzzed signature checker * Add --valgrind option to test/fuzz/test_runner.py for running fuzzing test cases under valgrind * ci: Run fuzz testing test cases * Transaction expiry from mempool * Remove incorrect assumptions in validation_flush_tests * Set catch_system_errors=no on boost unit tests * Add cost_of_change parameter assertions to bnb_search_test * Reduce unneeded whitelist permissions in tests * Disable mockforward scheduler unit test for now * Fix race in p2p_segwit * Make AnalyzePSBT next role calculation simple, correct * Add missing syncwithvalidationinterfacequeue * Wait for both veracks in add_p2p_connection * Bump timeouts to accomodate really slow disks * Add bad-txns-*-toolarge test cases to invalid_txs * rpc: change setmocktime check to use IsMockableChain * Check that wait_until returns if time point is in the past * Add locale fuzzer to FUZZERS_MISSING_CORPORA * fuzz: Add assert(script == decompressed_script) * Update FUZZERS_MISSING_CORPORA to enable regression fuzzing for all harnesses in master * fuzz: Add option to merge input dir to test runner * Explain why test logging should be used * Add logging to wallet_listsinceblock.py * Bumpfee test fix * Add deserialization fuzzing of SnapshotMetadata * fuzz: Add missing ECC_Start to key_io test * Add basic test for BIP 37 * Fix mining to an invalid target + ensure that a new block has the correct hash internally * Bugfix & simplify bn2vch using int.to_bytes * Don't assume presence of __builtin_mul_overflow(…) in MultiplicationOverflow(…) fuzzing harness * add executable flag for rpc_estimatefee.py * listsinceblock block height checks * ci: Only clone bitcoin-core/qa-assets when fuzzing * ci: Use homebrew addon on native macos * Add coverage for script parse error in ParseScript * Remove unsafe BOOST_TEST_MESSAGE * check that peer is connected when calling sync_* * ci: Use focal for fuzzers * add BIP37 'filterclear' test to p2p_filter.py * Remove redundant sync_with_ping after add_p2p_connection * fuzz: Avoid running over all inputs after merging them * fuzz: Add CScriptNum::getint coverage * remove rapidcheck integration and tests * Add BIP37 remote crash bug [CVE-2013-5700] test to p2p_filter.py * relax bumpfee dust_to_fee txsize an extra vbyte * fuzz: Extend descriptor fuzz test * fuzz: Extend script fuzz test * fuzz: Add process_messages harness * Add fuzzer version of randomized prevector test * skip backwards compat tests if not compiled with wallet * wallet_bumpfee assertion fixup * Use one node to avoid a race due to missing sync in rpc_signrawtransaction * Properly raise FailedToStartError when rpc shutdown before warmup finished * ci: Run unit tests sequential once * Fix unregister_all_during_call cleanup * Set -use_value_profile=1 when merging fuzz inputs * Remove enumeration of expected deserialization exceptions in ProcessMessage(…) fuzzer * Add test for conflicted wallet tx notifications * Remove const to work around compiler error on xenial Documentation * Doxygen-friendly script/descriptor.h comments * Add detailed info about Bitcoin Core files * Doxygen-friendly CuckooCache comments * move-only: Steps for "before major release branch-off" * Update bips.md for default bech32 addresses in 0.20.0 * Fix Makefile target in benchmarking.md * Add missing indexes/blockfilter/basic to doc/files.md * Fix broken bitcoin-cli examples * Add switch on enum example to developer notes * Update macdeploy README to include all files produced by make deploy * github: Add warning for bug reports * Added instructions for how to add an upsteam to forked repo * Add a note about backporting * Correct function name in ReportHardwareRand() * Describe log files + consistent paths in test READMEs * Changed miniupnp links to https * Add developer note on c_str() * Bip70 removal follow-up * Fix help-debug -checkpoints * update MSVC instructions to remove Qt OpenSSL linking * Add template for good first issues * Fix some misspellings * Add ShellCheck to lint tests dependencies * Update doc/bips.md with recent changes in master * Added regtest config for linearize script * Add some better examples for scripted diff * Remove bitness from bitcoin-qt help message and manpage * Update and improve Developer Notes * Changed MiniUPnPc link to https in dependencies.md * Change doxygen URL to doxygen.bitcoincore.org * Update release process with latest changes * Unify unix epoch time descriptions * script: Add keyserver to verify-commits readme * Rename wallet-tool references to bitcoin-wallet * Add "ci" prefix to CONTRIBUTING.md * Use recommended shebang approach in documentation code block * Fix directory path for secp256k1 subtree in developer-notes * Mention PR Club in CONTRIBUTING.md * Misc RPC help fixes * Developer notes guideline on RPCExamples addresses * Update dependencies.md * Add to Doxygen documentation guidelines * Fix improper Doxygen inline comments * Improve fuzzing docs for macOS users * Fix doxygen errors * Add missing supported rpcs to doc/descriptors.md * Add note about brew doctor * Remove PPA note from release-process.md * Minor grammatical changes and flow improvements * Add missing step in win deployment instructions * Add warning against wallet.dat re-use * Correct spelling errors in comments * interfaces: Describe and follow some code conventions * Explain rebase policy in CONTRIBUTING.md * Mention MAKE=gmake workaround when building on a BSD * Replace remaining literal BTC with CURRENCY_UNIT * Add fuzzing quickstart guides for libFuzzer and afl-fuzz * Fix nit in getblockchaininfo * Comment fix merkle.cpp * note the costs of fetching all pull requests * Update init and reduce-traffic docs for -blocksonly * Block-relay-only vs blocksonly * Explain new test logging * Update webchat URLs in README.md * Fix git add argument * Correct scripted-diff example link * Fix naming of macOS SDK and clarify version Miscellaneous * lockedpool: When possible, use madvise to avoid including sensitive information in core dumps * Merge settings one place instead of five places * On bitcoind startup, write config args to debug.log * util: Replace boost sleep with std sleep * util: Fix compilation errors in support/lockedpool.cpp * scripts: In linearize, search for next position of magic bytes rather than fail * Add some general std::vector utility functions * contrib: Bump gitian descriptors for 0.20 * scripts: Update copyright_header script to include additional files * util: Simplify path argument for cblocktreedb ctor * random: Remove call to RAND_screen() * util: Add check_nonfatal and use it in src/rpc * Replace the LogPrint function with a macro * util: Rename decodedumptime to parseiso8601datetime * Feed environment data into RNG initializers * contrib: Remove accounts from bash completion * Add assertion to randrange that input is not 0 * log: Fix log message for -par=1 * linter: Strip trailing / in path for git-subtree-check * scripts: Search for first block file for linearize-data with some block files pruned * scripts: Lint gitian descriptors with shellcheck * util: Disallow network-qualified command line options * random: mark RandAddPeriodic and SeedPeriodic as noexcept * Fix CPUID subleaf iteration * util: Make schedulebatchpriority advisory only * util: Remove unwanted fields from bitcoin-cli -getinfo * script: Fixed wget call in gitian-build.py * Make env data logging optional * util: Don't allow base58 decoding of non-base58 strings. add base58 tests * util: Change getwarnings parameter to bool * util: Don't allow base32/64-decoding or parsemoney(…) on strings with embedded nul characters. add tests * scripts: Read suspicious hosts from a file instead of hardcoding * util: Avoid potential uninitialized read in formatiso8601datetime(int64_t) by checking gmtime_s/gmtime_r return value * Fix a violation of C++ standard rules where unions are used for type-punning * util: Fail to parse empty string in parsemoney * util: Fail to parse whitespace-only strings in parsemoney(…) * util: Helpexamplerpc formatting * Fix missing header in sync.h * script: Fix script_err_sig_pushonly error string * util: Limit decimal range of numbers parsescript accepts * init: Replace URL_WEBSITE with PACKAGE_URL * Remove PID file at the very end * Avoid non-trivial global constants in SHA-NI code * Do not expose and consider -logthreadnames when it does not work
2020-07-07py-braintree: updated to 4.2.0adam2-7/+7
4.2.0 Add retrieval_reference_number to Transaction Add network_transaction_id to CreditCardVerification Add product_sku to Transaction Add customer_device_id, customer_location_zip, and customer_tenure to RiskData Add phone_number and shipping_method to Address Add validation error codes: Transaction.ShippingMethodIsInvalid Transaction.ShippingPhoneNumberIsInvalid Transaction.BillingPhoneNumberIsInvalid RiskData.CustomerBrowserIsTooLong RiskData.CustomerDeviceIdIsTooLong RiskData.CustomerLocationZipInvalidCharacters RiskData.CustomerLocationZipIsInvalid RiskData.CustomerLocationZipIsTooLong RiskData.CustomerTenureIsTooLong
2020-06-29gnucash-docs: update to 4.0.wiz3-220/+21
4.0 - 28 June 2020 o Screenshot: Change a Transaction Association Dialog o Transaction assoc illustration: Symbols o Update "Using Entry Shortcuts" o Remove the register type group default setting description. o New Bill: Fix some labels to match what the dialog displays. o Document editing entries in an employee voucher. o Document new default layout customization for Invoices and Bills. o Fix docbook validity errors. o New section in help: Associating and External File with a Transaction. o Rewrite the New Accounts Hierarch Setup section. o Document setting register column width layout. o Fix obsolete guide cross-reference. o Remove obsolete Docbook declaration comments from docs 3.11 - 28 June 2020 o Bug 770132 - Price editor does not find ASX:XROAmmend last commit German translation Patch other translations Update pt for easier synchronization o Bug 797783 - [PATCH] The "over" and "under" estimate in the unrealized capital gain chapter should be reversed. o Right align numerical column in fq-spec-tiaa o Fix obsolete guide cross-reference. o Appendix: add "Ticker" to distinguish from security numbers o Note on dots in yahoo symbols o Minor Correction to Help ManualCorrect reconciliation action on U+C entry in table from 'n' to 'c' Modification of PR #137. o Improve links to Selingers tutorialsUse entities, also for titles o Modifications to Guide Ch12 to include multi-currency transactions using trading accounts.Split the multi-currency transaction after the initial introduction into two sections. The first is the original dealing with the treatment of multicurrency transactions using manual recording of the gains and losses. 3.905 - 14 June 2020 o Bug 770132 - Price editor does not find ASX:XRO o Bug 797783 - [PATCH] The "over" and "under" estimate in the unrealized capital gain chapter should be reversed. o L12N:it, pt update: Vanguard is part of AlphaVantage. o Update fq-sources.html: asx source is working again. Also explain why you need F::Q 1.41 o Tell travis to use ubuntu-18.04-docker file o Appendix: add "Ticker" to distinguish from security numbers. o Note on dots in yahoo symbols. 3.904 - 7 June 2020 No changes. 3.903 - 1 June 2020 o L10N of "Improve links to Selinger's tutorials" o Minor Correction to Help ManualCorrect reconciliation action on U+C entry in table from 'n' to 'c' Modification of PR #137 o Improve links to Selingers tutorialsUse entities, also for titles o Modifications to Guide Ch12 to include multi-currency transactions using trading accounts.Split the multi-currency transaction after the initial introduction into two sections. The first is the original dealing with the treatment of multicurrency transactions using manual recording of the gains and losses. The second new section deals with gains and loss treatment using trading accounts. Basic introduction to trading account concepts added and an example of a transfer of funds between accounts in different currencies is added. o Minor imrovements on Invoice IDUnification of lists o CI for gnucash-docs should be on Ubuntu 18.04 to match gnucash.
2020-06-29gnucash: update to 4.0.wiz7-474/+532
What's New in GnuCash 4.0 Major Highlights A new Transaction Association dialog, available from the Update Association for Transaction menu item that has replaced the two association items in 3.x, allows setting, changing, and deleting associations. A symbol (paperclip for files, chain links for URLS) is now displayed in the Associations column (visible in double-line mode) in the register in place of the letters when a transaction has an association. This doesn't work on MacOS. Associations may now be added to bills, credit notes, invoices, and vouchers. The actual association when present is added as a link button which is shown below the notes. New type-ahead search is added to sequential search when selecting an account or an Action in the register: Instead of typing the first few characters of a top level account, the separator, the first few characters of the next level account and so on you may instead type a few characters of any part of a full account name and the drop-list will be filtered to contain only matching accounts. Once you have a small enough list you can use the arrow keys to select the account that you want. Command-Line A new separate executable, gnucash-cli (gnucash-cli.exe on Microsoft Windows) for doing command-line things like updating the prices in your book. gnucash-cli gains the ability to run reports from the command line. Specify reports to run by name or guid. It also provides an export format and an output file name without which it will output the report to stdout. gnucash-cli --report run --name=[reportname/guid] datafile.gnucash gnucash-cli --report run --name=[reportname/guid] --output-file=x.html datafile.gnucash gnucash-cli --report run --name=[reportname/guid] --output-file=x.html --export-type=TYPE datafile.gnucash gnucash-cli --help will display a screen listing all of the available commands and their options. The GUI program, gnucash, still responds to the options it always has, though --get-price-quotes is deprecated in favor of gnucash-cli --quotes get. Graphic User Interface When creating a new account hierarchy it's now possible to load account templates from locales other than the one set for the user interface. On the Choose Accounts to Create page there are two drop-downs above the Account Types selector, one for language and one for country, the choices in the latter depending on the former. The default is the current locale but they may be used to select account templates from any locale. When deleting accounts the destination accounts of moved splits will be checked to ensure that they have the same commodity as the source account. If they don't you'll get a warning and the opportunity to pick another account or to carry on regardless. Reversing transactions will now pop a dialog box to request a posting date. Business Functions Business Document Column Widths Entry column widths in Invoices, Bills, and Employee Vouchers may now be saved as defaults for each type of document. Two menu items are added to the View menu when a Bill, Invoice, or Voucher tab has focus: "Use as Default Layout for Vendor Documents" or "Reset Default Layout for Vendor Documents" Vendor Documents is for Bills and is replaced by Customer or Employee Documents for Invoices or Vouchers respectively. The first saves the current document's column widths and makes them the default for all documents in the same type. The second menu item removes the customization and documents of that type will therafter use the computed default widths. Importing Transactions Support for AQBanking Version 6. This is required to support new FinTS protocols for the European Payment Services Directive (PSD2). The Import Map Editor (Tools>Edit Import Maps) will scan for Bayesian associations with non-existent accounts and display a dialog offering to remove any that are found. It also adds a button at the bottom of the Import Map Editor to delete them if one chooses not to use the dialog. The OFX file importer can now import more than one file at a time. OFX imports having balance information will now offer to immediately reconcile, passing the balance information in the file to the reconcile info. The import transaction matcher window column headings are changed from R to C and from U+R to U+C, reflecting that the matcher marks transactions cleared but doesn't reconcile them. Account matcher will decline to match accounts with a different commodity from the imported split if the import information includes the commodity. Ellipsize the Description and Memo fields in the account matcher. Reports A new report menu supbmenu Multicolumn contains the old custom-multicolumn report and a new Dashboard report containing Account reports for expenses and income, an income-expense chart, and an account summary. Support for UK VAT and Australian GST have been added to the Income-GST report. The report's options are changed from source accounts to source sales and purchase accounts to permit proper reporting of capital purchases. N.B. This is incompatible with previous versions of the report and will require regenerating saved configurations. Budgets Optionally include the account code option in budget view. Enable adding notes to budgets. Account codes may now optionally be displayed in the Budget Tree View.. Compatibility GnuCash 4.x will not migrate old gconf settings from GnuCash 2.4.x. Customization and Scripting The GnuCash widget hierarchy for CSS has been revised to be more consistent with Gtk practice. You may need to spend some time with the GtkInspector to get your custom CSS back the way you like it. Python bindings are now localized and their strings available for translation.
2020-06-15ledger: updated to 3.2.1adam4-9/+39
changes in 3.2.1: - Fix regression with expression evaluation by reverting commit `Correction to the way parens are parsed in query expressions` - Fix --invert breakage by reverting commit `Change --invert to invert displayed amounts and totals, not amounts` - Fix performance regression by reverting commit `Compare price annotations using their textual rendering` - Fix library path issue - Allow specifying the Python version - Some documentation fixes
2020-06-02Revbump for icuadam4-8/+8
2020-05-27*: reset MAINTAINER for fhajny on his requestwiz1-2/+2
2020-05-22python/application.mk is not needed any moreadam2-4/+2
2020-05-22py-trytond-product-cost-fifo: remove REPLACE_PYTHONrillig1-3/+2
This package does not have any tests anymore.
2020-05-22py-trytond-account-invoice-history: clean up REPLACE_PYTHONrillig1-3/+2
This package does not have any tests anymore.
2020-05-22revbump after updating security/nettleadam2-3/+4
2020-05-16pytest from versioned dependsadam1-2/+4
2020-05-16py-braintree: updated to 4.1.0adam2-7/+7
4.1.0 Add DisputeAccepted, DisputeDisputed, and DisputeExpired webhook constants Add three_d_secure_pass_thru to CreditCard.create, CreditCard.update, PaymentMethod.create, PaymentMethod.update, Customer.create, and Customer.update. Add Verification validation errors for 3D Secure Add payment_method_token to CreditCardVerificationSearch Add recurring_customer_consent and recurring_max_amount to authentication_insight_options for PaymentMethodNonce.create Add FileIsEmpty error code Eliminates usage of mutable objects for function parameters.
2020-05-16finance/tclticker: remove the packagerillig7-103/+1
This package got its stock quotes from web sites that were active around 2000 and that no longer exist. It had not resolved the PREFIX placeholder, which meant it could not even ask the web sites for the quotes. Therefore chances are high that this package is not used by anyone.
2020-05-12py-stripe: updated to 2.48.0adam3-8/+11
2.48.0: Add support for the `LineItem` resource and APIs
2020-05-12gnucash: link upstream bug reportwiz2-3/+4
2020-05-12libofx: updated to 0.9.15adam4-177/+46
LibOFX 0.9.15: - Fix segfault on uninitialized iconv - Make file format less stringent - Minor fixes in the build system LibOFX 0.9.14: - Fix proprietary tags striping eating the content of the previous tag if proprietary tag is in the middle of the line - Don't output invalid line numbers on the console before SGML processing starts LibOFX 0.9.13: - Fix potential heap overflow - Fix crash on some malformed ofx files - Fix crash in ofxconnect on missing command line arguments - Fix for daylight savings time handling - Easier compile on macos: obey LIBTOOLIZE env variable, and fallback to glibtoolize - Fix compile on win32 (mingw-w64) - Performance an reliability fixes in header parsing - Strip CATEGORY tag added by Chase bank LibOFX 0.9.12: - Fix a buffer overflow on unexpected tag names. LibOFX 0.9.11: - Add support for client uid, from KDE bug 366326
2020-05-12gnucash: fix building - add missing includeadam2-1/+16
2020-05-11hs-*: add PLIST filesrillig1-0/+22
These PLIST files have been autogenerated by mk/haskell.mk using HS_UPDATE_PLIST=yes during a bulk build. They will help to track changes to the packages. The Haskell packages didn't have PLIST files because their paths contained package hashes. These hashes are now determined by mk/haskell.mk, which makes it easy to generate easy to read PLIST files.
2020-05-11Work around pkgsrc mk bug by adding gsed to USE_TOOLS, not gsed:test.riastradh1-2/+6
2020-05-06revbump after boost updateadam6-10/+12
2020-05-01finance/ledger: Update to 3.2.0riastradh3-12/+8
- Port Python support to Python 3 - Entities are no longer regarded as defined due to being part of a cleared transaction. `--explicit` is effectively enabled by default and is now a no-op (PR #1819) - Add `--average-lot-prices` to show the average of lot prices - Add support for `%F` date format specifier (bug #1775) - Add `commodity_price(NAME, DATE)` function - Add `set_commodity_price(NAME, DATE)` function - Fix buffer overflow when evaluating date - Fix balance assertions on accounts with virtual posts (bug #543) - Fix segfault with `ledger print` (bug #1850) - Ensure that `apply` directives (like `apply account`) have the required argument (bug #553) - Format annotations using a date format that can be parsed - Change `--invert` to invert displayed amounts and totals, not amounts (bug #1803) - Correct the way parens are parsed in query expressions - Compare price annotations using their textual rendering - Fix build failure with utfcpp 3.0 (bug #1816) - Fix build failure due to ambiguous type (bug #1833)
2020-04-30py-stripe: updated to 2.47.0adam3-8/+11
2.47.0: Add support for the `Price` resource and APIs
2020-04-23py-stripe: updated to 2.46.0adam3-8/+14
2.46.0: Add support for `billing_portal` namespace and `Session` resource and APIs
2020-04-17Add missing includejoerg2-1/+14
2020-04-14finance: Enable electrumjs1-1/+2
2020-04-14Import finance/electrum from wipjs4-0/+593
Electrum is an easy to use Bitcoin client, written in Python and using Qt.
2020-04-14gnucash-docs: update to 3.10.wiz3-15/+44
Updated for gnucash 3.10.
2020-04-14gnucash: update to 3.10.wiz6-9/+67
Changes This is a snap release to reverse the changes to the reconcile window's filtering reconciled transactions with a reconcile date after the current statement date when computing the starting balance. It seems that many users' books have accounts with reconcile dates in the future that were suddenly filtered out, creating an incorrect starting balance and making it impossible to reconcile the book. Between 3.9 and 3.10, the following bugfixes were accomplished: Bug 620848 - Transfer Funds window - add Notes field Bug 797006 - Balance is misleading in open subaccounts when different currencies are involved Bug 797318 - Amounts ending in zero displayed as fractions Bug 797666 - libgnucash/engine/test/test-recurrence.c: In function 'check_valid': 'result' may be used uninitialized Bug 797676 - Register displays amount in transaction currency instead of register currency. Bug 797674 - 3.9: "test-gnc-path-util" failed on Debian amd64 The following fixes and improvements were not associated with bug reports: Update latest translation from the Translation project. [window-reconcile] when reconciling, warn on splits having a reconcile date > statement_date [window-reconcile] when inputing statement_date, warn if it's after today [find-transactions] add search for reconciled date Show transaction value, not amount, for registers with subaccounts. If the register has subaccounts in different currencies and a transaction has splits in more than one, the transaction will incorrectly appear to be unbalanced if we total amounts because the balancing logic works on split values. Add instance argument to Session constructor Enables a python console to connect to the running GnuCash's session. Make python console less noisy without --debug. Provide locals and globals of calling context to the python console's shell on shell init Merge Jean Laroche's '797006_subaccounts' into maint. Add check to display warning dialog for mismatched commodities Replicate changes in *2 files Apply astyle to modified files Merge Chris Mayo's iPython-fixes into maint. Make pycons/ishell.py compatible with Python 3 and current IPython [eguile-utilities] Prevent crash in balsheet-eg.scm [eguile] escape-html -> gnc:html-string-sanitize [qif-to-gnc] Properly mark intra-QIF internal transfers. We have a revised Ukrainian translation.
2020-04-12Recursive revision bump after textproc/icu updateadam3-4/+6
2020-04-11py-bitcoinlib: 0.11.0adam3-8/+17
v0.11.0 Bech32 implementation Segwit implementation (for P2WSH and P2WPKH transactions) and examples Use libsecp256k1 for signing Implement OP_CHECKSEQUENCEVERIFY
2020-04-11py-stripe: updated to 2.45.0adam2-7/+7
2.45.0: Add support for Express links in `authorize_url` for `OAuth`
2020-04-03hledger-lib: add missing DEPENDS.wiz1-1/+4
Fixes build.
2020-03-31gnucash: update to 3.9.wiz3-28/+30
3.9 - 29 March 2020 The tenth release of the 3.x stable series. The following bugs have been fixed: Bug 685102 - Scheduled Transactions don't always respect weekends for first occurrence Bug 794916 - Fails to find environment file at startup when installation prefix is '/opt Bug 796579 - Cannot go forward with empty duplicates screen Bug 796911 - Minimum window width to large. To fix this the text labels used have been enabled to ellipsize at the end Bug 796984 - Import Bills & Invoices: date of line item is not validated; can lead to unexpected results Bug 796985 - Import Bills & Invoices: option 'open not yet posted docs in tab' does not open tab if invoice could not be posted Bug 796986 - Import Bills & Invoices: in case of invalid posting date in import file, invoice is posted with unexpected date Bug 796987 - Import Bills & Invoices: fixing import items only works in special case Bug 797022 - Import Bills & Invoices: expense/income account is not validated - leads to one-sided posting if account is invalid Bug 797023 - Import Bills & Invoices: no user confirmation requested for update of invoices, if new invoice is created first Bug 797024 - Import Bills & Invoices: import matches csv data rows with too few separators, messing up the import data Bug 797025 - Import Bills & Invoices: the type of the post to account is not validated - enabling A/P and A/R postings on regular accounts Bug 797042 - OK button in OFX importer doesn't work if nothing is imported. Bug 797133 - CSV Import of multicurrency transaction export in multiline form Bug 797139 - test-report-utilities failure after 10-march in travis Bug 797419 - equity-statement unrealized-gain calculator uses weighted-average Bug 797481 - crash on close of unsaved tabs by pressing [X] Bug 797522 - Focus after reconcile jumps to a different account Bug 797536 - cmake errors out because it cannot find GncPkgConfig (cmake 3.5.2) Bug 797540 - Mapping of aqbanking accounts to gnucash accounts doesn't work Bug 797546 - Autocomplete not updated when account names changed Bug 797548 - multicolumn income statement: some closing entries are not ignored when within reporting period Bug 797549 - Reconcile window shows S_tatement Date rather than Statement Date. Bug 797550 - Crash when changing register tab position Bug 797551 - Budget totals line missing in 3.8 Reinstate Income/Expense/Transfer/Total, but rename to: * Inflow from Income * Outflow to Expense * Outflow to Asset/Equity/Liability * Remaining to Budget Bug 797566 - Crash on use of context menu in importer Bug 797569 - Swedish account templates not accessible Bug 797570 - Unable to import vendors. In the import of Customer/Vendor or Bill/Invoice, the dialog that lists rows that were not imported shows a scrollable view of only four rows. Bug 797572 - Customer Report (beta): "Period Totals" includes total debit and credits outside the current period Change to formal accounting convention. Can swap to informal headers if set by global preference. Bug 797573 - Incorrect value of securities in the Asset Chart Bug 797576 - xaccAccountOrder shouldn't sort account codes as base-36 Bug 797583 - gnc:book-add-quotes crashes when there are no quotes Bug 797584 - New-owner - bill amount field links to wrong account Bug 797588 - Gnucash segfaults when using mysql backend with empty password Bug 797591 - multiperiod b/s and PnL reports: add style sheet 'easy' Bug 797609 - Backtraces for eguile report errors strips wrong part of stack Bug 797613 - Due Invoices Reminder shows Job Name instead of Company Name Bug 797624 - At some point Vietnam Dong seemed to drop xu (decimals) Bug 797631 - Superfluous account selection dialog on first online retrieval The online id, which is needed to find a GnuCash account for a transaction or the balance retrieved from an online account, is already assigned to each matched GnuCash account within the Online Banking Setup tool. The online id is removed from the GnuCash account if it is no longer matched with an AqBanking account. Bug 797636 - Incorrect Online account matches cannot be deleted A push button with text "Delete selected matches" is added to the "Match Online accounts with GnuCash accounts" page of the "Online Banking Setup" tool. Additionally, the underlying tree view is set to multiple selection mode from single selection mode. Pushing the button will remove the matched GnuCash account from all selected AqBanking (Online) accounts. Bug 797638 - SIGSEGV editing transaction after closing Find Accounts dialog. Bug 797640 - The Reconciliation Window starting balance calculator needs to ignore splits after statement date Bug 797648 - Cannot reconcile both splits of a transaction with 2 splits for bank account subaccounts if only 1 is cleared Force all splits in a transaction for the account being reconciled and its children to have the same reconciliation status. Bug 797656 - Immediate crash when retrieving quotes Other repairs or enhancements not marked as bugs: [report-utilities] fix gnc:account-accumulate-at-dates sorting & operator This commit performs 2 important fixes: 1. The account splitlist walking assumes that the split->date always increases. This is now enforced by sorting the splitlist, *only* if a custom split->date is offered. By default the splits are sorted by posted_date, and if a custom split->date is used, will be stable-sorted to ensure the algorithm works. 2. The handling of splits *ON* date boundaries is fixed. Previously if a split->date was equal to a date boundary, it would be considered part of the "after" date section. It is more intuitive that a date boundary includes all splits on and before the date. When selecting a file for OFX import, restrict the files listed to .OFX (or .QFX) Fix crash when changing account-separator. Change the default focus to search entry for 'Find Account' Fix rounding precision when importing prices from CSV [trep-engine] subtotals when cells have monetary only Instead of accumulating subtotals from any non-#f value, ensure value is a gnc-monetary before accumulating subtotals. This paves the way to allow non-monetary in RHS custom-calculated-cells. Travis - don't try to copy the removed after-failure file to the test container Travis - use ctest built-in feature to verbosely log test failures Fix tokenize_string()to prevent empty strings as Bayes account-matching tokens and remove duplicated tokens. Fix calculation of Bayes account-matching token info to find exactly matching tokens only. Clear online banking KVP from accounts no longer associated with an online one Account template improvements for Swiss-German KMU and Germany SKR04. Appdata file allows packagers to include distribution release information. Ensure that new budgets are saved instead of saving only the state information. Update US Income Tax information for 2019. Correct double-counting of accounts in some cases in US Income Tax Report. Housekeeping - reduce the number of PACKAGE and VERSION related cmake variables Restrict gnucash.pot comment collection to ones beginning with "Translators". At the recommendation of the Translation Project coordinator. [html-table][API] html-table can have multirow-col-headers * NEW API: gnc:html-table-multirow-col-headers and gnc:html-table-set-multirow-col-headers! gnc:html-table col-headers have been augmented to support list of <th> rows. * BACKWARD COMPATIBILITY is offered. Old use of single-row headers API gnc:html-table-col-headers and gnc:html-table-set-col-headers! should be unchanged; will get/set a single row of <th> elements. * NEW functions gnc:html-table-multirow-col-headers and gnc:html-table-set-multirow-col-headers! will get/set an arbitrary number of rows of <th> elements. * using old API gnc:html-table-col-headers on a table, whose multiple row headers have been set, will lead to a warning and return the first row only. Translations Updated: Croatian, German, Polish, Ukrainian.
2020-03-31bitcoin: updated to 0.19.1adam2-8/+7
0.19.1 change log Wallet * Fix origfee return for bumpfee with feerate arg * Fix unique_ptr usage in boost::signals2 * Fix issue with conflicted mempool tx in listsinceblock * Bug: IsUsedDestination shouldn't use key id as script id for ScriptHash * IsUsedDestination should count any known single-key address * Reset reused transactions cache RPC and other APIs * cli: Fix fatal leveldb error when specifying -blockfilterindex=basic twice * require second argument only for scantxoutset start action * zmq: Fix due to invalid argument and multiple notifiers * psbt: handle unspendable psbts * psbt: check that various indexes and amounts are within bounds GUI * Fix missing qRegisterMetaType for size_t * disable File->CreateWallet during startup * Fix comparison function signature * Fix unintialized WalletView::progressDialog Tests and QA * Appveyor improvement - text file for vcpkg package list * fix "bitcoind already running" warnings on macOS * add missing #include to fix compiler errors Platform support * Update msvc build for Visual Studio 2019 v16.4 * Updates to appveyor config for VS2019 and Qt5.9.8 + msvc project fixes * bug-fix macos: give free bytes to F_PREALLOCATE Miscellaneous * init: Stop indexes on shutdown after ChainStateFlushed callback * util: Add missing headers to util/fees.cpp * Unbreak build with Boost 1.72.0 * scripts: Fix symbol-check & security-check argument passing * Log to net category for exceptions in ProcessMessages * Update univalue subtree
2020-03-30Hack to make the hledger build run in C.UTF-8 locale.riastradh1-1/+10
2020-03-30hledger: Import version 1.17.1.1riastradh8-1/+139
XXX Requires setting LANG=C.UTF-8 during hledger build stage.
2020-03-30hs-Decimal: Import version 0.5.1riastradh5-1/+55
2020-03-29Fix build with Boost 1.72joerg2-1/+15
2020-03-24py-stripe: updated to 2.44.0adam2-7/+7
2.44.0: Allow overriding API key in OAuth methods
2020-03-23Remove C.UTF-8 avoidance patch.riastradh3-14/+5
Works better if we just teach the OS about C.UTF-8.
2020-03-23py-beancount: Try to fix bulk build failures.jperkin1-1/+3
2020-03-23py-beancount: sort PLISTwiz1-587/+587
2020-03-23Teach finance/ledger to run tests.riastradh1-1/+4
They mostly pass...