Hermes Agent
29f99a576d
literate: restructure all 19 org files with per-function blocks and prose
...
Every function, defclass, defstruct, defgeneric, defmethod, defmacro,
defvar, and defparameter in every org file now has its own #+BEGIN_SRC
block with literate prose above it explaining the design reasoning.
Block counts before → after:
package.org: 1 → 7
container-package.org: 1 → 1 (prose expanded)
dirty.org: 4 → 6
render.org: 10 → 25
theme.org: 6 → 19
box-renderable.org: 9 → 29
scrollbox.org: 8 → 26
tabbar.org: 5 → 10
backend-protocol.org: 8 → 66
modern-backend.org: 17 → 53
detection.org: 4 → 6
layout-engine.org: 9 → 36
framebuffer.org: 8 → 37
markdown-renderer.org:13 → 38
dialog.org: 17 → 23 (merged dual structure)
mouse.org: 4 → 25
select.org: 12 → 30
slot.org: 4 → 12
text-input.org: 11 → 53
Total: ~153 blocks → ~502 blocks
Bugs fixed during restructuring:
- render.org: stray π character typo (backenπd → backend)
- modern-backend.org: sgr-attr missing closing paren + #+END_SRC
- detection.org: invalid #\Esc character reference
- select.org: extra closing paren in select-visible-options
All 13 test suites pass at 100%.
2026-05-12 18:55:07 +00:00
Hermes Agent
5f07c1fd76
fix: tangle.py write-once-then-append logic (was always-appending, triplicating files); confirm-dialog option plist comparison; mouse-event button type (or keyword null)
2026-05-12 15:51:44 +00:00
Hermes Agent
ca90d6b945
chore: org tangle sync — regenerate .lisp from .org sources (zero functional changes, file sizes identical)
2026-05-12 15:42:40 +00:00
Hermes Agent
5930e17b57
fix: org tangle — fix END_SRC boundaries in mouse.org/slot.org (prose inside code blocks), replace emacs tangle with Python script that handles all blocks
2026-05-12 15:22:29 +00:00
Hermes Agent
b21daa99b8
fix: input timeout bugs — read-raw-byte, SS3, parse-csi-params all use sub-second timeouts now (get-internal-real-time replaces get-universal-time which truncated to integer seconds)
2026-05-12 13:42:39 +00:00
Hermes
448127c696
critical fixes: schedule-event, :fiveam deps, syntax-highlighters, draw-rect frame sig
2026-05-11 23:03:52 +00:00
Hermes
fafb1dae61
review fixes: package exports, hit-test safety, draw-text signature
2026-05-11 22:53:49 +00:00
Hermes
225b52a9d8
review fixes: version bump, remove dead test file, fix extract-text bounds, fix markdown package, update roadmap
2026-05-11 22:50:31 +00:00
Hermes
1ba298e705
v0.14.0: sync org files with mouse selection and framebuffer inspection
2026-05-11 22:43:49 +00:00
Hermes
edd5a7b8d1
v0.14.0: Mouse improvements - selection tracking and link clicking
2026-05-11 22:41:34 +00:00
Hermes
ddd3950e49
v0.13.0: Rendering pipeline with framebuffer backend
...
New module: src/rendering/framebuffer.lisp (tangled from org/framebuffer.org)
- framebuffer-backend class: implements backend protocol by writing to
2D cell array instead of emitting escape sequences
- cell struct: per-cell state (char, fg, bg, bold, italic, underline, link-url)
- make-framebuffer / framebuffer-width / framebuffer-height
- draw-text, draw-rect, draw-border, draw-link, draw-ellipsis methods
- diff-framebuffers: compares two framebuffers, returns changed cells
- flush-framebuffer: diff + output changes to real backend
- with-scissor macro: clip drawing operations to rectangle
- cursor-move: added default no-op method for all backends
- 20 new tests, all passing (372 total)
Version bumped from 0.11.0 to 0.13.0.
License field set to GPL-3.0 in ASDF.
2026-05-11 22:34:58 +00:00