mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2025-01-03 12:39:35 +00:00
v1.3.3
This commit is contained in:
parent
68e01760f9
commit
1bfd72a8c2
4 changed files with 6 additions and 6 deletions
|
@ -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
2
Cargo.lock
generated
|
@ -2208,7 +2208,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "gupax"
|
||||
version = "1.3.2"
|
||||
version = "1.3.3"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"arti-client",
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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 [.]
|
||||
|
|
Loading…
Reference in a new issue