From 1cc10b9a7b03e83278f784f1d8e2a9b72fc3dbe8 Mon Sep 17 00:00:00 2001 From: "hinto.janai" Date: Sun, 19 May 2024 15:43:36 -0400 Subject: [PATCH] node: remove `xmr{1,2,3}.rs.me` --- CHANGELOG.md | 12 ++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 3 --- src/node.rs | 5 +---- 5 files changed, 15 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d608fbd..cc5f32a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# v1.3.8 +## Fixes +- Visual bug on Windows (thanks @Cyrix126) + +## Bundled Versions +* [`P2Pool v3.10`](https://github.com/SChernykh/p2pool/releases/tag/v3.10) +* [`XMRig v6.21.3`](https://github.com/xmrig/xmrig/releases/tag/v6.21.3) + + +--- + + # v1.3.7 ## Fixes - Not starting on Windows if CPU does not support `>= OpenGL 3.3` (thanks @Cyrix126 [#78](https://github.com/hinto-janai/gupax/issues/78)) diff --git a/Cargo.lock b/Cargo.lock index fb43556..07c1969 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2755,7 +2755,7 @@ dependencies = [ [[package]] name = "gupax" -version = "1.3.7" +version = "1.3.8" dependencies = [ "anyhow", "arti-client", diff --git a/Cargo.toml b/Cargo.toml index f74aa6c..573568b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gupax" -version = "1.3.7" +version = "1.3.8" authors = ["hinto-janai "] description = "GUI for P2Pool+XMRig" documentation = "https://github.com/hinto-janai/gupax" diff --git a/README.md b/README.md index ff0e8cd..87cbbfd 100644 --- a/README.md +++ b/README.md @@ -569,15 +569,12 @@ These are the remote nodes used by Gupax in the `[P2Pool Simple]` tab. | monero.10z.com.ar | πŸ‡¦πŸ‡· Argentina | 18089 | 18084 | | monero1.heitechsoft.com | πŸ‡¨πŸ‡¦ Canada | 18081 | 18084 | | node.monerodevs.org | πŸ‡¨πŸ‡¦ Canada | 18089 | 18084 | -| xmr3.rs.me | πŸ‡©πŸ‡ͺ Germany | 18089 | 18084 | | node.cryptocano.de | πŸ‡©πŸ‡ͺ Germany | 18089 | 18083 | | p2pmd.xmrvsbeast.com | πŸ‡©πŸ‡ͺ Germany | 18081 | 18083 | | fbx.tranbert.com | πŸ‡«πŸ‡· France | 18089 | 18084 | | node2.monerodevs.org | πŸ‡«πŸ‡· France | 18089 | 18084 | | home.allantaylor.kiwi | πŸ‡³πŸ‡Ώ New Zealand | 18089 | 18083 | -| xmr1.rs.me | πŸ‡ΈπŸ‡¬ Singapore | 18089 | 18084 | | p2pool.uk | πŸ‡¬πŸ‡§ United Kingdom | 18089 | 18084 | -| xmr2.rs.me | πŸ‡ΊπŸ‡Έ United States | 18089 | 18084 | | xmr.support | πŸ‡ΊπŸ‡Έ United States | 18081 | 18083 | | sf.xmr.support | πŸ‡ΊπŸ‡Έ United States | 18081 | 18083 | | xmrbandwagon.hopto.org | πŸ‡ΊπŸ‡Έ United States | 18081 | 18084 | diff --git a/src/node.rs b/src/node.rs index 3bc21be..e14d8f2 100644 --- a/src/node.rs +++ b/src/node.rs @@ -28,19 +28,16 @@ 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); 18] = [ +pub const REMOTE_NODES: [(&str, &str, &str, &str); 15] = [ ("monero.10z.com.ar", "Argentina", "18089", "18084"), ("monero1.heitechsoft.com", "Canada", "18081", "18084"), ("node.monerodevs.org", "Canada", "18089", "18084"), - ("xmr3.rs.me", "Germany", "18089", "18084"), ("node.cryptocano.de", "Germany", "18089", "18083"), ("p2pmd.xmrvsbeast.com", "Germany", "18081", "18083"), ("fbx.tranbert.com", "France", "18089", "18084"), ("node2.monerodevs.org", "France", "18089", "18084"), ("home.allantaylor.kiwi", "New Zealand", "18089", "18083"), - ("xmr1.rs.me", "Singapore", "18089", "18084"), ("p2pool.uk", "United Kingdom", "18089", "18084"), - ("xmr2.rs.me", "United States", "18089", "18084"), ("xmr.support", "United States", "18081", "18083"), ("sf.xmr.support", "United States", "18081", "18083"), ("xmrbandwagon.hopto.org", "United States", "18081", "18084"),