Below you will find pages that utilize the taxonomy term “Tjorim”
July 12, 2026
Package MicroPythonOS App
Version updated for https://github.com/tjorim/mpos-package-mpk to version v1.0.2.
This action is used across all versions by 1 repositories. Action Type This is a Composite action.
Go to the GitHub Marketplace to find the latest changes.
What’s Changed Deterministic .mpk packaging for MicroPythonOS apps, built with pure-Python zipfile (no zip/find/touch dependency — runs on Linux, macOS, and native Windows runners). Follows the layout and reproducibility recipe from docs.micropythonos.com/apps/bundling-apps: fixed timestamps, sorted entries, stored/uncompressed, app folder first.
July 12, 2026
Publish to BadgeHub
Version updated for https://github.com/tjorim/mpos-badgehub-publish to version v1.0.11.
This action is used across all versions by 1 repositories. Action Type This is a Composite action.
Go to the GitHub Marketplace to find the latest changes.
What’s Changed Cleanup, no behavior change. CPython’s `stderr` is always line-buffered/unbuffered by default regardless of tty status — `fail()`’s messages (the ones that mattered while chasing `v1.0.6`-`v1.0.9`’s bugs) never actually needed explicit flushing. `stdout` is what block-buffers when piped to a CI log, and that’s handled globally now via `python3 -u` in `action.yml`’s invocation, rather than `flush=True` hand-added to every individual print call (easy to forget on a new one).