Rebrand Pinscope to Periscope across product and codebase.

Rename the core package to periscopex, update UI/docs/Docker/deploy defaults to periscope.michelebigi.it, and keep legacy version/storage key aliases so existing projects keep working.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-09-13 20:02:04 +02:00
co-authored by Cursor
parent 556306bf4d
commit 8d2b85600f
177 changed files with 869 additions and 766 deletions
+3 -3
View File
@@ -19,7 +19,7 @@ from __future__ import annotations
import json
from backend.pinscopex.models import Finding
from backend.periscopex.models import Finding
from backend.services.normalize_findings import (
SUBMIT_NORMALIZED_SCHEMA,
_build_normalized,
@@ -63,7 +63,7 @@ def test_normalize_passthrough_keeps_cad_fields():
reference="",
net="UART5_TX",
pins=["U3.54"],
rule_id="PS-MUX-001",
rule_id="PE-MUX-001",
cad_sheet="mcu.kicad_sch",
)
]
@@ -74,7 +74,7 @@ def test_normalize_passthrough_keeps_cad_fields():
built = _build_normalized(raw_findings, [], originals)
assert built is not None
kept, _ = built
assert kept[0].rule_id == "PS-MUX-001"
assert kept[0].rule_id == "PE-MUX-001"
assert kept[0].net == "UART5_TX"
assert kept[0].pins == ["U3.54"]
assert kept[0].cad_sheet == "mcu.kicad_sch"