Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ schedule, or alternate mining connection.
Open the [latest release](https://github.com/JustAResearcher/TARI.Miner/releases/latest)
and download one file for your operating system:

- `TARI.Miner-v1.1.4-windows.zip`
- `TARI.Miner-v1.1.4-linux.tar.gz`
- `tari-miner-hiveos-1.1.4.tar.gz` for HiveOS
- `TARI.Miner-v1.1.5-windows.zip`
- `TARI.Miner-v1.1.5-linux.tar.gz`
- `tari-miner-hiveos-1.1.5.tar.gz` for HiveOS

Each package contains all supported GPU backends. The starter detects every
NVIDIA GPU and selects the correct backend for each card:
Expand All @@ -32,7 +32,7 @@ The starter does not change GPU clocks, voltage, fans, or power limits.

## Windows

1. Extract `TARI.Miner-v1.1.4-windows.zip`.
1. Extract `TARI.Miner-v1.1.5-windows.zip`.
2. Run `start-c29.bat`.
3. Paste your Tari wallet address when prompted.
4. Leave the starter window open while mining.
Expand Down Expand Up @@ -86,7 +86,7 @@ start-c29.bat --pipeline 1

## Linux

Extract `TARI.Miner-v1.1.4-linux.tar.gz`, then run:
Extract `TARI.Miner-v1.1.5-linux.tar.gz`, then run:

```bash
./start-c29.sh
Expand All @@ -113,7 +113,7 @@ Create a Custom miner in the Flight Sheet with these values:

```text
Miner name: tari-miner-hiveos
Installation URL: https://github.com/JustAResearcher/TARI.Miner/releases/download/v1.1.4/tari-miner-hiveos-1.1.4.tar.gz
Installation URL: https://github.com/JustAResearcher/TARI.Miner/releases/download/v1.1.5/tari-miner-hiveos-1.1.5.tar.gz
Hash algorithm: cuckaroo29
Wallet and worker template: %WAL%.%WORKER_NAME%
Pool URL: stratum+tcp://taric29-ca.luckypool.io:3111
Expand Down
2 changes: 1 addition & 1 deletion hiveos/h-manifest.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CUSTOM_NAME=${CUSTOM_NAME:-tari-miner-hiveos}
CUSTOM_VERSION=1.1.4
CUSTOM_VERSION=1.1.5
CUSTOM_ALGO=cuckaroo29
CUSTOM_MINERBIN=start-c29.sh
CUSTOM_CONFIG_FILENAME=${CUSTOM_CONFIG_FILENAME:-/hive/miners/custom/$CUSTOM_NAME/miner.env}
Expand Down
3 changes: 2 additions & 1 deletion package_release.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,8 @@ $Checksums = foreach ($Archive in $Archives) {
"$Hash $(Split-Path -Leaf $Archive)"
}
$ChecksumsPath = Join-Path $ReleaseRoot 'SHA256SUMS.txt'
$Checksums | Set-Content -LiteralPath $ChecksumsPath -Encoding ascii
$ChecksumText = ($Checksums -join "`n") + "`n"
[IO.File]::WriteAllText($ChecksumsPath, $ChecksumText, [Text.Encoding]::ASCII)

$ReleaseNotes = @'
# TARI.Miner C29 v{0}
Expand Down
6 changes: 3 additions & 3 deletions packaging/README-HIVEOS.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
TARI.Miner C29 v1.1.4 - HiveOS
TARI.Miner C29 v1.1.5 - HiveOS
================================

Community Tari Cuckaroo29 CUDA miner. No developer fee.
Expand All @@ -11,7 +11,7 @@ HiveOS custom miner setup

Miner name: tari-miner-hiveos
Installation URL:
https://github.com/JustAResearcher/TARI.Miner/releases/download/v1.1.4/tari-miner-hiveos-1.1.4.tar.gz
https://github.com/JustAResearcher/TARI.Miner/releases/download/v1.1.5/tari-miner-hiveos-1.1.5.tar.gz
Hash algorithm: cuckaroo29
Wallet and worker template: %WAL%.%WORKER_NAME%
Pool URL: stratum+tcp://taric29-ca.luckypool.io:3111
Expand Down Expand Up @@ -41,7 +41,7 @@ It does not change clocks, voltage, fans, or power limits.
Manual reinstall on a rig
-------------------------
/hive/miners/custom/custom-get \
https://github.com/JustAResearcher/TARI.Miner/releases/download/v1.1.4/tari-miner-hiveos-1.1.4.tar.gz \
https://github.com/JustAResearcher/TARI.Miner/releases/download/v1.1.5/tari-miner-hiveos-1.1.5.tar.gz \
-f

Then reapply the Flight Sheet or run `miner restart`.
2 changes: 1 addition & 1 deletion packaging/README-LINUX.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
TARI.Miner C29 v1.1.4
TARI.Miner C29 v1.1.5
=====================

Community Tari Cuckaroo29 CUDA miner. No developer fee.
Expand Down
2 changes: 1 addition & 1 deletion packaging/README.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
TARI.Miner C29 v1.1.4
TARI.Miner C29 v1.1.5
=====================

Community Tari Cuckaroo29 CUDA miner. No developer fee.
Expand Down
2 changes: 1 addition & 1 deletion version.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#pragma once

#define TARI_MINER_VERSION "1.1.4"
#define TARI_MINER_VERSION "1.1.5"
Loading