feat: tłumaczenia symulacji w wielu językach; prędkości x32/x64; README EN; MIT license

This commit is contained in:
2026-02-12 14:08:30 +01:00
parent fc25246594
commit be04f333b0
4 changed files with 467 additions and 434 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -9,8 +9,8 @@ export function useSolver() {
const isPlaying = ref(false);
const isProcessing = ref(false);
const speedIndex = ref(0);
const speeds = [1000, 500, 250, 125, 62];
const speedLabels = ['x1', 'x2', 'x4', 'x8', 'x16'];
const speeds = [1000, 500, 250, 125, 62, 31, 16];
const speedLabels = ['x1', 'x2', 'x4', 'x8', 'x16', 'x32', 'x64'];
const statusText = ref(t('guide.waiting'));
let intervalId = null;