Commit Graph
1693 Commits
Author SHA1 Message Date
firtoz 68fe6a928b fix(tray): single-click opens window and brings it to front; Linux/Wayland focus workaround
- Add tray.on('click') to call focusOrCreateMainWindow() so left-click
  on the systray icon opens/focuses the app on all platforms (was
  previously only possible via right-click → Open).
- On Linux/Wayland, compositors often ignore focus() for security;
  Electron's tray does not yet handle ProvideXdgActivationToken like
  Qt apps (e.g. Telegram). Workaround: when the HUD exists but is
  not focused, destroy and recreate it so the new window receives
  focus (creation path works). Applied only for the HUD overlay, not
  the editor.
- Reorder: show() before restore(), then moveTop(), focus() for
  more reliable raise-on-restore.

Made-with: Cursor
2026-03-15 22:40:40 +00:00
Lawrence 361f4dbdf6 Add Anti-Slop workflow for PR quality checks
This workflow checks pull request quality using Anti-Slop, enforcing various criteria such as description length, commit message requirements, and contributor signals.
2026-03-15 22:20:46 +00:00
Lawrence a309d1abca Delete .github/workflows/antislop.yml 2026-03-15 22:20:31 +00:00
Lawrence 72661ae9be Create antislop.yml 2026-03-15 22:20:21 +00:00
webadderall 08a93e2187 Update CONTRIBUTING.md 2026-03-16 08:54:47 +11:00
Varun Kumar 04dcbc32b8 feat(recording): add configurable countdown timer before recording starts
- Add countdown delay setting (None, 3s, 5s, 10s) in HUD bar
- Show centered 200x200 countdown overlay visible on all workspaces
- Persist countdown delay preference across sessions
- Add i18n translations for countdown feature (en, es, zh-CN)
- Click or press ESC to cancel countdown
2026-03-16 00:12:44 +05:30
aras 7d03040642 fix(windows): prevent window flash on startup by deferring show until ready 2026-03-15 18:06:10 +03:00
aras b3423c39dd fix(macos): add explicit target architecture to Swift helper builds
Added `-target` flag to swiftc compilation to explicitly specify arm64-apple-macos14.0 or x86_64-apple-macos14.0 based on process architecture, ensuring proper binary compilation for darwin-arm64 native helpers.
2026-03-15 18:01:14 +03:00
webadderall 640cd6ac26 Update README.md
Removed link to Product Hunt from README.
2026-03-16 00:30:00 +11:00
4rjunc ff8d75b074 fix: audio in export, add audioRegion 2026-03-15 18:55:26 +05:30
webadderall db2fa00a49 Reapply "fix(ui): restore default shadow intensity to 67%"
This reverts commit ba314f9d51.
2026-03-15 23:49:26 +11:00
webadderall ba314f9d51 Revert "fix(ui): restore default shadow intensity to 67%"
This reverts commit d9af1c9898.
2026-03-15 23:48:16 +11:00
webadderall d9af1c9898 fix(ui): restore default shadow intensity to 67% 2026-03-15 23:46:34 +11:00
webadderall 8716760059 fix(windows): prevent cursor monitor ENOENT crash and build helper in release 2026-03-15 23:28:00 +11:00
4rjunc 97104a3f1b fix: add name display for audio files 2026-03-15 17:48:44 +05:30
4rjunc f0fbfef23f test: focused tests for audio path 2026-03-15 17:48:44 +05:30
4rjunc 98ff361fa1 feat: add audio volume 2026-03-15 17:48:44 +05:30
4rjunc 89038ae7a2 feat: add safe file URL 2026-03-15 17:48:44 +05:30
4rjunc 20e6c4776d fix: after rebase 2026-03-15 17:48:44 +05:30
4rjunc fa9692089a feat: add audio option in tools 2026-03-15 17:46:52 +05:30
4rjunc 1d3d180ad8 feat: add types for audio 2026-03-15 17:46:52 +05:30
4rjunc 2d42f0236e feat: add handlers + preloads 2026-03-15 17:46:52 +05:30
webadderall badadabd85 revert(ci): remove README auto-translation workflow 2026-03-15 22:04:25 +11:00
webadderall dbda66d8b0 Merge README zh-CN flipper and auto-translation workflow 2026-03-15 22:02:51 +11:00
webadderall 049ff73fff ci(docs): auto-translate README to zh-CN via GitHub Models 2026-03-15 22:01:51 +11:00
webadderall adc1843340 docs(readme): add EN/简中 language flipper 2026-03-15 21:58:49 +11:00
webadderall 99702220ef Update README.md 2026-03-15 21:43:22 +11:00
webadderall 1def56b73f fix(build): remove unused i18n vars blocking TypeScript compile v1.0.9 2026-03-15 21:07:43 +11:00
webadderall 53133c54a9 Merge pull request #21 from tokenflow1m/fix/windows-cursor-type
fix(windows): native cursor type detection
2026-03-15 21:02:22 +11:00
tokenflow1m 15f15b1156 fix: pin cursor state to arrow when native monitor is unavailable
When cursor-monitor.exe is missing, fails to spawn, or exits early,
keep cursorVisualType as 'arrow' instead of undefined. This prevents
the frontend from falling back to heuristic cursor type inference
which can produce incorrect results.
2026-03-15 18:57:51 +09:00
webadderall dbcd491251 Merge pull request #19 from tokenflow1m/feature/slider-reset-buttons
Add per-slider reset-to-default buttons
2026-03-15 20:57:36 +11:00
tokenflow1m afab911732 fix: add missing <cstdio> include and flush stdout explicitly
Address Copilot review: include <cstdio> for std::setvbuf portability,
use std::endl instead of "\n" to guarantee flush on piped stdout.
2026-03-15 18:25:48 +09:00
tokenflow1m 8844111584 feat(windows): add native cursor type detection via cursor-monitor.exe
Build a standalone C++ helper (same pattern as wgc-capture) that polls
GetCursorInfo() every 50ms and emits STATE:<type> to stdout — identical
protocol to the macOS Swift helper. Windows recordings now capture
correct cursor types (text, pointer, resize, etc.) instead of always
falling back to arrow.
2026-03-15 18:12:42 +09:00
tokenflow1m 3640b6339c Add per-slider reset buttons via SliderControl component 2026-03-15 17:26:23 +09:00
webadderall c7b648f403 Merge pull request #16 from dev-Flyblue/feat/i18n-zh-CN
feat(i18n): add Simplified Chinese (zh-CN) localization as well as spanish
2026-03-15 19:06:01 +11:00
webadderall f1ca9725b0 Revise contribution areas in CONTRIBUTING.md
Updated contribution guidelines to highlight key areas for help.
2026-03-15 18:59:28 +11:00
dev-FlyblueandClaude Opus 4.6 b5827e24d6 fix(i18n): translate 4 remaining English permission strings in es/launch.json
Translate screenRecordingNeeded, screenRecordingMissing,
accessibilityNeeded, accessibilityMissing to Spanish.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-15 15:47:56 +08:00
dev-FlyblueandClaude Opus 4.6 1ab7e122d2 fix(i18n): remove unused tEditor and index variables
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-15 15:47:56 +08:00
dev-FlyblueandClaude Opus 4.6 af94d74ad8 fix(i18n): handle extended locale subtags like zh-Hans-CN
normalizeLocale now correctly maps Windows-style locale strings
(e.g. "zh-Hans-CN") to "zh-CN" by trying lang-region before falling
back to the base language. Bare "zh" is also mapped to "zh-CN".

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-15 15:45:35 +08:00
dev-FlyblueandClaude Opus 4.6 6724a1ce6b docs: add CLAUDE.md for Claude Code guidance
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-15 15:43:42 +08:00
dev-FlyblueandClaude Opus 4.6 e7476881a3 feat(i18n): replace hardcoded UI strings with t() calls across all components
Migrate all user-visible hardcoded English strings in launch, editor,
timeline, settings, dialogs, and shortcuts components to use the i18n
t()/useScopedT() functions, enabling runtime language switching.

Modified components:
- launch: LaunchWindow, SourceSelector
- editor: VideoEditor, PlaybackControls, AnnotationSettingsPanel,
  SettingsPanel, ExportDialog, FormatSelector, GifOptionsPanel,
  TutorialHelp, KeyboardShortcutsHelp, AddCustomFontDialog,
  ShortcutsConfigDialog
- timeline: TimelineEditor, Item

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-15 15:43:42 +08:00
webadderall e32e7be9b4 Revert "Fix over-aggressive text cursor inference on Windows"
This reverts commit 045900f6f4.
v1.0.8
2026-03-15 18:42:01 +11:00
webadderall 5af5178deb Revert stationary cursor snap on stop 2026-03-15 18:35:07 +11:00
webadderall 045900f6f4 Fix over-aggressive text cursor inference on Windows 2026-03-15 18:35:07 +11:00
dev-FlyblueandClaude Opus 4.6 3524b13614 feat(i18n): add zh-CN translations and populate en/es locale files
Extract all user-visible hardcoded strings into 7 namespace locale files
(common, launch, editor, timeline, settings, dialogs, shortcuts) for all
three languages: English (source of truth), Spanish, and Simplified Chinese.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-15 15:20:01 +08:00
webadderall d388101183 Add link to Product Hunt in README 2026-03-15 18:04:12 +11:00
webadderall 6bd0b8f56e feat: scaffold language selection UI (no locale translations) 2026-03-15 17:52:40 +11:00
webadderall b11908d659 Merge pull request #15 from tokenflow1m/fix/hud-overlay-clipping
Fix HUD overlay clipping and scrollbar on Windows
2026-03-15 17:06:58 +11:00
tokenflow1m f6b7c24704 Fix HUD overlay clipping and horizontal scrollbar
The HUD overlay window (500px) was narrower than the HUD bar's
max-width (560px), causing content to clip on both sides and a
horizontal scrollbar to appear.

- Widen HUD overlay window from 500px to 600px
- Add overflow-hidden to the root container
- Remove unnecessary max-w-[560px] from the HUD bar
2026-03-15 14:39:22 +09:00
webadderall 1195890022 Add custom aspect ratio inputs and persistence 2026-03-15 15:50:31 +11:00