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
+5 -5
View File
@@ -2,7 +2,7 @@
from __future__ import annotations
from backend.pinscopex.models import (
from backend.periscopex.models import (
Component,
ComponentConstraints,
ComponentType,
@@ -14,7 +14,7 @@ from backend.pinscopex.models import (
ResistorSpecs,
SimpleComponentSpecs,
)
from backend.pinscopex.thermal_check import check_thermal
from backend.periscopex.thermal_check import check_thermal
def _graph(components, nets):
@@ -63,7 +63,7 @@ def test_ldo_without_theta_ja_is_info():
)
findings = check_thermal(g, _cons())
assert len(findings) == 1
assert findings[0].rule_id == "PS-TH-001"
assert findings[0].rule_id == "PE-TH-001"
assert findings[0].status == "INFO"
assert "theta_ja" in findings[0].finding.lower() or "theta_ja" in findings[0].why.lower()
@@ -92,7 +92,7 @@ def test_ldo_hot_tj_is_warning():
)
findings = check_thermal(g, _cons())
assert len(findings) == 1
assert findings[0].rule_id == "PS-TH-002"
assert findings[0].rule_id == "PE-TH-002"
assert findings[0].status == "WARNING"
@@ -112,7 +112,7 @@ def test_shunt_over_rating_is_warning():
)
findings = check_thermal(g)
assert len(findings) == 1
assert findings[0].rule_id == "PS-TH-003"
assert findings[0].rule_id == "PE-TH-003"
assert findings[0].status == "WARNING"