mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2024-12-22 14:49:21 +00:00
feat: beta release 0.1.7
This commit is contained in:
parent
588f896455
commit
870115a966
6 changed files with 32 additions and 14 deletions
25
CHANGELOG.md
25
CHANGELOG.md
|
@ -1,3 +1,28 @@
|
||||||
|
# v0.1.7
|
||||||
|
Fix release for beta version.
|
||||||
|
This version is only made for testing purposes and have feedback.
|
||||||
|
|
||||||
|
## Changes
|
||||||
|
### User interface
|
||||||
|
Round type consider 1h average HR with 20% margin.
|
||||||
|
Remove fake AppImage
|
||||||
|
|
||||||
|
### Internal
|
||||||
|
Bump deps versions
|
||||||
|
Better automatization for releases.
|
||||||
|
|
||||||
|
### Documentation
|
||||||
|
Documentation of new directories in source code.
|
||||||
|
Rework README with fresh screenshots, tutorial video and better help.
|
||||||
|
|
||||||
|
## Fixes
|
||||||
|
Given time was not subtracted from countdown when needed.
|
||||||
|
Duplicate help message on input token
|
||||||
|
|
||||||
|
## Bundled Versions
|
||||||
|
* [`P2Pool v3.10`](https://github.com/SChernykh/p2pool/releases/tag/v3.10)
|
||||||
|
* [`XMRig v6.21.1`](https://github.com/xmrig/xmrig/releases/tag/v6.21.1)
|
||||||
|
|
||||||
# v0.1.6
|
# v0.1.6
|
||||||
Fix release for beta version.
|
Fix release for beta version.
|
||||||
This version is only made for testing purposes and have feedbacks.
|
This version is only made for testing purposes and have feedbacks.
|
||||||
|
|
|
@ -42,7 +42,10 @@ To have a detailed explication of Gupax, see the [README](https://github.com/hin
|
||||||
3. Launch Gupaxx
|
3. Launch Gupaxx
|
||||||
|
|
||||||
Next steps can be seen in this video tutorial.
|
Next steps can be seen in this video tutorial.
|
||||||
https://libre-depanne.fr/ressources/tuto_gupaxx.webm
|
|
||||||
|
https://github.com/Cyrix126/gupaxx/assets/58007246/610cbfea-fd97-4150-95ed-9c8a7ef5ba94
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
4. Input your Monero address in the `P2Pool` tab
|
4. Input your Monero address in the `P2Pool` tab
|
||||||
5. Register your same address on [XMRvsBeast](https://xmrvsbeast.com)
|
5. Register your same address on [XMRvsBeast](https://xmrvsbeast.com)
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## to be executed once you get zip files containing binairies from github CI and put them in /tmp/gupaxx_*
|
## to be executed once you get zip files containing binairies from github CI and put them in /tmp/gupaxx_*
|
||||||
|
|
||||||
[[ -d skel ]]; check "skel"
|
[[ -d skel ]]; check "skel"
|
||||||
|
@ -15,6 +14,8 @@ mv Gupaxx-macos-x64.app/Contents/Info.plist skel/macos-x64/Gupaxx.app/Contents/I
|
||||||
mv Gupaxx-macos-x64.app/Contents/MacOS/gupaxx skel/macos-x64/Gupaxx.app/Contents/MacOS/gupaxx
|
mv Gupaxx-macos-x64.app/Contents/MacOS/gupaxx skel/macos-x64/Gupaxx.app/Contents/MacOS/gupaxx
|
||||||
mv Gupaxx-macos-arm64.app/Contents/MacOS/gupaxx skel/macos-arm64/Gupaxx.app/Contents/MacOS/gupaxx
|
mv Gupaxx-macos-arm64.app/Contents/MacOS/gupaxx skel/macos-arm64/Gupaxx.app/Contents/MacOS/gupaxx
|
||||||
mv Gupaxx-macos-arm64.app/Contents/Info.plist skel/macos-arm64/Gupaxx.app/Contents/Info.plist
|
mv Gupaxx-macos-arm64.app/Contents/Info.plist skel/macos-arm64/Gupaxx.app/Contents/Info.plist
|
||||||
|
rm Gupaxx-macos-x64.app
|
||||||
|
rm Gupaxx-macos-arm64.app
|
||||||
rm linux.zip; rm macos.zip; rm windows.zip
|
rm linux.zip; rm macos.zip; rm windows.zip
|
||||||
# windows unzip only the exe so not tar to delete.
|
# windows unzip only the exe so not tar to delete.
|
||||||
rm linux.tar; rm macos.tar
|
rm linux.tar; rm macos.tar
|
||||||
|
|
|
@ -30,9 +30,6 @@ cd skel; check "CD into skel"
|
||||||
# and that the naming schemes are correct
|
# and that the naming schemes are correct
|
||||||
title "Linux folder check"
|
title "Linux folder check"
|
||||||
[[ -f linux/gupaxx ]]; check "linux/gupaxx"
|
[[ -f linux/gupaxx ]]; check "linux/gupaxx"
|
||||||
[[ -f linux/Gupaxx.AppImage ]]; check "linux/Gupaxx.AppImage"
|
|
||||||
OUTPUT=$(cat linux/Gupaxx.AppImage)
|
|
||||||
[[ $OUTPUT = "./gupaxx" ]]; check "linux/Gupaxx.AppImage = ./gupaxx"
|
|
||||||
[[ -f linux/p2pool/p2pool ]]; check "linux/p2pool/p2pool"
|
[[ -f linux/p2pool/p2pool ]]; check "linux/p2pool/p2pool"
|
||||||
[[ -f linux/xmrig/xmrig ]]; check "linux/xmrig/xmrig"
|
[[ -f linux/xmrig/xmrig ]]; check "linux/xmrig/xmrig"
|
||||||
title "macOS-x64 folder check"
|
title "macOS-x64 folder check"
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
[Desktop Entry]
|
|
||||||
Encoding=UTF-8
|
|
||||||
Version=1.0
|
|
||||||
Type=Application
|
|
||||||
Terminal=false
|
|
||||||
Exec=gupaxx
|
|
||||||
Name=Gupaxx
|
|
||||||
Icon=icon.png
|
|
Binary file not shown.
Before Width: | Height: | Size: 22 KiB |
Loading…
Reference in a new issue