chore(branding): rinomina il progetto in CadRoute

This commit is contained in:
2026-03-16 10:31:59 +01:00
parent d529e34249
commit a58a3c438c
4 changed files with 15 additions and 14 deletions

4
package-lock.json generated
View File

@@ -1,11 +1,11 @@
{ {
"name": "progetto", "name": "cadroute",
"version": "1.0.0", "version": "1.0.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "progetto", "name": "cadroute",
"version": "1.0.0", "version": "1.0.0",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {

View File

@@ -1,7 +1,7 @@
{ {
"name": "progetto", "name": "cadroute",
"version": "1.0.0", "version": "1.0.0",
"description": "CAD File Router MVP", "description": "CadRoute MVP",
"main": "main.js", "main": "main.js",
"scripts": { "scripts": {
"dev": "env -u ELECTRON_RUN_AS_NODE electron .", "dev": "env -u ELECTRON_RUN_AS_NODE electron .",
@@ -12,7 +12,8 @@
"author": "", "author": "",
"license": "ISC", "license": "ISC",
"build": { "build": {
"appId": "com.cad.router", "appId": "com.cadroute",
"productName": "CadRoute",
"win": { "win": {
"target": "nsis" "target": "nsis"
} }

View File

@@ -3,7 +3,7 @@
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CAD File Router</title> <title>CadRoute</title>
<style> <style>
:root { :root {
color-scheme: light; color-scheme: light;
@@ -255,7 +255,7 @@
</head> </head>
<body> <body>
<main class="page"> <main class="page">
<h1>Smistatore automatico</h1> <h1>CadRoute - Smistatore automatico</h1>
<p>Seleziona una cartella o uno ZIP con i disegni da smistare</p> <p>Seleziona una cartella o uno ZIP con i disegni da smistare</p>
<div class="actions"> <div class="actions">

14
sop.md
View File

@@ -1,4 +1,4 @@
# SOP CAD File Router MVP # SOP CadRoute MVP
## Obiettivo ## Obiettivo
Realizzare un'app desktop (.exe) che: Realizzare un'app desktop (.exe) che:
@@ -35,8 +35,8 @@ npm -v
## 2. Creazione progetto ## 2. Creazione progetto
``` ```
mkdir cad-file-router mkdir cadroute
cd cad-file-router cd cadroute
npm init -y npm init -y
``` ```
@@ -52,7 +52,7 @@ npm install electron-builder --save-dev
## 3. Struttura progetto ## 3. Struttura progetto
``` ```
cad-file-router cadroute
├── package.json ├── package.json
├── main.js ├── main.js
@@ -261,7 +261,7 @@ contextBridge.exposeInMainWorld("api", {
`renderer/index.html` `renderer/index.html`
``` ```
<h2>CAD File Router</h2> <h2>CadRoute</h2>
<button onclick="window.api.selectFolder()"> <button onclick="window.api.selectFolder()">
Process Folder Process Folder
@@ -298,7 +298,7 @@ Aggiungere nel package.json:
``` ```
"build": { "build": {
"appId": "com.cad.router", "appId": "com.cadroute",
"win": { "win": {
"target": "nsis" "target": "nsis"
} }
@@ -315,7 +315,7 @@ Output:
``` ```
dist/ dist/
cad-file-router Setup.exe CadRoute Setup.exe
``` ```
--- ---