fix: font initialization and DA1 response filtering

- Use terminal.loadFonts() API for proper font re-measurement after web fonts load
- Add documentation referencing ghostty-web commit feab41f9a8e4491f
- Handle DA1 responses split across socket reads with escape sequence buffering
- Update Makefile push target to explicitly push current tag
This commit is contained in:
GitHub Copilot
2026-01-29 18:54:50 +00:00
parent 31ff91dcc3
commit 19f455d293
4 changed files with 59 additions and 18 deletions
+9 -2
View File
@@ -97,5 +97,12 @@ bump-patch: ## Bump patch version and create git tag
git tag "v$$NEW"; \
echo "Bumped version: $$OLD -> $$NEW (tagged v$$NEW)"
push: ## Push commits and tags to origin
git push origin main --tags
push: ## Push commits and current tag to origin
@TAG=$$(git describe --tags --exact-match 2>/dev/null); \
git push origin main; \
if [ -n "$$TAG" ]; then \
echo "Pushing tag $$TAG..."; \
git push origin "$$TAG"; \
else \
echo "No tag on current commit"; \
fi