replace links with haveno.exchange domain

This commit is contained in:
woodser 2023-08-19 08:39:11 -04:00
parent b077d532fa
commit 5e7b6c2ccd
28 changed files with 176 additions and 176 deletions

View file

@ -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() {

View file

@ -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();
});
}

View file

@ -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);

View file

@ -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();