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",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "progetto",
"name": "cadroute",
"version": "1.0.0",
"license": "ISC",
"dependencies": {

View File

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

View File

@@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CAD File Router</title>
<title>CadRoute</title>
<style>
:root {
color-scheme: light;
@@ -255,7 +255,7 @@
</head>
<body>
<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>
<div class="actions">

14
sop.md
View File

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