Skip to content

Tags: bitaxeorg/ESP-Miner

Tags

v2.13.0b1

Toggle v2.13.0b1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add TLS support (#1413)

* feat: add TLS and certificate support for stratum connections

* add TLS and cert config options

* update the webui for tls support

* feat: enhance TLS certificate verification options

* update board config for tls support

* webui update for tls options

* fix: improve RadioButton display across different themes

* remove 'Skip CA verify' option from TLS settings

* fix realloc failed

* make the logs more readable

* Clean up merge and rebase

* Further cleanup

* Parse stratum+tsl and stratum+ssl schemas

* TLS option naming

* TLS Support improvements (#1430)

* Remove unnecessary theme definitions

* Rework TLS options

* Uniform text monospace usage

---------

Co-authored-by: duckaxe <>

* Small cleanup

* Review comments

* Fix typo

* Enable TLSv1.3

* Some TLS fixes (#1436)

* Optimize cert validation regex

* Improve TLS validation setup

* Convert isTlsMode to number

---------

Co-authored-by: duckaxe <>

---------

Co-authored-by: AxisRay <rayleesky@outlook.com>
Co-authored-by: duckaxe <210068897+duckaxe@users.noreply.github.com>

v2.12.0

Toggle v2.12.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
allow below target power pass (#1415)

Co-authored-by: WantClue <wantclue@users.noreply.github.com>

v2.12.0b3

Toggle v2.12.0b3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Prevent precision artifacts with floats in REST API (#1364)

v2.12.0b2

Toggle v2.12.0b2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add 1m, 10m and 1h hashrate graph (#1348)

* Add hashrate averages

* Improve smoothing to longer timeframes

* Dashboard cards refactoring (#7)

* Refactor dashboard cards

* Simplify hashrate averages table

---------

Co-authored-by: duckaxe <>

* Add new fields to openapi.yaml

---------

Co-authored-by: duckaxe <210068897+duckaxe@users.noreply.github.com>

v2.12.0b1

Toggle v2.12.0b1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Optimize construct_bm_job (#1321)

* Optimize construct_bm_job

This PR eliminates several inefficient codepaths
 * Limit back and forth reversing of byte or word orders;
 * Remove merkle_root_be and prev_block_hash_be from bm_job;
 * All parameters are converted to binary once;
 * Stack allocation instead of malloc;
 * Remove unused functions;
 * Unroll byte and word reversal functions.

* Restore comment

* Fix test

* More test fix

* Fix some test_mining tests

* Slowly fixing more tests

* One more time

* Maybe the last one?

* So close

* Revert coinbase tx construction setup

* Missing include

* Fix

* Add tests for utils

* Don'y copy new bm_job

* Revert variable rename

* Swawp endianness instead of full 32 byte order

* Fix compile error in test_mining.c

* Fix test_utils

* Fix mining test

* Fix

v2.11.0

Toggle v2.11.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Increase z-index for tooltip backdrop (#1349)

Co-authored-by: duckaxe <>

v2.11.0b6

Toggle v2.11.0b6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Reverse register error counter and percentage and remove hash rate sm…

…oothing (#1340)

* Flip error counter and percentage

* Simplify formatter

* Move error counter in tooltip

* Counter -> Count

* Reset hashrate on voltage change

* Remove hashrate smoothing and cleaned up  code

* Adjust tooltip text

* No need to reset statistics on frequency or voltage change

* Review comment

v2.11.0b5

Toggle v2.11.0b5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Extend TPS546 detection code for other startup failures (#1319)

* Clean up TPS546 detection code

* Reverse IDs between B and D

* Disable TPS546B variants

* Restore comments

v2.11.0b4

Toggle v2.11.0b4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Disconnect Wi-Fi if IP address is not assigned (#1326)

* Disconnect Wi-Fi if IP address is not assigned

Fixes #1315

* Whitespace

* More whitespace

* Last whitespace

v2.11.0b3

Toggle v2.11.0b3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Move dashboard messages from template to component (#1229)

* Move dashbboard messages from template to component

* Fix merge conflicts

* Add MessageType

---------

Co-authored-by: duckaxe <>