mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-10 23:50:10 -04:00
replace links with haveno.exchange domain
This commit is contained in:
parent
b077d532fa
commit
5e7b6c2ccd
28 changed files with 176 additions and 176 deletions
|
@ -228,7 +228,7 @@ public class MobileNotificationsView extends ActivatableView<GridPane, Void> {
|
|||
|
||||
// Setup
|
||||
private void onDownload() {
|
||||
GUIUtil.openWebPage("https://haveno.network/downloads");
|
||||
GUIUtil.openWebPage("https://haveno.exchange/downloads");
|
||||
}
|
||||
|
||||
private void onErase() {
|
||||
|
|
|
@ -380,7 +380,7 @@ public abstract class Overlay<T extends Overlay<T>> {
|
|||
|
||||
public T useReportBugButton() {
|
||||
this.closeButtonText = Res.get("shared.reportBug");
|
||||
this.closeHandlerOptional = Optional.of(() -> GUIUtil.openWebPage("https://haveno.network/source/haveno/issues"));
|
||||
this.closeHandlerOptional = Optional.of(() -> GUIUtil.openWebPage("https://haveno.exchange/source/haveno/issues"));
|
||||
return cast();
|
||||
}
|
||||
|
||||
|
@ -861,7 +861,7 @@ public abstract class Overlay<T extends Overlay<T>> {
|
|||
gitHubButton.setOnAction(event -> {
|
||||
if (message != null)
|
||||
Utilities.copyToClipboard(message);
|
||||
GUIUtil.openWebPage("https://haveno.network/source/haveno/issues");
|
||||
GUIUtil.openWebPage("https://haveno.exchange/source/haveno/issues");
|
||||
hide();
|
||||
});
|
||||
}
|
||||
|
|
|
@ -77,7 +77,7 @@ public class DisplayAlertMessageWindow extends Overlay<DisplayAlertMessageWindow
|
|||
checkNotNull(alert, "alertMessage must not be null");
|
||||
addMultilineLabel(gridPane, ++rowIndex, alert.getMessage(), 10);
|
||||
if (alert.isSoftwareUpdateNotification()) {
|
||||
String url = "https://haveno.network/downloads";
|
||||
String url = "https://haveno.exchange/downloads";
|
||||
HyperlinkWithIcon hyperlinkWithIcon = FormBuilder.addLabelHyperlinkWithIcon(gridPane, ++rowIndex,
|
||||
Res.get("displayAlertMessageWindow.update.download"), url, url).second;
|
||||
hyperlinkWithIcon.setMaxWidth(550);
|
||||
|
|
|
@ -53,8 +53,8 @@ public class HavenoInstaller {
|
|||
private static final String FINGER_PRINT_MANFRED_KARRER = "F379A1C6";
|
||||
private static final String FINGER_PRINT_CHRIS_BEAMS = "5BC5ED73";
|
||||
private static final String FINGER_PRINT_CHRISTOPH_ATTENEDER = "29CDFD3B";
|
||||
private static final String PUB_KEY_HOSTING_URL = "https://haveno.network/pubkey/";
|
||||
private static final String DOWNLOAD_HOST_URL = "https://haveno.network/downloads/";
|
||||
private static final String PUB_KEY_HOSTING_URL = "https://haveno.exchange/pubkey/";
|
||||
private static final String DOWNLOAD_HOST_URL = "https://haveno.exchange/downloads/";
|
||||
|
||||
public boolean isSupportedOS() {
|
||||
return Utilities.isOSX() || Utilities.isWindows() || Utilities.isDebianLinux() || Utilities.isRedHatLinux();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue