v0.15.0: Critical input/rendering fixes, subagent-reviewed #7

Merged
amr merged 36 commits from feature/v0.11.0-slots into main 2026-05-11 22:03:18 -04:00
2 changed files with 11 additions and 1 deletions
Showing only changes of commit 149316cb58 - Show all commits

View File

@@ -6,8 +6,17 @@
;;; text-input, textarea, select, dialog, scrollbox, tabbar.
(load "~/quicklisp/setup.lisp")
;; Register local project in case it's not symlinked into quicklisp/local-projects/
(let ((cl-tty-path (truename ".")))
(pushnew cl-tty-path ql:*local-project-directories* :test #'equal))
(ql:register-local-projects)
(ql:quickload :cl-tty :silent t)
(ignore-errors (ql:quickload :cl-tty :silent t))
;; Fallback: load via asdf directly if quicklisp didn't find it
(unless (find-package :cl-tty.backend)
(load "cl-tty.asd")
(asdf:load-system :cl-tty))
(use-package :cl-tty.backend)
(use-package :cl-tty.input)

1
system-index.txt Normal file
View File

@@ -0,0 +1 @@
cl-tty.asd