This commit is contained in:
hinto.janai 2023-11-26 19:09:19 -05:00
parent 68e01760f9
commit 1bfd72a8c2
No known key found for this signature in database
GPG key ID: D47CE05FA175A499
4 changed files with 6 additions and 6 deletions

View file

@ -10,8 +10,8 @@
- Removed `xmr.theuplink.net`
## Fixes
* P2Pool `[Simple]`'s backup hosts option will only include green/yellow nodes (<300ms ping) (#[65](https://github.com/hinto-janai/gupax/pull/65))
* P2Pool ping now verifies node is synchronized (#[63](https://github.com/hinto-janai/gupax/pull/63))
* P2Pool `[Simple]`'s backup hosts option will only include green/yellow nodes (<300ms ping) ([#65](https://github.com/hinto-janai/gupax/pull/65))
* P2Pool ping now verifies node is synchronized ([#63](https://github.com/hinto-janai/gupax/pull/63))
* XMRig `[Simple]` tab slider overflow ([#60](https://github.com/hinto-janai/gupax/pull/60))
* P2Pool `[Simple]` tab height overflow (https://github.com/hinto-janai/gupax/commit/b4a4e83457c8fc353e75ddf6c284bd41422f0db4)

2
Cargo.lock generated
View file

@ -2208,7 +2208,7 @@ dependencies = [
[[package]]
name = "gupax"
version = "1.3.2"
version = "1.3.3"
dependencies = [
"anyhow",
"arti-client",

View file

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

View file

@ -16,8 +16,8 @@
// along with this program. If not, see <https://www.gnu.org/licenses/>.
pub const GUPAX_VERSION: &str = concat!("v", env!("CARGO_PKG_VERSION")); // e.g: v1.0.0
pub const P2POOL_VERSION: &str = "v3.7";
pub const XMRIG_VERSION: &str = "v6.20.0";
pub const P2POOL_VERSION: &str = "v3.9";
pub const XMRIG_VERSION: &str = "v6.21.0";
pub const COMMIT: &str = env!("COMMIT"); // set in build.rs
// e.g: Gupax_v1_0_0
// Would have been [Gupax_v1.0.0] but P2Pool truncates everything after [.]