Skip to content

Commit

Permalink
make binary grid aspect ration less restrictive on scan
Browse files Browse the repository at this point in the history
  • Loading branch information
odudex committed Aug 2, 2024
1 parent 9b0b3de commit 08e2932
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

[tool.poetry]
name = "krux"
version = "24.09.beta3"
version = "24.09.beta4"
description = "Open-source signing device firmware for Bitcoin"
authors = ["Jeff S <[email protected]>"]

Expand Down
2 changes: 1 addition & 1 deletion src/krux/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
VERSION = "24.09.beta3"
VERSION = "24.09.beta4"
SIGNER_PUBKEY = "03339e883157e45891e61ca9df4cd3bb895ef32d475b8e793559ea10a36766689b"
4 changes: 2 additions & 2 deletions src/krux/pages/tiny_seed.py
Original file line number Diff line number Diff line change
Expand Up @@ -621,8 +621,8 @@ class TinyScanner(Page):
"y_offset_factor_p0": 1 / 14,
"x_offset_factor_p1": 1 / 14,
"y_offset_factor_p1": 1 / 14,
"aspect_high": 1.1,
"aspect_low": 0.9,
"aspect_high": 1.3,
"aspect_low": 0.7,
},
}

Expand Down

0 comments on commit 08e2932

Please sign in to comment.