aboutsummaryrefslogtreecommitdiff
path: root/packages
AgeCommit message (Collapse)Author
2022-09-14fixing properly adding query paramsSebastian
2022-09-14stories resize (wip)Sebastian
2022-09-14import a complete database from cliSebastian
2022-09-13wallet-core: fix withdrawTestBalance commandFlorian Dold
2022-09-13fix test and loggingFlorian Dold
2022-09-13wallet-core: introduce easier syntax for transactionsFlorian Dold
2022-09-13wallet-core: uniform retry handlingFlorian Dold
2022-09-13adding missing i18nSebastian
2022-09-12bump manifest versionFlorian Dold
2022-09-12wallet-core: fix creation of refresh session after peer-{push,pull}Florian Dold
2022-09-12hours should be modulo 24, fix #7342Sebastian
2022-09-12add clipboard permsSebastian
2022-09-12ref #7323Sebastian
2022-09-12wallet-core: make bank access API URL optional in runIntegrationTestFlorian Dold
2022-09-12version bumpFlorian Dold
2022-09-10add redirect to withdrawSebastian
2022-09-10fix #7343Sebastian
2022-09-09find taler action in clipboard and withdraw with mobileSebastian
2022-09-08include age commitment proof in refreshed coinsFlorian Dold
2022-09-07bump manifest versionFlorian Dold
2022-09-07add a tab update listener to look for taler://Sebastian
2022-09-07common manifest, bump versionFlorian Dold
2022-09-07allow age-restricted withdrawal from the CLIFlorian Dold
2022-09-07also accept payment in testFlorian Dold
2022-09-07firefox needs request origin permission as optional_permissionsSebastian
2022-09-07don't send dev files into the zip fileSebastian
2022-09-07fix typoFlorian Dold
2022-09-06bump DB major versionFlorian Dold
2022-09-06bump manifest versionFlorian Dold
2022-09-06listExchangesDetailed to getExchangeDetailedInfo & ageRestriction taken from ↵Sebastian
the denoms
2022-09-05-fix test setupFlorian Dold
2022-09-05add test for mixed age restrictionsFlorian Dold
2022-09-05wallet-core: make listExchanges return less dataFlorian Dold
Since the webextension UI depends on the full response, we have a temporary listExchangesDetailled request. See https://bugs.taler.net/n/7323 for details.
2022-09-05updated test-vectors for edx25519_derive (original typo in gnunet fixed)Özgür Kesim
2022-09-05replace __VERSION__ with a string definitionSebastian
2022-09-05adding informantion about the service worker version on the setting pageSebastian
2022-09-05upgrade typescript (and some related deps)Florian Dold
2022-09-05consider supported wire types when selecting coinsFlorian Dold
Also add an integration test to check for the correct wallet behavior.
2022-09-05wallet-core: fix format of purse depositsFlorian Dold
2022-09-05wallet-core: include age restriction in p2p signature, mark coins as spentFlorian Dold
2022-09-05add integration test for p2p age restrictionsFlorian Dold
2022-09-05remove abort-pay testFlorian Dold
This test can't work anymore, as the merchant does batch deposits. We should eventually add a different test as replacement that uses a double-spent coin (via a forced coin selection).
2022-09-04adding version and commit into the setting sectionSebastian
2022-09-02reproduce issue #7318Sebastian
2022-09-01wallet-core: fix withdrawal of age-restricted denoms without age restrictionFlorian Dold
2022-09-01wallet-core: fix issue with crock encoding of age restrictionsFlorian Dold
2022-09-01add invoice|transfer created viewSebastian
2022-09-01show summary on tx historySebastian
2022-09-01show sharing action when the tx is not completedSebastian
2022-09-01more information about p2p:Sebastian
- added the contract terms on WgInfoBankPeerPush and WgInfoBankPeerPull, so we can show summary and expiration in the ui - added info: PeerInfoShort on Transaction* type - definition of completed p2p tx: - push debit: Amounts.cmp(sentAmount, pickedUpAmount) === 0. is this transfer already picked up? (not working) - pull debit: pi.paid, is this invoice already paid? - pull credit: wsr.timestampFinish, has someone already paid my invoice? - push credit: wsr.timestampFinish, have I already picked up this? - changed the txId of peer pull debit to have the incomingId instead of pursePub (allow deletion)