From e8dcf1505e571b4d3df807b1906ba832e60d2a99 Mon Sep 17 00:00:00 2001
From: "hinto.janai" <hinto.janai@protonmail.com>
Date: Thu, 23 May 2024 11:44:54 -0400
Subject: [PATCH 1/2] utils/package.sh: re-add random date

---
 utils/package.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/utils/package.sh b/utils/package.sh
index a48a77b..b46f6f6 100755
--- a/utils/package.sh
+++ b/utils/package.sh
@@ -50,6 +50,7 @@ title "Windows folder check"
 
 # Get random date for tar/zip
 title "RNG Date"
+RNG=$((EPOCHSECONDS-RANDOM*4)); check "RNG ... $RNG"
 DATE=$(date -d @${RNG}); check "DATE ... $DATE"
 
 # Tar Linux Bundle

From 6162b6650e98b91a8d1f835900853fade75a1edf Mon Sep 17 00:00:00 2001
From: "hinto.janai" <hinto.janai@protonmail.com>
Date: Mon, 1 Jul 2024 12:21:11 -0400
Subject: [PATCH 2/2] node: remove `xmrnode.facspro.net`

---
 CHANGELOG.md | 13 +++++++++++++
 README.md    |  1 -
 src/node.rs  |  3 +--
 3 files changed, 14 insertions(+), 3 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4653262..210ae68 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v1.3.9
+## Changes
+* [Remote Node](https://github.com/hinto-janai/gupax#remote-monero-nodes) changes:
+	- Removed `xmrnode.facspro.net` (thanks @SChernykh [#94](https://github.com/hinto-janai/gupax/issues/94))
+
+## Bundled Versions
+* [`P2Pool v4.0`](https://github.com/SChernykh/p2pool/releases/tag/v4.0)
+* [`XMRig v6.21.3`](https://github.com/xmrig/xmrig/releases/tag/v6.21.3)
+
+
+---
+
+
 # v1.3.8
 ## Changes
 * [Remote Node](https://github.com/hinto-janai/gupax#remote-monero-nodes) changes:
diff --git a/README.md b/README.md
index 87cbbfd..61e155c 100644
--- a/README.md
+++ b/README.md
@@ -579,7 +579,6 @@ These are the remote nodes used by Gupax in the `[P2Pool Simple]` tab.
 | sf.xmr.support          | 🇺🇸 United States  | 18081    | 18083    |
 | xmrbandwagon.hopto.org  | 🇺🇸 United States  | 18081    | 18084    |
 | xmr.spotlightsound.com  | 🇺🇸 United States  | 18081    | 18084    |
-| xmrnode.facspro.net     | 🇺🇸 United States  | 18089    | 18084    |
 | node.richfowler.net     | 🇺🇸 United States  | 18089    | 18084    |
 
 ## Build
diff --git a/src/node.rs b/src/node.rs
index e14d8f2..5d77f65 100644
--- a/src/node.rs
+++ b/src/node.rs
@@ -28,7 +28,7 @@ use std::time::{Duration, Instant};
 // Remote Monero Nodes with ZMQ enabled.
 // The format is an array of tuples consisting of: (IP, LOCATION, RPC_PORT, ZMQ_PORT)
 
-pub const REMOTE_NODES: [(&str, &str, &str, &str); 15] = [
+pub const REMOTE_NODES: [(&str, &str, &str, &str); 14] = [
     ("monero.10z.com.ar", "Argentina", "18089", "18084"),
     ("monero1.heitechsoft.com", "Canada", "18081", "18084"),
     ("node.monerodevs.org", "Canada", "18089", "18084"),
@@ -42,7 +42,6 @@ pub const REMOTE_NODES: [(&str, &str, &str, &str); 15] = [
     ("sf.xmr.support", "United States", "18081", "18083"),
     ("xmrbandwagon.hopto.org", "United States", "18081", "18084"),
     ("xmr.spotlightsound.com", "United States", "18081", "18084"),
-    ("xmrnode.facspro.net", "United States", "18089", "18084"),
     ("node.richfowler.net", "United States", "18089", "18084"),
 ];