Maze Winther
f1d5932c54
feat: separate audio from elements
2026-03-31 23:23:36 +02:00
Maze Winther
d23be079cc
Merge branch 'feature/track-placement'
2026-03-31 15:53:23 +02:00
Maze Winther
70a6d58b84
refactor: centralize track placement into its own module
2026-03-31 15:47:30 +02:00
Maze Winther
dcf54c1250
feat: migrate time utilities from typescript to rust WASM
2026-03-31 04:03:52 +02:00
Maze Winther
5cc6abc3a4
style: swap ripple icon
2026-03-29 22:31:26 +02:00
Maze Winther
77a14b1023
refactor: standardize icon component props
2026-03-29 22:30:11 +02:00
Maze Winther
1c3b22edec
feat: add keyframe graphs button
2026-03-29 21:48:33 +02:00
Maze Winther
41562baeb5
style: remove unnecessary margin from keyframe
2026-03-29 21:48:08 +02:00
Maze Winther
df207e0f83
refactor: name magic numbers and rename el in landing handlebars
2026-03-29 21:18:07 +02:00
Maze Winther
dc5956900e
fix: eliminate first-paint flicker in landing handlebars
2026-03-29 20:45:48 +02:00
Maze Winther
b095862cc0
fix: improve DATABASE_URL validation in web environment schema
2026-03-29 18:58:35 +02:00
Maze Winther
0a6ede73ae
chore: update deps
2026-03-29 18:57:05 +02:00
Maze Winther
7ce0018c9b
chore: update .gitignore
2026-03-29 18:55:56 +02:00
Maze Winther
9528d0053b
chore: untrack files
2026-03-29 18:55:10 +02:00
Maze Winther
689853312d
fix: remove OpenNext Cloudflare initialization
2026-03-29 18:35:58 +02:00
Maze Winther
5a1d9ef3f4
chore: remove unused middleware file
2026-03-29 18:30:16 +02:00
Rayan Salhab
eb66e03f0e
fix(security): replace new Function() with safe math expression parser ( #753 )
...
* fix(security): replace new Function() with safe math expression parser
Replace the dangerous new Function() constructor in evaluateMathExpression()
with a recursive descent parser that safely evaluates basic arithmetic
expressions.
The Function constructor is a security anti-pattern that could enable
arbitrary code execution if the validation regex is ever bypassed or
relaxed. The new parser:
- Only supports numbers, +, -, *, /, parentheses, and whitespace
- Has no eval-like functionality that could execute arbitrary code
- Maintains backward compatibility with existing expressions
- Handles operator precedence and parentheses correctly
Fixes #725
* Apply suggestion from @coderabbitai[bot]
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
---------
Co-authored-by: Maze <167211895+mazeincoding@users.noreply.github.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
2026-03-29 18:27:05 +02:00
Maze Winther
a2418751e6
chore: remove accidentally committed Zone.Identifier stream
2026-03-29 18:25:43 +02:00
Maze Winther
5777a555f6
feat: add shared Rust crates for cross-platform time utilities
...
Introduce `bridge` proc-macro crate with `#[export]` attribute that conditionally applies `wasm_bindgen` for WASM builds, and `time` crate porting all timecode/frame utilities from TypeScript to Rust.
2026-03-29 15:58:46 +02:00
Maze Winther
220ec757d4
refactor: move packages sub-folders into web app
2026-03-29 15:58:46 +02:00
Maze Winther
585e28d49b
feat: add published status to changelog entries
2026-03-29 15:58:46 +02:00
Maze Winther
1261e663e1
docs: rewrite agents file
2026-03-29 15:58:46 +02:00
Maze Winther
c34e01c63e
refactor: clean up number formatting and step handling in property tabs
2026-03-29 15:58:46 +02:00
Maze Winther
3e75852ffe
chore: remove dead songs tab
2026-03-29 15:58:46 +02:00
Maze Winther
e95992b406
chore: add missing open-next config
2026-03-29 15:58:46 +02:00
Maze Winther
6df9d70b9b
chore: update dep
2026-03-29 15:58:46 +02:00
Maze Winther
f8a0390827
chore: rename proxy to middleware
2026-03-29 15:58:46 +02:00
Maze Winther
d862e56e34
feat: init desktop app
2026-03-29 15:58:42 +02:00
Maze Winther
d08fbd73e1
fix: add missing file
2026-03-29 15:57:05 +02:00
Maze Winther
4d127a038b
chore: normalize line endings
2026-03-29 15:56:48 +02:00
Maze Winther
82817cb50c
chore: next-env
2026-03-29 15:49:30 +02:00
Maze Winther
a54b3ef076
chore: update botid
2026-03-29 15:49:30 +02:00
Maze Winther
6dd8191f4b
chore: init cloudflare
2026-03-29 15:49:30 +02:00
Maze Winther
722dcdd88f
fix: resolve typescript/lint errors
2026-03-29 15:49:30 +02:00
Maze Winther
8db3bead13
feat: masks, properties refactor, shaders, storage migrations, and more
2026-03-29 15:48:22 +02:00
Maze Winther
39ea298a9c
chore: gitignore
2026-03-29 15:46:35 +02:00
Maze Winther
2c0fd4f86b
untrack .cursor/
2026-03-29 15:46:35 +02:00
Maze Winther
5e2b829f8a
changelog: add already-completed item
2026-03-29 15:46:35 +02:00
Maze Winther
b09635064a
fix: assets having unreasonable widths and heights
2026-03-29 15:41:10 +02:00
Maze Winther
6018efc5ac
changelog: new version with already-made changes
2026-03-29 15:41:10 +02:00
Aspen
7e2a913e13
Update OpenCut logo in README ( #741 )
2026-03-28 19:07:36 +01:00
kcfancher
63496d05a2
Fix transcription sample-rate handling ( #740 )
...
Fix for #703 .
Adds an optional sampleRate parameter to the decodeAudioToFloat32() function. The caption transcriber passes in a value of 16000 to prepare audio in the format Whisper expects.
2026-03-28 19:06:40 +01:00
Maze Winther
f2eed05d36
fix blog build when marble cms isn't available
2026-03-24 14:18:39 +01:00
Maze Winther
26d523ebad
fix: fallback to opus codec
2026-03-09 00:10:31 +01:00
Maze Winther
0be9275a2d
dialog: decrease gap
2026-03-04 17:18:28 +01:00
Maze Winther
a2d08719f9
refactor: remove foreground variant from button, make it default
2026-03-04 17:16:01 +01:00
Maze Winther
ca3e5c98e6
add context menu (w/ brand options) to header logo
...
allows downloading brand assets directly from the logo in the header
2026-03-04 17:11:32 +01:00
Maze Winther
5ca2de25c6
fix: auto scroll on link
2026-03-04 16:53:04 +01:00
Maze Winther
ed8815c755
checker pattern for brand asset cards (branding page)
2026-03-04 16:45:03 +01:00
Maze Winther
24dac1232c
rename branding page to brand
2026-03-04 02:56:08 +01:00