Next-sentence suggestions now arrive one at a time up to twelve, shown three per page with Ctrl+Alt+Up/Down to move, Left/Right to page, Enter to accept and Esc to close; old default bindings migrate and the panel guide follows the live bindings. The overlay is redesigned, stays put while candidates stream and sits outside the input box when no caret is reported. The personal phrase memory stops learning from terminals, code editors and the coding-agent hub, ignores symbol-heavy lines and empty-field placeholders, and prunes existing entries that break those rules. Fixes suggestion keys starting dictation, installs stuck on a pre-1.5.0 speech engine without the focus endpoint, Ollama runner windows flashing while typing, the speech engine starting twice, and cold-model timeouts. Live captions can be dragged to a remembered position and show a waiting notice until the first line arrives. Bumps the product version to 1.6.0 (Android/iOS build 1060000).
34 lines
1.2 KiB
HTML
34 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="./style.css">
|
|
<title>Suggestion</title>
|
|
</head>
|
|
<body>
|
|
<div id="root">
|
|
<div id="panel" class="suggestion-panel">
|
|
<button id="close" class="close" type="button">
|
|
<svg viewBox="0 0 16 16" width="10" height="10" aria-hidden="true">
|
|
<path d="M3 3 L13 13 M13 3 L3 13" stroke="currentColor" stroke-width="2" stroke-linecap="round" />
|
|
</svg>
|
|
</button>
|
|
<div id="status" class="status" hidden>
|
|
<span class="spinner" aria-hidden="true"></span>
|
|
<span id="statusText" class="status-text"></span>
|
|
</div>
|
|
<div id="candidates" class="candidates"></div>
|
|
<div id="footer" class="footer" hidden>
|
|
<div class="footer-row">
|
|
<span id="progress" class="progress" aria-live="polite"></span>
|
|
<span id="provenance" class="provenance"></span>
|
|
</div>
|
|
<div id="keyHints" class="key-hints"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- type="module" 필수: Vite 번들에는 모듈 스크립트만 포함된다. -->
|
|
<script type="module" src="./script.js"></script>
|
|
</body>
|
|
</html>
|