Commit Graph

15893 Commits

Author SHA1 Message Date
ghubstan
a9e7484aee
Add buyer/seller dep & status-desc fields to TradeInfo 2022-01-16 16:43:34 -03:00
ghubstan
5c217793c8
Add buyer/seller dep & status-desc fields to TradeInfoV1Builder 2022-01-16 16:42:34 -03:00
ghubstan
a53fee345f
Add List<OpenOffer> getCanceledOpenOffers() ClosedTradableManager 2022-01-16 16:41:53 -03:00
ghubstan
50bbbfe6c4
Add List<Trade> getTrades() to TradeManager (w/out transitive jfx dep) 2022-01-16 16:41:09 -03:00
ghubstan
b4fa52f4e4
Add List<Trade> getTrades() to FailedTradesManager (w/out transitive jfx dep) 2022-01-16 16:39:07 -03:00
ghubstan
e6e944bcb0
Add GrpcTradesService.getTrades service method 2022-01-16 16:38:09 -03:00
ghubstan
55a54f39b4
Add GetTrades proto message, + needed TradeInfo fields 2022-01-16 16:36:27 -03:00
Bisq GitHub Admin
808c3ad9d9
Merge pull request #5930 from xyzmaker123/modify-accepted-countries
SEPA Account - editable account name and accepted countries
2022-01-12 10:32:20 +01:00
Bisq GitHub Admin
8401b3885b
Merge pull request #5870 from jmacxx/mediation_payout_ux
Improve user experience once mediation has been accepted by both parties
2022-01-12 10:23:02 +01:00
Christoph Atteneder
96471f6509
Apply minor refactorings 2022-01-12 10:18:58 +01:00
Bisq GitHub Admin
553503d389
Merge pull request #5955 from xyzmaker123/edit-offer-button
Edit offer button
2022-01-12 09:42:39 +01:00
Bisq GitHub Admin
ddead5ef54
Merge pull request #5953 from jmacxx/logs_upload
Feature enabling log file upload to mediators
2022-01-12 09:41:32 +01:00
jmacxx
d9ad531b3c
Fix issue of space in file path 2022-01-11 09:23:49 -06:00
Christoph Atteneder
949d5eb27e
Minor refactorings 2022-01-11 13:02:44 +01:00
Christoph Atteneder
a1d0e570d1
Apply minor improvements and clean-ups 2022-01-11 12:36:44 +01:00
Christoph Atteneder
310b9a97f2
Merge pull request #5949 from jmacxx/fix_trade_fee_validation
Fix trade fee validation bug
2022-01-11 11:09:09 +01:00
Christoph Atteneder
4a3e29daf5
Improve wording of trade completed notification popups 2022-01-11 11:02:55 +01:00
Christoph Atteneder
9759cebc4d
Remove unused translations 2022-01-11 10:48:06 +01:00
Bisq GitHub Admin
2c4d289b8a
Merge pull request #5931 from ripcurlx/fix-icon-color
Reset the icon color properly for market price margin information
2022-01-11 09:28:49 +01:00
Christoph Atteneder
b65393c9d7
Merge pull request #5950 from xyzmaker123/explorer-edit-indicator-styling
Editor explorer indicator styling
2022-01-10 20:32:00 +01:00
Christoph Atteneder
5c26c635e5
Merge pull request #5961 from ghubstan/2-api-fail-unfail-trade
Add API methods 'failtrade', 'unfailtrade' + test case (#2)
2022-01-10 12:29:54 +01:00
Christoph Atteneder
96878e5789
Merge pull request #5957 from jmacxx/fix_issue_5956
Wording for Bsq swap cancellation popups & withdrawal prompt
2022-01-10 12:01:33 +01:00
Christoph Atteneder
6c80225dfc
Merge pull request #5951 from ghubstan/rename-keepfunds2closetrade
Rename API method keepfunds -> closetrade (#1)
2022-01-10 11:59:36 +01:00
Christoph Atteneder
3cd67baabb
Merge pull request #5960 from jmacxx/dispute_payout_calc_allow_fractional_percent
Enable fractional percentages in dispute payout calculation field
2022-01-10 11:56:01 +01:00
Christoph Atteneder
76da172883
Merge pull request #5962 from jmacxx/fix_issue_5924
Increase dark mode contrast for fillable fields
2022-01-10 11:53:59 +01:00
xyzmaker123
1da71f6c66
SEPA Account - possibility to modify account name 2022-01-10 10:52:39 +01:00
xyzmaker123
b3bf1903be
SEPA Account - possibility to modify accepted countries 2022-01-10 10:52:25 +01:00
jmacxx
e00dbcdd83
Increase darkmode contrast for fillable fields
Fixes #5924
2022-01-08 13:09:57 -06:00
xyzmaker123
0ab0aed79a
Edit offer button 2022-01-08 12:24:27 +01:00
jmacxx
3ea1543882
fixes for Windows compatability, test added 2022-01-07 19:42:24 -06:00
ghubstan
7690ffd953
Add API methods 'failtrade', 'unfailtrade'
Prerequisite for next PR: Add API method 'gettrades'

The `gettrades` method will show 'open', 'closed', and 'failed' trades.
Users already needed to be able to fail and unfail trades for the
same reasons they do in the UI.  API test cases will need to be able to
fail and unfail trades to check correct behavior of 'gettrades' method.

Based on branch `rename-keepfunds2closetrade`.
2022-01-07 19:11:34 -03:00
jmacxx
6b0fcf5cfb
Enable fractional percentages in dispute payout calculation field 2022-01-07 11:36:25 -06:00
jmacxx
99b4071bdf
Wording for Bsq swap cancellation popups & withdrawal prompt 2022-01-07 10:03:14 -06:00
jmacxx
9334cffc89
Feature enabling log file upload to mediators 2022-01-06 13:22:44 -06:00
ghubstan
905841b2b2
Adjust api beta test guide to new closetrade cmd 2022-01-05 12:19:36 -03:00
ghubstan
a9aaba87fa
Rename API method keepfunds -> closetrade
Trade proceeds and deposits have already been transfered to Bisq wallets
before the `keepfunds` command is (was) executed;  `keepfunds` merely moves
open trades to closed trades lists and persistence files.  Renaming `keepfunds`
as `closetrade` makes its purpose clear to API users.

The commit modifies only method names and comments in api server+cli classes,
apitest cases, and api trade simulation scripts.

Based on `master`
2022-01-05 12:10:46 -03:00
jmacxx
298aca40bc
Fix trade fee validation bug when two BSQ UTXOs used to pay the fee.
A test has been added to validate the UTXO issue above.
Other tests have been updated as a result of the changes in PR 5826
where fee parameter is now supplied from a filter; this results
in more accurate (less lenient) fee checking.
2022-01-04 09:25:05 -06:00
xyzmaker123
4af0d2c3f9
Editor explorer indicator styling 2022-01-04 15:01:23 +01:00
Christoph Atteneder
ce76389402
Merge pull request #5948 from bisq-network/dependabot/github_actions/actions/setup-java-2.5.0
Bump actions/setup-java from 2.4.0 to 2.5.0
2022-01-03 12:49:55 +01:00
Christoph Atteneder
b5fab6470e
Merge pull request #5914 from jmacxx/fix_fat_finger_protection
Fix fat finger protection in Offer Entry screen
2022-01-03 12:26:16 +01:00
Christoph Atteneder
dde48f7d9e
Merge pull request #5935 from jmacxx/dao_state_store_and_statistics
Improve DAO state store persistence and statistics logging [chimp1984]
2022-01-03 12:24:18 +01:00
Christoph Atteneder
8d4a785c39
Merge pull request #5947 from bisq-network/dependabot/github_actions/actions/checkout-2.4.0
Bump actions/checkout from 2.3.5 to 2.4.0
2022-01-03 12:23:43 +01:00
Christoph Atteneder
b3c85342e3
Merge pull request #5938 from ghubstan/7-deprecate-api-getmyoffer
Deprecate API 'getmyoffer' (#7)
2022-01-03 12:15:35 +01:00
Christoph Atteneder
bb68ff03a2
Merge pull request #5939 from ghubstan/8-api-payment-acct-opt-n-doc
Fix API CLI's '--payment-account-id' opt name, document 'createcryptopaymentacct' (#8)
2022-01-03 12:14:58 +01:00
dependabot[bot]
df5a062040
Bump actions/setup-java from 2.4.0 to 2.5.0
Bumps [actions/setup-java](https://github.com/actions/setup-java) from 2.4.0 to 2.5.0.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](5f00602cd1...f0bb916062)

---
updated-dependencies:
- dependency-name: actions/setup-java
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-01-03 10:56:02 +00:00
dependabot[bot]
01c64d2394
Bump actions/checkout from 2.3.5 to 2.4.0
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.5 to 2.4.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](1e204e9a92...ec3a7ce113)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-01-03 10:55:58 +00:00
Christoph Atteneder
ec42d104de
Merge pull request #5943 from dbast/master
CI Security: Use Github actions via sha1 (not tags) and keep them updated via dependabot
2022-01-03 11:55:35 +01:00
Daniel Bast
32ddd4dbf9
Use Github actions via sha1 (not tags) and keep them updated via dependabot
Tags are mutable and can change unexpectedly. Referencing actions via sha1
is more secure in that regard. Dependabot helps to automatically update to
newer versions.
2021-12-30 09:55:40 +01:00
ghubstan
25c67902cd
Merge branch 'master' into 8-api-payment-acct-opt-n-doc 2021-12-29 10:06:06 -03:00
ghubstan
bf14c65c8b
Remove duplicated methods after conflict resolution attempt 2021-12-29 09:59:48 -03:00