Release Twitch VOD Manager 1.0.18
Harden update, system-check, queue, cutter, streamer and shutdown state transitions. Add multi-user installer recovery, secret-safe config migration, provider fallback handling, managed-tool validation and real media export coverage. Refresh the English public documentation, release notes and 1.0.18 product screenshot.
This commit is contained in:
@@ -2,8 +2,12 @@ import { readFileSync } from 'node:fs';
|
||||
import { join } from 'node:path';
|
||||
import { describe, expect, test } from 'vitest';
|
||||
|
||||
const styles = readFileSync(join(__dirname, 'styles.css'), 'utf8');
|
||||
const workspaceStyles = readFileSync(join(__dirname, 'workspace.css'), 'utf8');
|
||||
const styles = ['styles.css', 'styles-workflows.css', 'styles-overlays.css']
|
||||
.map((fileName) => readFileSync(join(__dirname, fileName), 'utf8'))
|
||||
.join('');
|
||||
const workspaceStyles = ['workspace.css', 'workspace-refinements.css']
|
||||
.map((fileName) => readFileSync(join(__dirname, fileName), 'utf8'))
|
||||
.join('');
|
||||
|
||||
describe('cutter workspace style production paths', () => {
|
||||
test('keeps loaded-source visibility independent from the large-window media query', () => {
|
||||
|
||||
Reference in New Issue
Block a user