Skip to content

Commit 03ea871

Browse files
committed
feat(docs): add new features to index.html
1 parent 68da62a commit 03ea871

2 files changed

Lines changed: 13 additions & 0 deletions

File tree

Textream/Textream/ExternalDisplayController.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,11 @@ struct ExternalDisplayView: View {
184184
}
185185
.scaleEffect(x: mirrorAxis?.scaleX ?? 1, y: mirrorAxis?.scaleY ?? 1)
186186
.animation(.easeInOut(duration: 0.5), value: isDone)
187+
.onChange(of: isDone) { _, done in
188+
if done {
189+
speechRecognizer.stop()
190+
}
191+
}
187192
.onReceive(scrollTimer) { _ in
188193
guard !isDone, !isUserScrolling else { return }
189194
let speed = NotchSettings.shared.scrollSpeed // words per second

docs/index.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2589,6 +2589,14 @@ <h2>How it keeps you on track</h2>
25892589
<div class="feat-dot"><svg viewBox="0 0 24 24"><path d="M21 2H3v16h18V2z"/><path d="M12 18v4"/><path d="M8 22h8"/></svg></div>
25902590
<div class="feat-text"><h3>Auto Updates</h3><p>Checks GitHub Releases for new versions. One click to download.</p></div>
25912591
</div>
2592+
<div class="feat-item">
2593+
<div class="feat-dot"><svg viewBox="0 0 24 24"><path d="M4 4h16v12H4z"/><path d="M8 20h8"/><path d="M12 16v4"/><path d="M9 8h6"/><path d="M9 11h4"/></svg></div>
2594+
<div class="feat-text"><h3>PowerPoint Notes Import</h3><p>Drop a .pptx file to extract presenter notes as pages. Works with Keynote and Google Slides too — just export to PowerPoint first.</p></div>
2595+
</div>
2596+
<div class="feat-item">
2597+
<div class="feat-dot"><svg viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/></svg></div>
2598+
<div class="feat-text"><h3>Save as .textream Files</h3><p>Save your scripts as .textream files to reuse anytime. Open, edit, and keep your notes organized across presentations.</p></div>
2599+
</div>
25922600
</div>
25932601
</section>
25942602

0 commit comments

Comments
 (0)