diff --git a/CHANGELOG.md b/CHANGELOG.md index 13ecc62..4e6c3b8 100644 --- a/CHANGELOG.md +++ b/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 Fix release for beta version. This version is only made for testing purposes and have feedbacks. diff --git a/README.md b/README.md index 0efd158..56bfbe0 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,10 @@ To have a detailed explication of Gupax, see the [README](https://github.com/hin 3. Launch Gupaxx 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 5. Register your same address on [XMRvsBeast](https://xmrvsbeast.com) diff --git a/utils/move_binary_inside.sh b/utils/move_binary_inside.sh index dd6babc..24fd0d6 100755 --- a/utils/move_binary_inside.sh +++ b/utils/move_binary_inside.sh @@ -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_* [[ -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-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 +rm Gupaxx-macos-x64.app +rm Gupaxx-macos-arm64.app rm linux.zip; rm macos.zip; rm windows.zip # windows unzip only the exe so not tar to delete. rm linux.tar; rm macos.tar diff --git a/utils/package.sh b/utils/package.sh index 1e47435..7e8dada 100755 --- a/utils/package.sh +++ b/utils/package.sh @@ -30,9 +30,6 @@ cd skel; check "CD into skel" # and that the naming schemes are correct title "Linux folder check" [[ -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/xmrig/xmrig ]]; check "linux/xmrig/xmrig" title "macOS-x64 folder check" diff --git a/utils/skel/linux/Gupaxx.desktop b/utils/skel/linux/Gupaxx.desktop deleted file mode 100644 index 82aad78..0000000 --- a/utils/skel/linux/Gupaxx.desktop +++ /dev/null @@ -1,8 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Version=1.0 -Type=Application -Terminal=false -Exec=gupaxx -Name=Gupaxx -Icon=icon.png diff --git a/utils/skel/linux/icon.png b/utils/skel/linux/icon.png deleted file mode 100644 index f32bf32..0000000 Binary files a/utils/skel/linux/icon.png and /dev/null differ