Commit Graph

751 Commits

Author SHA1 Message Date
Christoph Atteneder
5553b3b465
Merge pull request #2190 from devinbileck/update-linux-packaging-process
Update linux packaging process
2019-01-07 11:51:25 +01:00
Christoph Atteneder
b03e96821c
Change path structure to match new build process on Linux and Windows 2019-01-07 11:15:48 +01:00
Christoph Atteneder
6966047bc4
Fix wrong path of tools.jar 2019-01-07 11:15:14 +01:00
Christoph Atteneder
148cd30b39
Not clean up old installer of same version as it also deletes the new file on Ubuntu 2019-01-07 11:09:06 +01:00
Christoph Atteneder
dbb8483be0
Run file permission workaround properly for jar-already-exists use case 2019-01-07 10:58:26 +01:00
Christoph Atteneder
fcd7ae961b
Not run everything with root user 2019-01-07 10:56:51 +01:00
Christoph Atteneder
12db932d6e
Not override JAVA_HOME
Developer should configure this properly on its local machine before running the script
2019-01-07 10:55:45 +01:00
Christoph Atteneder
c985bf64c2
Merge pull request #2187 from CaveSpectre11/2134-focus-color
Focus color of buttons should be more saturated/darker (Issue #2134)
2019-01-07 08:59:50 +01:00
Christoph Atteneder
75e9e99d87
Merge pull request #2205 from j3ko/hotfix/take_offer
Update offer button state on account change
2019-01-07 08:51:40 +01:00
Manfred Karrer
5be44132ba
Apply code inspection
- Add null and isPresent checks
2019-01-07 01:58:09 +01:00
Manfred Karrer
af439a86ad
Remove market price based fee calculation 2019-01-07 01:52:32 +01:00
Manfred Karrer
1c14b07fa1
Add null check 2019-01-06 13:05:46 +01:00
Manfred Karrer
618281cee9
Remove BisqFacade 2019-01-06 03:34:14 +01:00
Manfred Karrer
c7f8faa804
Implement BisqSetupCompleteListener at BisqExecutable 2019-01-06 03:30:27 +01:00
Jeffrey Ko
50b41369ee
Update offer button state on account change
Add updateButtonDisabledState() to onPaymentAccountSelected() in
TakeOfferViewModel since changing the account dropdown in the take
offer screen does not trigger an update of the "Next Step" button.

The default amount of an offer should not change to less than what is
actually offered, change onPaymentAccountSelected() in
TakeOfferDataModel to take into account the min. amount offered.

In TakeOfferView, the payment account defaults to the last one
selected.  Make sure TakeOfferViewModel and TakeOfferDataModel take
this into account in a couple locations.
2019-01-05 00:07:08 +07:00
Christoph Atteneder
d1a5aaec3e
Merge pull request #2164 from devinbileck/update_windows_install_experience
Update windows install experience
2019-01-04 12:09:27 +01:00
Devin Bileck
3683204446
Generate RPM package
An RPM package is now generated as part of the Linux packaging script.
The packaging script can be run on any Debian or Redhat based
system and will generate both a deb and rpm package.

Resolves https://github.com/bisq-network/bisq/issues/401
2019-01-04 00:59:48 -08:00
Devin Bileck
fd775eb128
Update linux packaging process
The 64bitBuild.sh script has been renamed to package.sh and has
been updated so that it is capable of performing the complete packaging
process without having to rely on the jar first being built and prepped
from the MacOS scripts. However, it does support having the jar
previously built and prepped and will look for a prepped jar in the
desktop/package folder. If not found, it will build and prep it
prior to packaging.

Additionally, the Bruntime option passed to javapackager is unnecessary and
has been removed. The Bruntime option is valid only when the -native
option is set to jnlp.

Also, the prepare-system.sh script was removed as it did not appear to be
doing anything useful.

Finally, a release.sh script has been added that will perform the
release process of copying necessary files to a versioned release folder
and generating/verifying signatures. Windows and MacOS packaged installers
should be copied to their appropriate package folders prior to
executing this script if they are to be included in this release
process, otherwise only the Linux files will be included.
2019-01-03 00:33:00 -08:00
Cave Spectre
c495118c47 #2134 - Focus color of buttons should be more saturated/darker not lighter 2018-12-31 12:02:36 -05:00
sqrrm
9fc76a4cfc
Fix icon handling in vote result table, fix #2141 2018-12-25 22:07:11 +01:00
Devin Bileck
29cbec1d4f
Update windows install experience
- Increase the minimum supported OS version to Windows 7 with SP1.
Previously it was Windows XP which has been EOL for some time now.
Hopefully no one is still using Windows XP.

- Show a final dialog once the install has completed. This will inform
the user that the install has completed with an option to launch the
application. Previously it would skip this final dialog and immediately
launch the application, but the user may not want to launch it
immediately.

- Create an application shortcut on the user's desktop.

- Check if the application is running prior to install or uninstall and
abort with a prompt to the user that the application must first be
closed.

- German, French, and Spanish translations. The installer should
auto-detect the OS language and display all text in the appropriate
language. For now I have just added a couple languages, but it is very
easy to add any of the other languages supported by Inno Setup.

- Additionally, I removed a few unnecessary items that weren't being
utilized such as installing a service.
2018-12-22 14:37:25 -08:00
Devin Bileck
7d5eee8602
Update windows packaging process
The 64bitBuild.bat script has been renamed to package.bat and has
been updated so that it is capable of performing the complete packaging
process without having to rely on the jar first being built and prepped
from the MacOS scripts. However, it does support having the jar
previously built and prepped and will look for a prepped jar in the
desktop/package folder. If not found, it will build and prep it
prior to packaging the executable.

Additionally, some unnecessary options that were being passed to
javapackager.exe have been eliminated such as BappVersion and Bruntime.
AppVersion is now being passed via environment variables and the
Bruntime option is valid only when the -native option is set to jnlp.

The Bisq.iss file was changed so it no longer needs to be updated with
AppVersion every time as it is being passed from package.bat via
environment variables. Also, AppCopyrightYear does not need to be
updated as it is determined automatically. A few other options were
added or tweaked as well.

Finally, a release.bat script has been added that will perform the
release process of copying necessary files to a versioned release folder
and generating/verifying signatures. Linux and MacOS packaged installers
should be copied to their appropriate package folders prior to
executing this script if they are to be included in this release
process, otherwise only the Windows files will be included.

The MacOS and Linux packaging scripts should be reviewed and updated
accordingly.
2018-12-22 01:14:54 -08:00
Aruna Surya
5c5b93803c
Correct minor grammatical mistakes in the T&C 2018-12-18 20:16:43 +01:00
Christoph Atteneder
9e22a7df6d
Add print tool for all markets used in https://github.com/bisq-network/bisq-website/blob/master/_includes/market_currency_selector.html 2018-12-13 14:54:08 +01:00
Christoph Atteneder
0bc29e198c
Ignore monospace spacing tests until re-introduced again 2018-12-13 14:20:13 +01:00
Christoph Atteneder
50d4c6c1fc
Bump version number 2018-12-13 13:59:08 +01:00
Manfred Karrer
ac2b9d8f1e
Fix render issue with table size 2018-12-12 22:51:44 +01:00
Christoph Atteneder
f49b4055f7
Merge pull request #2103 from ripcurlx/fix-windows-installer
Fix Windows installer issues
2018-12-12 08:52:34 +01:00
Manfred Karrer
d2341b659a
Merge pull request #2111 from ripcurlx/ui-fixes
Different ui bug fixes
2018-12-11 19:19:41 +01:00
Manfred Karrer
f0025a4ab6
Merge pull request #2109 from ripcurlx/minor-dao-fixes
Minor DAO ui fixes
2018-12-11 19:17:55 +01:00
Christoph Atteneder
84c73f4ce4
Remove unnecessary uppercase 2018-12-11 16:48:59 +01:00
Christoph Atteneder
11a6dc9221
Fix upper case issue on label update 2018-12-11 16:47:30 +01:00
Christoph Atteneder
fe53c0b7bd
Trigger validation of volume when percentage price is changed. Fixes #2044. 2018-12-11 16:26:03 +01:00
Christoph Atteneder
2da9643606
Round volume in contract views. Fixes #2042. 2018-12-11 16:07:27 +01:00
Christoph Atteneder
ecc0424542
Prevent duplicate activation of account views. Fixes #2053. 2018-12-11 15:28:34 +01:00
Christoph Atteneder
e7e4484bdc
Reset previous selected tab to prevent unexpected lifecycle calls 2018-12-11 14:26:38 +01:00
Christoph Atteneder
98c2fd65ec
Use upper case in button labels 2018-12-11 14:26:02 +01:00
Manfred Karrer
bc8a6b676c
Set invisible before height is set to avoid flicker 2018-12-11 13:58:26 +01:00
Manfred Karrer
1769fcc067
Fix missing render update issue 2018-12-11 13:55:56 +01:00
Christoph Atteneder
94a6c73e53
Use different install trigger to clean up local tor and app directories 2018-12-11 12:01:59 +01:00
Christoph Atteneder
02b0f17fc9
Adapt to redesign 2018-12-10 15:24:02 +01:00
Christoph Atteneder
b9a286047f
Add script to clean up app directory and change privileges to poweruser 2018-12-10 15:20:34 +01:00
Manfred Karrer
f3efe505bf
Use JFXButton for voting icons 2018-12-09 20:24:03 +01:00
Manfred Karrer
f7572cdca6
Revert https://github.com/bisq-network/bisq/pull/2099
Sorry was too fast with an untested ACK and merge.

- The icon loses it's color so its always black now. I think we should
stick with the colors.
- The duration was set to 10 seconds. I thinks that is too long.
- Not clear what the 'Object a = new Object() {{' definition means. I
assume you want a initializer block instead
('{ itemProperty().addListener.... }')
- We should maybe better make a small component out of that button
which behaves similar like the checkbox or radio button animation.
Maybe we can use those components instead of a normal button.
Or maybe the normal button animation from the new UI framework is enough.
2018-12-09 20:21:37 +01:00
Manfred Karrer
7f6aa8f80a
Merge pull request #2099 from sqrrm/voting-ui-background
Highlight the changed vote for 10 seconds
2018-12-09 19:46:38 +01:00
sqrrm
eecf8c6553
Highlight the changed vote for 10 seconds 2018-12-09 15:39:26 +01:00
Manfred Karrer
f27918c28a
Handle RPC errors
- Trigger apply from snapshot if rpc error is detected
- Add warn handler to show only warning msg instead of error msg if
btc full node is not running in full mode
2018-12-09 14:32:16 +01:00
Manfred Karrer
6c0c3ace3c
Remove BCH
Applying the proposal "Remove BCH from Bisq"
(https://github.com/bisq-network/proposals/issues/61)
There have been 44 upvotes and 0 downvotes so a clear signal that the
Bisq community does not want to have BCH listed on Bisq.
2018-12-08 18:14:33 +01:00
sqrrm
91f14f7faf
Show remove column header during proposal phase 2018-12-08 13:13:45 +01:00
sqrrm
40698fd413
Fix issue with wrong vote icons when scrolling
JavaFX reuses the cells in a table as they're expensive to create. The
iconButton needs to be a temporary as it will otherwise update cells
with the button icon of another item when scrolling fast.
2018-12-07 01:06:19 +01:00
sqrrm
d3498ade5c
Add header to my vote icon column 2018-12-06 23:24:09 +01:00
Manfred Karrer
0f45e86895
Merge pull request #2077 from ripcurlx/bug-fixes
Fix wording and close window without action
2018-12-06 16:25:44 +01:00
Manfred Karrer
aadfd5c997
Merge pull request #2074 from sqrrm/proposal-display
Don't validate display fields in proposal display
2018-12-06 16:25:25 +01:00
Christoph Atteneder
3489b36194
Use secondary action instead of close button, which fixes #2051. 2018-12-06 11:47:03 +01:00
Christoph Atteneder
26cdbbcb53
Introduce secondary action for popup 2018-12-06 11:45:58 +01:00
Christoph Atteneder
d717a83f23
Change wording in currency dropdown. Fixes #2068. 2018-12-06 09:50:06 +01:00
Manfred Karrer
806fcbe7c0
Merge pull request #2062 from ripcurlx/left-align-columns
Left align columns, except last one
2018-12-05 20:24:22 +01:00
Manfred Karrer
47a2aff371
Merge pull request #2060 from ripcurlx/fix-cash-deposit-extra-requirements-missing
Fix wrong positioning of requirements field in CashDeposit
2018-12-05 19:38:10 +01:00
Christoph Atteneder
9b7b0cf8be
Left align all columns, except last one (right-aligned)
Last columns with avatars or icons are centered
Use IBM Sans in columns
2018-12-05 14:48:32 +01:00
Christoph Atteneder
73aead2400
Simplify component 2018-12-05 14:46:05 +01:00
Christoph Atteneder
2b3874a81e
Fix wrong positioning of requirements field in CashDeposit to prevent scrolling 2018-12-05 09:48:22 +01:00
Christoph Atteneder
d96ee9ce01
Fix wrong path in signing process 2018-12-04 15:13:33 +01:00
Christoph Atteneder
74213ed9c3
Implement workaround for Linux build 2018-12-04 15:13:01 +01:00
sqrrm
317c0fb789
Don't validate display fields in proposal display 2018-12-04 14:20:44 +01:00
Christoph Atteneder
07ae9c31a4
Update icon 2018-12-03 19:39:15 +01:00
Christoph Atteneder
309f4b98a8
Fix wrong path 2018-12-03 19:38:47 +01:00
Christoph Atteneder
436f27b19d
Remove 32bit versions and update for Java 9+ support 2018-12-03 16:48:53 +01:00
Christoph Atteneder
3527f8583e
Merge pull request #2034 from ripcurlx/ui-improvements
UI improvements for release
2018-12-03 10:10:37 +01:00
Christoph Atteneder
002f8f3771
Force address hyperlinks to be centered 2018-12-03 10:03:18 +01:00
Christoph Atteneder
083856aace
Extend row height 2018-12-03 09:47:52 +01:00
Christoph Atteneder
77989ebf91
Fix scrolling issue 2018-12-03 09:41:23 +01:00
Christoph Atteneder
d9ae83525a
Change max input length 2018-12-03 09:02:28 +01:00
Christoph Atteneder
ceeefa4367
Add button hover effect 2018-12-03 08:18:47 +01:00
Christoph Atteneder
4be4a88b97
Add new splash screen design 2018-12-03 08:17:28 +01:00
Devin Bileck
b85223810c
Normalize line endings
Change line endings for desktop/src/main/resources/fonts/OFL.txt to LF
rather than CRLF for consistency.
2018-12-02 22:04:50 -08:00
Manfred Karrer
de54518839
Set version 0.9.0 2018-12-03 00:38:44 +01:00
Manfred Karrer
538c0bb691
Add default value to avoid null pointer 2018-12-03 00:06:28 +01:00
Manfred Karrer
b8c85983e3
Remove devMode check 2018-12-03 00:06:13 +01:00
Manfred Karrer
ff89759bd0
Add progressbar to P2P network state in footer 2018-12-02 23:44:51 +01:00
Manfred Karrer
e1e9180291
Fix wrong URL in DAO views 2018-12-02 21:21:50 +01:00
Manfred Karrer
7c2d10066f
Fix flickering of json popup, add esc handler
- popup was visible shortly in wrong position
- pressing escape did not close popup
2018-12-02 15:28:30 +01:00
Manfred Karrer
4cdbc816ce
Fix missing reason for dispute fields
- reason for dispute fields have been not visible in dispute payout
window (row index of next iem was not increased)
- Moved payout amount fields to second column to not exceed window
height
- Set window width wider
- Cleanups
2018-12-02 15:19:07 +01:00
Manfred Karrer
2ba21f0277
Update display string 2018-12-02 14:24:37 +01:00
Manfred Karrer
5a11314abb
Merge branch 'release-candidate-0.9.0' into do-not-use-tor-for-btcj-testnet 2018-12-02 13:37:05 +01:00
Devin Bileck
76c8a148f3
Fix incorrectly named Windows system tray 2x icon 2018-12-02 00:18:14 -08:00
Manfred Karrer
5b3d521e36
Imprve text and actiavte chainSyncIndicator when not synced 2018-12-02 01:18:58 +01:00
Manfred Karrer
717f5fb9b2
Use date of 0.5 release if no date for seed was specified
We had set the data to 0 which would lead to set the wallet date to the
genesis block. We had a "hard fork" with v0.5. so we can use that date
to ensure that the wallet birth date cannot be older.
2018-11-30 22:55:30 +01:00
Manfred Karrer
3c6342f4d6
Merge branch 'release-candidate-0.9.0' into bug-fixes-dao 2018-11-30 17:36:30 +01:00
Manfred Karrer
9ced987c3d
Use a min. trial period of 30 days for asset listings 2018-11-30 16:49:16 +01:00
sqrrm
cbbc723cd1
Make role details popup readable 2018-11-30 16:15:53 +01:00
Manfred Karrer
7fefa1e5e7
Only check if data adn txType is valid in getAllValidBallots
Rename getValidAndConfirmedBallots to getAllValidBallots.
We cannot do a phase and cycle check as we are interested in
historical ballots as well.

Use warn level for logs in case data is missing and requested to
give more weight to those exceptional cases.
2018-11-30 16:04:16 +01:00
Manfred Karrer
44c62716d6
Add validation for ballots used for vote result 2018-11-30 15:20:10 +01:00
Manfred Karrer
a0cbfe4d58
Merge pull request #2002 from ripcurlx/ui-improvements
Redesign: UI improvements/fixes during release testing
2018-11-29 22:20:28 +01:00
Christoph Atteneder
a018068bc2
Improve WesternUnion form for buyer 2018-11-29 21:12:25 +01:00
Christoph Atteneder
8b290c3a50
Improve USPostalMoneyOrder form for buyer 2018-11-29 21:07:35 +01:00
Christoph Atteneder
89707ae663
Improve Swish form for buyer 2018-11-29 21:03:14 +01:00
Christoph Atteneder
2e88b5ee19
Add workaround again for button labels 2018-11-29 20:54:59 +01:00
Christoph Atteneder
8b8022aa7e
Position cancel button right 2018-11-29 20:54:17 +01:00
Christoph Atteneder
257170675d
Remove top padding 2018-11-29 20:53:42 +01:00
Manfred Karrer
d0c11ded15
Merge branch 'release-candidate-0.9.0' into bug-fixes-dao 2018-11-29 18:13:21 +01:00
Manfred Karrer
2a217aba61
Add old colored tor icons 2018-11-29 18:12:42 +01:00
Manfred Karrer
459893db88
Merge branch 'release-candidate-0.9.0' into bug-fixes-dao 2018-11-29 18:08:37 +01:00
Christoph Atteneder
cba70566f7
Use BisqTextField to align top label right 2018-11-29 16:59:33 +01:00
Christoph Atteneder
5238a61f4f
Remove unnecessary colons 2018-11-29 16:52:11 +01:00
Christoph Atteneder
647f5b1073
Fix scrolling issue and wrong resource key. Fixes #2001. 2018-11-29 16:39:24 +01:00
Christoph Atteneder
f191a944e6
Reduce number of items in combobox list 2018-11-29 16:01:39 +01:00
Christoph Atteneder
db4c633fed
Use lighter selection color 2018-11-29 15:53:00 +01:00
Christoph Atteneder
99ebde61af
Enable validation when switching between countries 2018-11-29 14:54:06 +01:00
Christoph Atteneder
bf4a06f38a
Validate fields after reset to remove old error messages. Fixes #1999. 2018-11-29 14:53:21 +01:00
Manfred Karrer
1b47e891ee
DAO bugfixes
- Only show active bonds in make proposal screen
- Check if ballot exists for evaluated proposals in result view
- Use available amount instead of genesis issuance at market cap
- Fix but with button handler for removing a proposal
- Cleanups
2018-11-29 13:40:48 +01:00
Christoph Atteneder
e5959b9ee1
Reset content of previous selected tab to prevent unexpected activate calls. Fixes #1994. 2018-11-29 11:31:34 +01:00
Christoph Atteneder
30a7f092ce
Not remove last character of textfield label. Fixes #1998. 2018-11-29 10:50:03 +01:00
Christoph Atteneder
74d5de3efe
Add high res tray icon for Windows. Fixes #1996. 2018-11-29 10:45:37 +01:00
Manfred Karrer
15f04362d3
Add -f option to rm task 2018-11-28 21:18:36 +01:00
Manfred Karrer
91004065c9
Fix wrong text 2018-11-28 21:15:50 +01:00
Manfred Karrer
d025d993eb
Merge pull request #1989 from ripcurlx/fixes-during-testing
Redesign: Bug fixes during testing
2018-11-28 18:17:34 +01:00
Christoph Atteneder
5c804018ab
Align offer count in trade currency combobox 2018-11-28 16:37:01 +01:00
Christoph Atteneder
b0d337bae5
Align offer count in trade currency combobox 2018-11-28 16:00:43 +01:00
Christoph Atteneder
18cda37846
Increase postal address text area to fit three lines without scrolling 2018-11-28 15:03:32 +01:00
Christoph Atteneder
888e4f5bc5
Fix wrong paddings for bank accounts with holder id 2018-11-28 12:53:10 +01:00
Christoph Atteneder
0f3186b54e
Add info labels on top where necessary 2018-11-28 12:31:54 +01:00
Christoph Atteneder
fb2aab8b25
Update buy/sell icons and remove unused once 2018-11-28 12:05:56 +01:00
Christoph Atteneder
e09520f4a0
Fix wrong width property 2018-11-28 10:49:23 +01:00
Christoph Atteneder
aa4eda4eaf
Add underline to hyperlinks and set a more decent color 2018-11-28 10:48:57 +01:00
Manfred Karrer
1bbb47ff5d
Merge pull request #1985 from ripcurlx/ui-improvements
Redesign: UI improvements based on feedback from testers
2018-11-27 22:33:21 +01:00
Christoph Atteneder
355b00998f
Fix scrollbar in offer book 2018-11-27 17:52:54 +01:00
Christoph Atteneder
d278e193c9
Fix spacing in secondary navigation when DAO is not enabled 2018-11-27 17:48:42 +01:00
Christoph Atteneder
64aec44b16
Add unified padding of 15px 2018-11-27 17:37:34 +01:00
Christoph Atteneder
d525bf9327
Fix preferences view and adapt title group label size 2018-11-27 17:10:29 +01:00
Christoph Atteneder
21be64ba7c
Adapt trade charts 2018-11-27 16:43:18 +01:00
Christoph Atteneder
769b877b3f
Change selection color in tables and lists 2018-11-27 16:24:22 +01:00
Christoph Atteneder
47f1a0fc90
Adapt Offerbook page 2018-11-27 16:24:03 +01:00
Manfred Karrer
f59914f160
Send mobile notification msg in a thread.
The http request can take a few seconds to return so we use a thread to
send it and return the result in a handler.
2018-11-27 14:32:51 +01:00
Christoph Atteneder
c757a99cab
Cleanup GUIUtil 2018-11-27 11:56:53 +01:00
Christoph Atteneder
accd194332
Decrease padding of emergency wallet title window 2018-11-27 11:42:44 +01:00
Christoph Atteneder
c1599646e4
Increase padding of dispute details title 2018-11-27 11:42:17 +01:00
Christoph Atteneder
bf850047ba
Limit max size of confidence indicator 2018-11-27 11:35:34 +01:00
Christoph Atteneder
87f45cb0bb
Hide spinner after successful edit 2018-11-27 11:18:06 +01:00
Christoph Atteneder
12bebb3827
Move badge icon up 2018-11-27 11:09:28 +01:00
Christoph Atteneder
6acc0cd0f2
Merge pull request #1975 from ManfredKarrer/make_tor_icon_grey
Remove color from Tor icon
2018-11-27 10:21:25 +01:00
Manfred Karrer
68eafcb223
Hide dao options in settings for mainnet 2018-11-27 01:01:47 +01:00
Manfred Karrer
46eca9451f
Remove color from Tor icon
The purple of the tor icon clashes hard with out green.
I converted to greyscale.
@pedro, @christoph: Feel free to change to an alternative if you don't
like it...
2018-11-26 22:44:53 +01:00
Manfred Karrer
7f730451d6
Merge pull request #1973 from ripcurlx/ui-improvements
Redesign: UI Improvements and fixes
2018-11-26 19:29:29 +01:00
Christoph Atteneder
5f5f919ee0
Remove unnecessary check 2018-11-26 18:08:27 +01:00
Christoph Atteneder
aeaee6b180
Hide advanced options group immediately instead of animation 2018-11-26 16:02:32 +01:00
Manfred Karrer
a51d337c25
Merge branch 'release-candidate-0.9.0' into bug-fixes 2018-11-26 15:32:49 +01:00
Christoph Atteneder
52af509290
Remove setting visiblity of a bound property 2018-11-26 11:56:47 +01:00
Christoph Atteneder
b0683a461f
Update tray icons for macos 2018-11-26 11:46:33 +01:00
Christoph Atteneder
c7c20fb2ad
Merge pull request #1958 from ManfredKarrer/improve-backward-compatibility-with-new-arb-selection
Improve backward compatibility with new arb selection
2018-11-26 11:25:26 +01:00
Manfred Karrer
71162dddc3
Fix missing currency check at create offer
At create offer the last selected currency was applied without checking
if the currency matches. So when browsing an altcoin you got the last
fiat account selected in case u had multiple fiat accounts and selected
one in the past.
2018-11-26 00:53:28 +01:00
Manfred Karrer
735e4588ce
Merge branch 'release-candidate-0.9.0' into improve-backward-compatibility-with-new-arb-selection 2018-11-25 23:55:01 +01:00
Manfred Karrer
83190fb237
Merge branch 'release-candidate-0.9.0' into persist-selected-account-at-takeoffer 2018-11-25 23:54:23 +01:00
Manfred Karrer
0e64a7193d
Merge branch 'master' into release-candidate-0.9.0 2018-11-25 23:52:51 +01:00
Manfred Karrer
4930c1297e
Add getActivePaymentMethods for filtered payment methods 2018-11-25 03:21:12 +01:00
Manfred Karrer
065a3de4ea
Set visible state for isTradeFeeVisible in model
Because visible property of tradeFeeDescriptionLabel is bound we cannot
set it with tradeFeeDescriptionLabel.setVisible(false) in the activate()
method. We use the property in the model instead.
2018-11-25 03:04:02 +01:00
Manfred Karrer
edd7bbee62
Set oracle jdk as JAVA_HOME when building app
Open jdk does not has the java packager.
2018-11-25 03:01:38 +01:00
Manfred Karrer
feb6e64b75
Merge pull request #1960 from rex4539/http-to-https
http -> https
2018-11-24 22:44:49 +01:00
Dimitris Apostolou
4de530e5af
http -> https 2018-11-24 14:28:43 +02:00
Chris Beams
931f369fb6
Include executable name and version in help output 2018-11-24 13:24:03 +01:00
Manfred Karrer
880a8412fc
Merge pull request #1957 from j3ko/release-candidate-0.9.0
Add advanced cash payment method
2018-11-24 12:09:04 +01:00
Jeffrey Ko
dd3abd2996
make advanced cash payment method more consistent ok pay payment method 2018-11-24 13:26:12 +07:00
Manfred Karrer
d7fe1dbeb3
Handle edge cases with removed arbitrators 2018-11-24 00:44:56 +01:00
Manfred Karrer
319c043e43
Handle backward compatibility with new arbitr. selection
- Remove activationDate
- Refactor ProcessOfferAvailabilityResponse and handle offers from
old versions in case the available arbitrators has changed.
- Remove MakerVerifyMediatorSelection and TakerSelectArbitrator

The mediator handling should be removed as it is not used and not
intended anymore to be used with the current trade protocol, but we
leave that as it is a bit tricky to ensure backward compatibility.
Also the setting of the arbitrator in trade should be further refactored
but as it is also easy to break backward compatibility here we leave
that for now. As we work on the new trade protocol that domain will
become deprecated anyway in the next months...
2018-11-24 00:23:46 +01:00
Manfred Karrer
1ba0402dfb
Handle backward compatibility with new arbitration selection model. 2018-11-23 22:14:31 +01:00
Jeffrey Ko
4cd2ac8d40
Add advanced cash payment method 2018-11-23 20:50:03 +07:00
Manfred Karrer
15c776874e
Merge branch 'master' into release-candidate-0.9.0
# Conflicts:
#	.editorconfig
2018-11-23 11:24:07 +01:00
Christoph Atteneder
be945c4854
Display payment account name if only one account is applicable 2018-11-22 12:30:13 +01:00
Christoph Atteneder
a7a65052c5
Increase padding for account limitation when adding a new payment account to not overlap validation errors 2018-11-22 12:29:50 +01:00
Christoph Atteneder
735ab3acda
Update payment account selection when payment accounts are changed 2018-11-22 12:28:42 +01:00
Christoph Atteneder
b0621fd7c4
Use monospace font for all columns if it is used in one column 2018-11-21 16:23:41 +01:00
Christoph Atteneder
0853f1dc6f
Position notification popups to be top-right aligned 2018-11-21 15:54:46 +01:00
Christoph Atteneder
4c95d030e8
Adapt layout of popup windows 2018-11-21 15:31:49 +01:00
Christoph Atteneder
5f78103bae
Reduce visible row count to not exceed window size 2018-11-21 12:03:44 +01:00
Christoph Atteneder
48b4c3ce9c
Increase first line padding 2018-11-21 11:49:57 +01:00
Christoph Atteneder
15b7b8593f
Hide row focus border in table views 2018-11-21 11:46:12 +01:00
Christoph Atteneder
c969228578
Hide percentage value in busy animation 2018-11-21 11:31:19 +01:00
Christoph Atteneder
7f0439a028
Adapt show wallet data window popup layout 2018-11-21 10:56:35 +01:00
Christoph Atteneder
3ee5296194
Use new brand color for volume 2018-11-21 10:48:44 +01:00
Christoph Atteneder
88955efae7
Synchronize padding between create and take offer views 2018-11-21 10:44:35 +01:00
Christoph Atteneder
d8487644bd
Remove dotted line for disabled text fields 2018-11-20 17:42:46 +01:00
Christoph Atteneder
b5f1ed7b45
Use mono space font in all columns (except button) 2018-11-20 17:31:28 +01:00
Christoph Atteneder
c6ba21e70f
Fix positioning of x and = icons 2018-11-20 17:31:04 +01:00
Christoph Atteneder
d5ea8a62ff
Improve density of payment account fields 2018-11-20 17:13:42 +01:00
Christoph Atteneder
a57d3fc8ba
Adapt TorSettingsView 2018-11-20 16:55:57 +01:00
Christoph Atteneder
5e06153e49
Fix TextArea focus line positioning 2018-11-20 16:39:24 +01:00
Christoph Atteneder
559cd67b85
Show hand cursor on all buttons 2018-11-20 16:30:34 +01:00
Christoph Atteneder
26c9c4081b
Center align address label 2018-11-20 16:28:51 +01:00
Christoph Atteneder
7612fe3571
Adapt WitdrawalView to use full window width 2018-11-20 16:22:04 +01:00
Christoph Atteneder
94805128c3
Adapt DepositView to use full window width 2018-11-20 16:03:48 +01:00
Christoph Atteneder
fbb3020506
Fix confirmation progress indicator 2018-11-20 15:38:27 +01:00
Manfred Karrer
a64d695c10
Merge pull request #1942 from ripcurlx/ui-improvements
Redesign: Extend focus line and textfield/textarea padding
2018-11-19 13:45:06 -05:00
Christoph Atteneder
f122a4579f
Add padding for text area 2018-11-19 11:31:53 +01:00
Christoph Atteneder
16fe990424
Add padding to text input fields and extends focus line in create offer views 2018-11-19 11:12:30 +01:00
Devin Bileck
27c41a080c
Limit initial window size on application launch
When launching the application, prevent the initial window size from
exceeding the maximum available bounds.
2018-11-18 22:35:35 -08:00
Manfred Karrer
89b092b7ea
Small fixes
- Use Array list for PB list as PB lists are unmodifyable
- Rename method to contain the unspent property
- fix row index in view
2018-11-18 11:07:30 -05:00
sqrrm
ed50b97b3d
Fix bsqdashboard availableamount 2018-11-17 23:13:13 +01:00
sqrrm
aa27d443a4
Display confiscated bond value 2018-11-17 23:13:13 +01:00
Manfred Karrer
aa05651ff4
Merge branch 'master' into release-candidate-0.9.0 2018-11-17 15:22:58 -05:00
Manfred Karrer
89825a3ef8
Cleanup 2018-11-17 13:35:53 -05:00
Manfred Karrer
3157e86f8b
Persist last selected payment account at take offer
The last selected payment account gets persisted so that at the next
take offer attempt that same account is selected in the combo box in
case there are multiple accounts for that currency.
2018-11-17 13:29:52 -05:00