refactor(lib,playback,whatsNew): home waveform→lib, timeline utils→playback, releaseNotes+changelog→whatsNew

This commit is contained in:
Psychotoxical
2026-06-30 20:26:34 +02:00
parent 695462ed87
commit aea8b7750b
37 changed files with 52 additions and 52 deletions
@@ -0,0 +1,7 @@
export function isDevChannelVersion(version: string): boolean {
return /-dev(?:\b|$)/i.test(version.trim());
}
export function isWorkspaceReleaseNotesMode(version: string): boolean {
return import.meta.env.DEV || isDevChannelVersion(version);
}