From 52afa2f0d7ed1107a2237c529d0b1d18235c5147 Mon Sep 17 00:00:00 2001 From: suddenwhipvapor <124399749+suddenwhipvapor@users.noreply.github.com> Date: Sun, 22 Dec 2024 23:35:23 +0000 Subject: [PATCH 1/3] Restore version from main --- docs/build.md | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/docs/build.md b/docs/build.md index 3afffe0c93..89bbe4d938 100644 --- a/docs/build.md +++ b/docs/build.md @@ -5,8 +5,8 @@ ```sh git clone https://github.com/bisq-network/bisq # if you intend to do testing on the latest release, you can clone the respective branch selectively, without downloading the whole repository - # for the 1.9.18 release, you would do it like this: - git clone --recurse-submodules --branch release/v1.9.18 https://github.com/bisq-network/bisq + # for the 1.9.3 release, you would do it like this: + git clone --recurse-submodules --branch release/v1.9.3 https://github.com/bisq-network/bisq cd bisq ``` @@ -35,18 +35,6 @@ javac -version ``` - If you have multiple JDK versions installed, check which one Gradle will use, with: - - ```sh - ./gradlew --version - ``` - - and if the version number on the JVM line is not a supported one, you can pick the correct JDK at runtime with this syntax (verify your system path): - - ```sh - ./gradlew build -Dorg.gradle.java.home=/usr/lib/jvm/java-11-openjdk-amd64/ - ``` - If you do not have JDK 11 installed, check out scripts in the [scripts](../scripts) directory or download it manually from https://jdk.java.net/archive/. ## Running Bisq From ef0f448e386dd1bee2b0565fed9eda6f9dc06f72 Mon Sep 17 00:00:00 2001 From: suddenwhipvapor <124399749+suddenwhipvapor@users.noreply.github.com> Date: Sun, 22 Dec 2024 23:39:39 +0000 Subject: [PATCH 2/3] Add onion for suddenwhipvapor mediator instance --- .../bisq/core/support/dispute/agent/DisputeAgentLookupMap.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/main/java/bisq/core/support/dispute/agent/DisputeAgentLookupMap.java b/core/src/main/java/bisq/core/support/dispute/agent/DisputeAgentLookupMap.java index ddf735e577..6ef2614588 100644 --- a/core/src/main/java/bisq/core/support/dispute/agent/DisputeAgentLookupMap.java +++ b/core/src/main/java/bisq/core/support/dispute/agent/DisputeAgentLookupMap.java @@ -43,6 +43,8 @@ public static String getMatrixUserName(String fullAddress) { case "d7m3j3u4jo2yuymgvxisklpitd3n5xbsnnpyz2mjh6bl6gmj5rjdxead.onion:9999": case "6c4cim7h7t3bm4bnchbf727qrhdfrfr6lhod25wjtizm2sifpkktvwad.onion:9999": //old return "pazza83"; + case "5wmuzi76l4ogbdh6ahvdafzlebk4c3sp3q5njhz5h5qa5fwbalexa7id.onion:9999": + return "suddenwhipvapor"; default: log.warn("No user name for dispute agent with address {} found.", fullAddress); return Res.get("shared.na"); From 5475a3aadab59083d65d11b0393489a4b6a3711b Mon Sep 17 00:00:00 2001 From: suddenwhipvapor <124399749+suddenwhipvapor@users.noreply.github.com> Date: Fri, 27 Dec 2024 19:40:43 +0000 Subject: [PATCH 3/3] Sync build.md with merged PR --- docs/build.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/docs/build.md b/docs/build.md index 89bbe4d938..3afffe0c93 100644 --- a/docs/build.md +++ b/docs/build.md @@ -5,8 +5,8 @@ ```sh git clone https://github.com/bisq-network/bisq # if you intend to do testing on the latest release, you can clone the respective branch selectively, without downloading the whole repository - # for the 1.9.3 release, you would do it like this: - git clone --recurse-submodules --branch release/v1.9.3 https://github.com/bisq-network/bisq + # for the 1.9.18 release, you would do it like this: + git clone --recurse-submodules --branch release/v1.9.18 https://github.com/bisq-network/bisq cd bisq ``` @@ -35,6 +35,18 @@ javac -version ``` + If you have multiple JDK versions installed, check which one Gradle will use, with: + + ```sh + ./gradlew --version + ``` + + and if the version number on the JVM line is not a supported one, you can pick the correct JDK at runtime with this syntax (verify your system path): + + ```sh + ./gradlew build -Dorg.gradle.java.home=/usr/lib/jvm/java-11-openjdk-amd64/ + ``` + If you do not have JDK 11 installed, check out scripts in the [scripts](../scripts) directory or download it manually from https://jdk.java.net/archive/. ## Running Bisq