refactor: Implement mobile-friendly control panel toggle and remove keyboard shortcuts hint.

This commit is contained in:
syntaxbullet
2026-02-10 13:02:41 +01:00
parent bb4ca0610d
commit faa9609254
10 changed files with 1160 additions and 366 deletions

View File

@@ -23,6 +23,13 @@ export interface AsciiOptions {
denoise?: boolean;
fontAspectRatio?: number;
onProgress?: (progress: number) => void;
sharpen?: number;
edgeThreshold?: number;
shadows?: number;
highlights?: number;
scanlines?: number;
vignette?: number;
monoColor?: string;
}
export interface AsciiResult {
@@ -55,6 +62,13 @@ export interface AsciiSettings {
overlayStrength: number;
resolution: number;
charSet: CharSetKey;
sharpen: number;
edgeThreshold: number;
shadows: number;
highlights: number;
scanlines: number;
vignette: number;
monoColor: string;
}
// ============= Constants =============