What changed, and why it matters
This commit simply bumps the project's beta version number from 25.10.beta0 to 25.10.beta1 in four files. It also removes two harmless code comments about touch settings. There are no functional code changes and no security implications.
No action required. This is a benign version-bump commit with no security relevance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff is a routine version bump: VERSION constants and documentation references are updated from beta0 to beta1. In krux_settings.py, two identical comments (‘# Allow touch settings even if input.touch is disabled’) are removed, but the surrounding conditional logic is unchanged. No executable behavior was modified.
Changed components
mkdocs.ymlpyproject.tomlsrc/krux/krux_settings.pysrc/krux/metadata.pyInspect captured patch +3 / −5
diff --git a/mkdocs.yml b/mkdocs.yml
index 2e486cf..ac0853f 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -52,7 +52,7 @@ edit_uri: edit/main/docs
docs_dir: docs
site_dir: public
extra:
- latest_krux: krux-v25.10.beta0
+ latest_krux: krux-v25.10.beta1
latest_installer: v0.0.20
latest_installer_rpm: krux-installer-0.0.20-1.x86_64.rpm
latest_installer_deb: krux-installer_0.0.20_amd64.deb
diff --git a/pyproject.toml b/pyproject.toml
index 186daaf..2ce86fc 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -22,7 +22,7 @@
[tool.poetry]
name = "krux"
-version = "25.10.beta0"
+version = "25.10.beta1"
description = "Open-source signing device firmware for Bitcoin"
authors = ["Jeff S <jeffreesun@protonmail.com>"]
readme = "README.md"
diff --git a/src/krux/krux_settings.py b/src/krux/krux_settings.py
index 9a553f1..b10719f 100644
--- a/src/krux/krux_settings.py
+++ b/src/krux/krux_settings.py
@@ -375,7 +375,6 @@ class HardwareSettings(SettingsNamespace):
def __init__(self):
self.printer = PrinterSettings()
self.buttons = ButtonsSettings()
- # Allow touch settings even if input.touch is disabled
if board.config["krux"]["display"].get("touch", False):
self.touch = TouchSettings()
if kboard.is_amigo:
@@ -390,7 +389,6 @@ class HardwareSettings(SettingsNamespace):
"printer": t("Printer"),
}
hardware_menu["buttons"] = t("Buttons")
- # Allow touch settings even if input.touch is disabled
if board.config["krux"]["display"].get("touch", False):
hardware_menu["touchscreen"] = t("Touchscreen")
if kboard.is_amigo:
diff --git a/src/krux/metadata.py b/src/krux/metadata.py
index fed070e..5cefa7c 100644
--- a/src/krux/metadata.py
+++ b/src/krux/metadata.py
@@ -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 = "25.10.beta0"
+VERSION = "25.10.beta1"
SIGNER_PUBKEY = "03339e883157e45891e61ca9df4cd3bb895ef32d475b8e793559ea10a36766689b"
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.