mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2025-01-05 13:39:26 +00:00
prepare v1.2.4
This commit is contained in:
parent
34abbe73fa
commit
f45027e929
4 changed files with 36 additions and 4 deletions
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -1,3 +1,18 @@
|
||||||
|
# v1.2.4
|
||||||
|
## Updates
|
||||||
|
*
|
||||||
|
|
||||||
|
## Fixes
|
||||||
|
*
|
||||||
|
|
||||||
|
## Bundled Versions
|
||||||
|
* [`P2Pool v3.5`](https://github.com/SChernykh/p2pool/releases/tag/v3.5)
|
||||||
|
* [`XMRig v6.20.0`](https://github.com/xmrig/xmrig/releases/tag/v6.20.0)
|
||||||
|
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
# v1.2.3
|
# v1.2.3
|
||||||
## Updates
|
## Updates
|
||||||
* Added ARM (Apple Silicon) macOS releases (bundle includes ARM P2Pool/XMRig)
|
* Added ARM (Apple Silicon) macOS releases (bundle includes ARM P2Pool/XMRig)
|
||||||
|
|
19
Cargo.lock
generated
19
Cargo.lock
generated
|
@ -1259,7 +1259,9 @@ dependencies = [
|
||||||
"egui",
|
"egui",
|
||||||
"egui-wgpu",
|
"egui-wgpu",
|
||||||
"egui-winit",
|
"egui-winit",
|
||||||
|
"egui_glow",
|
||||||
"getrandom 0.2.8",
|
"getrandom 0.2.8",
|
||||||
|
"glow",
|
||||||
"glutin",
|
"glutin",
|
||||||
"js-sys",
|
"js-sys",
|
||||||
"percent-encoding",
|
"percent-encoding",
|
||||||
|
@ -1323,6 +1325,21 @@ dependencies = [
|
||||||
"image",
|
"image",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "egui_glow"
|
||||||
|
version = "0.19.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "ad77d4a00402bae9658ee64be148f4b2a0b38e4fc7874970575ca01ed1c5b75d"
|
||||||
|
dependencies = [
|
||||||
|
"bytemuck",
|
||||||
|
"egui",
|
||||||
|
"glow",
|
||||||
|
"memoffset 0.6.5",
|
||||||
|
"tracing",
|
||||||
|
"wasm-bindgen",
|
||||||
|
"web-sys",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "either"
|
name = "either"
|
||||||
version = "1.8.1"
|
version = "1.8.1"
|
||||||
|
@ -2032,7 +2049,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "gupax"
|
name = "gupax"
|
||||||
version = "1.2.3"
|
version = "1.2.4"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"arti-client",
|
"arti-client",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "gupax"
|
name = "gupax"
|
||||||
version = "1.2.3"
|
version = "1.2.4"
|
||||||
authors = ["hinto-janai <hinto.janai@protonmail.com>"]
|
authors = ["hinto-janai <hinto.janai@protonmail.com>"]
|
||||||
description = "GUI for P2Pool+XMRig"
|
description = "GUI for P2Pool+XMRig"
|
||||||
documentation = "https://github.com/hinto-janai/gupax"
|
documentation = "https://github.com/hinto-janai/gupax"
|
||||||
|
|
|
@ -16,8 +16,8 @@
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
// 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 GUPAX_VERSION: &str = concat!("v", env!("CARGO_PKG_VERSION")); // e.g: v1.0.0
|
||||||
pub const P2POOL_VERSION: &str = "v3.4";
|
pub const P2POOL_VERSION: &str = "v3.5";
|
||||||
pub const XMRIG_VERSION: &str = "v6.19.3";
|
pub const XMRIG_VERSION: &str = "v6.20.0";
|
||||||
pub const COMMIT: &str = include_str!("../.git/refs/heads/main");
|
pub const COMMIT: &str = include_str!("../.git/refs/heads/main");
|
||||||
// e.g: Gupax_v1_0_0
|
// e.g: Gupax_v1_0_0
|
||||||
// Would have been [Gupax_v1.0.0] but P2Pool truncates everything after [.]
|
// Would have been [Gupax_v1.0.0] but P2Pool truncates everything after [.]
|
||||||
|
|
Loading…
Reference in a new issue