fix(router): corregge estensione .dwr in .drw (formato Creo corretto)

Creo utilizza .drw per i disegni 2D, non .dwr. Rimossa la normalizzazione
errata drw→dwr nel router, aggiornata la regex, CAD_EXTENSIONS e la
documentazione utente
This commit is contained in:
2026-03-16 13:56:10 +01:00
parent 82becb7569
commit fea0699ff1
4 changed files with 5 additions and 6 deletions

View File

@@ -14,7 +14,7 @@ const {
clearSkippedFiles,
} = require('./services/unrouted');
const CAD_EXTENSIONS = ['prt', 'asm', 'dwr'];
const CAD_EXTENSIONS = ['prt', 'asm', 'drw'];
const DEFAULT_DESTINATION = 'X:\\';
const SETTINGS_FILENAME = 'cad-router-settings.json';
const LINUX_RUNTIME_DIR = '.cadroute';