<feed xmlns='http://www.w3.org/2005/Atom'>
<title>labUI.git/.gitignore, branch main</title>
<subtitle>Data acquisition program written in Python for use with serial communication devices.
</subtitle>
<id>https://git.kolset.xyz/labUI.git/atom?h=main</id>
<link rel='self' href='https://git.kolset.xyz/labUI.git/atom?h=main'/>
<link rel='alternate' type='text/html' href='https://git.kolset.xyz/labUI.git/'/>
<updated>2026-08-04T22:12:42Z</updated>
<entry>
<title>ignoring vscode directory</title>
<updated>2026-08-04T22:12:42Z</updated>
<author>
<name>Christian Kolset</name>
<email>ckolset@colostate.edu</email>
</author>
<published>2026-08-04T22:12:42Z</published>
<link rel='alternate' type='text/html' href='https://git.kolset.xyz/labUI.git/commit/?id=36ea532b4f7f335bece90f2c56a129e20ebc94e6'/>
<id>urn:sha1:36ea532b4f7f335bece90f2c56a129e20ebc94e6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'feat/auto-updater'</title>
<updated>2026-08-02T17:05:48Z</updated>
<author>
<name>Christian Kolset</name>
<email>christian.kolset@gmail.com</email>
</author>
<published>2026-08-02T17:05:48Z</published>
<link rel='alternate' type='text/html' href='https://git.kolset.xyz/labUI.git/commit/?id=1c349a982026736f4c2a26951d9d0aefe7b963bc'/>
<id>urn:sha1:1c349a982026736f4c2a26951d9d0aefe7b963bc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge origin/main: reconcile ConfigWindow consolidation with Debug window + protocol updates</title>
<updated>2026-08-02T07:34:43Z</updated>
<author>
<name>Christian Kolset</name>
<email>christian.kolset@gmail.com</email>
</author>
<published>2026-08-02T07:34:43Z</published>
<link rel='alternate' type='text/html' href='https://git.kolset.xyz/labUI.git/commit/?id=a3aa1df99df8f413cac2ba6020b7cd0dec6d2390'/>
<id>urn:sha1:a3aa1df99df8f413cac2ba6020b7cd0dec6d2390</id>
<content type='text'>
origin/main (23 commits) added a Debug window/log system on top of the old
separate Devices/Channels/Plot windows, plus protocol fixes (cml, mark10,
modbus_rtu, scpi) and device/profile changes. Local main (3 commits)
replaced the separate windows with a unified ConfigWindow + dock panel.

Kept local's ConfigWindow/dock architecture and ported the Debug window
onto it: new toolbar button + _open_debug(), gated by developer_mode same
as origin's version. Deduped the two independent "developer mode" toggles
that had collided in SettingsWindow (origin's General-tab checkbox gating
Debug window + device sim-mode visibility, local's Advanced-tab checkbox
setting verbose logging) into one General-tab checkbox that does both.

Co-Authored-By: Claude Sonnet 5 &lt;noreply@anthropic.com&gt;
</content>
</entry>
<entry>
<title>Major control panel improvements.</title>
<updated>2026-08-02T05:02:14Z</updated>
<author>
<name>Christian Kolset</name>
<email>christian.kolset@gmail.com</email>
</author>
<published>2026-08-02T04:55:49Z</published>
<link rel='alternate' type='text/html' href='https://git.kolset.xyz/labUI.git/commit/?id=e1b951db7714a9496ebf7f861a6741598d4c7e67'/>
<id>urn:sha1:e1b951db7714a9496ebf7f861a6741598d4c7e67</id>
<content type='text'>
    - Added dedicated firmware file for arduino
    - Added View button to consolidate windows
    - Control Panel changes:
        - Changed name fron "Controls" to "Control Panel"
        - Blue side bar when Panel is hidden.
        - Supports "popping" out contorl panel
    - Settings &gt; Advanced tab added with developer settings
</content>
</entry>
<entry>
<title>Add PyInstaller packaging and tufup-based auto-update pipeline</title>
<updated>2026-07-31T21:52:28Z</updated>
<author>
<name>Christian Kolset</name>
<email>ckolset@colostate.edu</email>
</author>
<published>2026-07-31T21:52:28Z</published>
<link rel='alternate' type='text/html' href='https://git.kolset.xyz/labUI.git/commit/?id=bfbdd0c19910f464e779fa64cc0ec8590f8e37c1'/>
<id>urn:sha1:bfbdd0c19910f464e779fa64cc0ec8590f8e37c1</id>
<content type='text'>
Full pipeline, verified end-to-end against the real installed tufup
0.10.0 API (initial docs/summaries turned out inaccurate in places —
e.g. the apply method is download_and_apply_update, not update;
confirmed by inspecting installed package source directly rather than
trusting docs alone):

- core/version.py: single-source app version constant.
- labdaq.spec: PyInstaller onedir build (must be onedir, not onefile —
  tufup replaces individual files in the install dir on update).
  Bundles ui/*.qss, plugins/ (needed for runtime plugin discovery), and
  repository/metadata/root.json once repo_init.py has produced one.
  Built and smoke-tested: the frozen exe launches and stays running.
- scripts/release/{repo_init,repo_release}.py: maintainer-run release
  tooling using tufup.repo.Repository, manual local signing (keys never
  touch CI). Both actually run end-to-end during development of this
  feature against a real build, not just written and assumed correct.
  Longer expiration_days than tufup-example's CI-oriented defaults
  (targets/snapshot/timestamp 90d instead of 7d/7d/1d), since we're
  signing manually, not on an automated daily schedule — see
  scripts/release/README.md for the re-signing cadence this still
  requires even between releases.
- core/updater.py: thin Client wrapper. Refuses to run outside a
  frozen build (getattr(sys, "frozen", False)) since there's no
  installed bundle for tufup to update in `python main.py` dev mode.
  Bootstraps the bundled root.json into the metadata cache dir on
  first run — tuf.ngclient.Updater loads root.json from local disk on
  construction, it does not fetch it remotely by design (the root of
  trust can't come from the same server being verified).
- core/app_settings.py: factored out app_data_dir() (was inline in
  _settings_path()) so the updater's metadata/target cache dirs live
  in the same per-user location as settings.json, deliberately outside
  the install directory an update can replace/move.
- Settings &gt; General: version display + "Check for Updates" button,
  manual-only per discussion (no silent background network calls or
  surprise restarts for a lab-instrument-control app).

Metadata/targets are hosted on this repo's "updates" GitHub Release —
a fixed tag, not a normal per-version tag, because TUF's top-level
metadata needs a stable URL across app versions. No such GitHub-Releases-
hosting example exists in tufup or tufup-example; verified this by
fetching tufup-example's actual GitHub Actions workflow file directly
after a web search wrongly suggested one existed — the design here is
ours, not copied from upstream.

Not yet done, deliberately left for the user: running repo_init.py for
real (generates production signing keys), and creating the actual
"updates" GitHub Release. Both are irreversible-ish, security-sensitive,
externally-visible actions outside what should happen without the
user directly driving them.

Co-Authored-By: Claude Sonnet 5 &lt;noreply@anthropic.com&gt;
</content>
</entry>
<entry>
<title>Enhance protocol layers: implement I/O locking for thread safety in serial communication</title>
<updated>2026-07-27T23:34:30Z</updated>
<author>
<name>Christian Kolset</name>
<email>ckolset@colostate.edu</email>
</author>
<published>2026-07-27T23:34:30Z</published>
<link rel='alternate' type='text/html' href='https://git.kolset.xyz/labUI.git/commit/?id=ee4965f4d4d1fc5d40be24b99341620e32386d40'/>
<id>urn:sha1:ee4965f4d4d1fc5d40be24b99341620e32386d40</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix .gitignore: remove duplicate entry for plugins/enabled.json</title>
<updated>2026-07-27T23:13:41Z</updated>
<author>
<name>Christian Kolset</name>
<email>ckolset@colostate.edu</email>
</author>
<published>2026-07-27T23:13:41Z</published>
<link rel='alternate' type='text/html' href='https://git.kolset.xyz/labUI.git/commit/?id=c3f07a7ffa320aecb3fca5dd40e7644424bddfb5'/>
<id>urn:sha1:c3f07a7ffa320aecb3fca5dd40e7644424bddfb5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add simulation handling to protocol layers and update motion_capture setting</title>
<updated>2026-07-27T22:47:47Z</updated>
<author>
<name>Christian Kolset</name>
<email>ckolset@colostate.edu</email>
</author>
<published>2026-07-27T22:47:47Z</published>
<link rel='alternate' type='text/html' href='https://git.kolset.xyz/labUI.git/commit/?id=49294cdeb57b537308145e6ec552d05e61e69dfa'/>
<id>urn:sha1:49294cdeb57b537308145e6ec552d05e61e69dfa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove __pycache__ from tracking</title>
<updated>2026-06-03T22:48:47Z</updated>
<author>
<name>Christian Kolset</name>
<email>christian.kolset@gmail.com</email>
</author>
<published>2026-06-03T22:47:50Z</published>
<link rel='alternate' type='text/html' href='https://git.kolset.xyz/labUI.git/commit/?id=7f80e836029dfd3d81ffe92593d6ccb7769298e3'/>
<id>urn:sha1:7f80e836029dfd3d81ffe92593d6ccb7769298e3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Added logs to .gitignore</title>
<updated>2026-04-21T22:08:16Z</updated>
<author>
<name>Christian Kolset</name>
<email>christian.kolset@gmail.com</email>
</author>
<published>2026-04-21T22:08:16Z</published>
<link rel='alternate' type='text/html' href='https://git.kolset.xyz/labUI.git/commit/?id=97e15f69b835af03b071c4eeb4547c65a02e6f80'/>
<id>urn:sha1:97e15f69b835af03b071c4eeb4547c65a02e6f80</id>
<content type='text'>
</content>
</entry>
</feed>
