node: remove xmr{1,2,3}.rs.me

This commit is contained in:
hinto.janai 2024-05-19 15:43:36 -04:00
parent ad6da37601
commit 1cc10b9a7b
No known key found for this signature in database
GPG key ID: D47CE05FA175A499
5 changed files with 15 additions and 9 deletions

View file

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

2
Cargo.lock generated
View file

@ -2755,7 +2755,7 @@ dependencies = [
[[package]]
name = "gupax"
version = "1.3.7"
version = "1.3.8"
dependencies = [
"anyhow",
"arti-client",

View file

@ -1,6 +1,6 @@
[package]
name = "gupax"
version = "1.3.7"
version = "1.3.8"
authors = ["hinto-janai <hinto.janai@protonmail.com>"]
description = "GUI for P2Pool+XMRig"
documentation = "https://github.com/hinto-janai/gupax"

View file

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

View file

@ -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"),