Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rc v1.0.0 #2648

Merged
merged 36 commits into from Apr 15, 2019
Merged
Changes from 2 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
a6ec41a
Set dao activated by default
ManfredKarrer Apr 4, 2019
7953295
Remove network selection in settings
ManfredKarrer Apr 4, 2019
9b3755c
Set Mainnet test genesis tx
ManfredKarrer Apr 4, 2019
a6a0c6e
Remove DAO testing feedback window
ManfredKarrer Apr 7, 2019
ed3ab79
Cleanup TODOs
ManfredKarrer Apr 7, 2019
e932842
Rename DaoStateStore3 db file to DaoStateStore
ManfredKarrer Apr 7, 2019
d81498d
Remove date and DateTolerantPayload interface from BlindVotePayload
ManfredKarrer Apr 7, 2019
bd7358f
Add date to BlindVote
ManfredKarrer Apr 7, 2019
2e5055c
Remove outdated db files
ManfredKarrer Apr 7, 2019
ffb50b6
Change lock time fro bonds from 75 days to 110 days.
ManfredKarrer Apr 7, 2019
68436f5
Merge branch 'master' into rc_v1.0.0
ManfredKarrer Apr 10, 2019
6b009d4
Merge branch 'master' into rc_v1.0.0
ManfredKarrer Apr 11, 2019
b8cd1ff
Fix rowSpan
ManfredKarrer Apr 11, 2019
cdff4d5
Use betanet genesis for mainnet
ManfredKarrer Apr 12, 2019
0179cfc
Use new dummy genesis tx for mainnet
ManfredKarrer Apr 12, 2019
2c106c7
Bump version number
ripcurlx Apr 12, 2019
cc255c2
Merge branch 'master' into rc_v1.0.0
ManfredKarrer Apr 12, 2019
4269607
Merge pull request #4 from ripcurlx/bump-version-number
ManfredKarrer Apr 12, 2019
60e23f8
Reduce min width of close button to prevent truncations
ripcurlx Apr 13, 2019
5d70e3d
Fix wrong padding of links in trade feedback popup
ripcurlx Apr 13, 2019
5b8ff6e
Merge branch 'master' into rc_v1.0.0
ManfredKarrer Apr 13, 2019
a1bbb6c
Change most payment methods from DEFAULT_TRADE_LIMIT_MID_RISK to DEF…
ManfredKarrer Apr 14, 2019
3eabc1e
Reduce sec deposits
ManfredKarrer Apr 14, 2019
57ae8af
Add requireUpdateToNewVersion check
ManfredKarrer Apr 14, 2019
4da5c4f
Make check case insensitive
ManfredKarrer Apr 14, 2019
ac4cd82
Move country into second column to save space
ripcurlx Apr 14, 2019
f5404f8
Set new minimum deposit if deposit lower than minimum was persisted
ripcurlx Apr 14, 2019
1f05e8f
Merge pull request #5 from ripcurlx/improve-sepa-form
ManfredKarrer Apr 14, 2019
1f9e2ce
Fix nullpointer
ManfredKarrer Apr 15, 2019
4442a2e
Add missing parameter in test
ManfredKarrer Apr 15, 2019
8f7dae4
Reduce table height and update height calculation to prevent scrolling
ripcurlx Apr 15, 2019
edfe035
Align Altcoin list with Altcoin selection combobox
ripcurlx Apr 15, 2019
d0c99d6
Merge pull request #7 from ripcurlx/align-currency-list-with-combobox
ManfredKarrer Apr 15, 2019
b8b2e8b
Merge pull request #6 from ripcurlx/fix-scrolling-in-trade-view
ManfredKarrer Apr 15, 2019
6c98d98
Merge branch 'master' into rc_v1.0.0
ManfredKarrer Apr 15, 2019
825d374
Set mainnet Genesis Tx ID
ManfredKarrer Apr 15, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -25,7 +25,6 @@
import bisq.desktop.components.PasswordTextField;
import bisq.desktop.components.TitledGroupBg;
import bisq.desktop.main.overlays.popups.Popup;
import bisq.desktop.util.FormBuilder;
import bisq.desktop.util.GUIUtil;
import bisq.desktop.util.ImageUtil;
import bisq.desktop.util.Layout;
Expand Down Expand Up @@ -87,7 +86,6 @@
import java.util.Arrays;
import java.util.Collections;
import java.util.concurrent.TimeUnit;
import java.util.stream.Collectors;

import static bisq.desktop.util.FormBuilder.*;

Expand Down Expand Up @@ -230,13 +228,13 @@ public BaseCurrencyNetwork fromString(String string) {
}
});*/

userLanguageComboBox = FormBuilder.addComboBox(root, gridRow,
userLanguageComboBox = addComboBox(root, gridRow,
Res.get("shared.language"), Layout.FIRST_ROW_DISTANCE);
userCountryComboBox = FormBuilder.addComboBox(root, ++gridRow,
userCountryComboBox = addComboBox(root, ++gridRow,
Res.get("shared.country"));
userCountryComboBox.setButtonCell(GUIUtil.getComboBoxButtonCell(Res.get("shared.country"), userCountryComboBox,
false));
blockChainExplorerComboBox = FormBuilder.addComboBox(root, ++gridRow,
blockChainExplorerComboBox = addComboBox(root, ++gridRow,
Res.get("setting.preferences.explorer"));
blockChainExplorerComboBox.setButtonCell(GUIUtil.getComboBoxButtonCell(Res.get("setting.preferences.explorer"),
blockChainExplorerComboBox, false));
Expand Down Expand Up @@ -345,12 +343,15 @@ private void initializeSeparator() {

private void initializeDisplayCurrencies() {
int displayCurrenciesGridRowIndex = 0;
TitledGroupBg titledGroupBg = addTitledGroupBg(root, displayCurrenciesGridRowIndex, 9, Res.get("setting.preferences.currenciesInList"));

TitledGroupBg titledGroupBg = addTitledGroupBg(root, displayCurrenciesGridRowIndex, 9,
Res.get("setting.preferences.currenciesInList"));
GridPane.setColumnIndex(titledGroupBg, 2);
GridPane.setColumnSpan(titledGroupBg, 2);


preferredTradeCurrencyComboBox = FormBuilder.addComboBox(root, displayCurrenciesGridRowIndex++, Res.get("setting.preferences.prefCurrency"),
preferredTradeCurrencyComboBox = addComboBox(root, displayCurrenciesGridRowIndex++,
Res.get("setting.preferences.prefCurrency"),
Layout.FIRST_ROW_DISTANCE);
GridPane.setColumnIndex(preferredTradeCurrencyComboBox, 2);

Expand All @@ -371,7 +372,8 @@ public TradeCurrency fromString(String string) {
preferredTradeCurrencyComboBox.setCellFactory(GUIUtil.getTradeCurrencyCellFactory("", "",
Collections.emptyMap()));

Tuple3<Label, ListView<FiatCurrency>, VBox> fiatTuple = FormBuilder.addTopLabelListView(root, displayCurrenciesGridRowIndex, Res.get("setting.preferences.displayFiat"));
Tuple3<Label, ListView<FiatCurrency>, VBox> fiatTuple = addTopLabelListView(root, displayCurrenciesGridRowIndex,
Res.get("setting.preferences.displayFiat"));

int listRowSpan = 6;
GridPane.setColumnIndex(fiatTuple.third, 2);
Expand Down Expand Up @@ -426,7 +428,8 @@ public void updateItem(final FiatCurrency item, boolean empty) {
}
});

Tuple3<Label, ListView<CryptoCurrency>, VBox> cryptoCurrenciesTuple = FormBuilder.addTopLabelListView(root, displayCurrenciesGridRowIndex, Res.get("setting.preferences.displayAltcoins"));
Tuple3<Label, ListView<CryptoCurrency>, VBox> cryptoCurrenciesTuple = addTopLabelListView(root,
displayCurrenciesGridRowIndex, Res.get("setting.preferences.displayAltcoins"));

GridPane.setColumnIndex(cryptoCurrenciesTuple.third, 3);
GridPane.setRowSpan(cryptoCurrenciesTuple.third, listRowSpan);
Expand Down Expand Up @@ -480,7 +483,7 @@ public void updateItem(final CryptoCurrency item, boolean empty) {
}
});

fiatCurrenciesComboBox = FormBuilder.addComboBox(root, displayCurrenciesGridRowIndex + listRowSpan);
fiatCurrenciesComboBox = addComboBox(root, displayCurrenciesGridRowIndex + listRowSpan);
GridPane.setColumnIndex(fiatCurrenciesComboBox, 2);
GridPane.setValignment(fiatCurrenciesComboBox, VPos.TOP);
fiatCurrenciesComboBox.setPromptText(Res.get("setting.preferences.addFiat"));
Expand Down Expand Up @@ -509,9 +512,11 @@ public FiatCurrency fromString(String s) {
}
});

cryptoCurrenciesComboBox = FormBuilder.addComboBox(root, displayCurrenciesGridRowIndex + listRowSpan);
cryptoCurrenciesComboBox = addComboBox(root, displayCurrenciesGridRowIndex + listRowSpan);
GridPane.setColumnIndex(cryptoCurrenciesComboBox, 3);
GridPane.setValignment(cryptoCurrenciesComboBox, VPos.TOP);
GridPane.setMargin(cryptoCurrenciesComboBox, new Insets(Layout.FLOATING_LABEL_DISTANCE,
0, 0, 20));
cryptoCurrenciesComboBox.setPromptText(Res.get("setting.preferences.addAltcoin"));
cryptoCurrenciesComboBox.setButtonCell(new ListCell<>() {
@Override
Expand Down Expand Up @@ -602,7 +607,7 @@ private void activateGeneralOptions() {
}

transactionFeeInputTextField.setText(String.valueOf(getTxFeeForWithdrawalPerByte()));
ignoreTradersListInputTextField.setText(preferences.getIgnoreTradersList().stream().collect(Collectors.joining(", ")));
ignoreTradersListInputTextField.setText(String.join(", ", preferences.getIgnoreTradersList()));
referralIdService.getOptionalReferralId().ifPresent(referralId -> referralIdInputTextField.setText(referralId));
referralIdInputTextField.setPromptText(Res.get("setting.preferences.refererId.prompt"));
userLanguageComboBox.setItems(languageCodes);
Expand Down