Snapshot: Wand/Öffnung Multi-Surface-Select + Z-Drag + Brüstungs-Mitnahme

Stable working state after a long iteration session. The plugin now supports:
- Multi-Surface-Select für alle Element-Typen (Türen/Fenster/Treppen/Tragwerk)
- Wand-Z-Drag → unbound mode (UK/OK-Override, Wand vom Geschoss entkoppelt)
- Wand-Z-Drag nimmt verknüpfte Öffnungen mit (Brüstung += delta_z via Idle-Pfad)
- Öffnungs-XY-Drag snapt direktional auf Wand-Tangente
- Öffnungs-Z-Drag passt Brüstung an (Fenster sofort sync, Tür deferred)
- Wand-Delete kaskadiert Öffnungen (deferred via Idle, robust gegen _Rotate/_Move)
- Source-Cascade beim Öffnungs-Delete (deferred analog Wand-Kaskade)
- Listener-Cleanup robust gegen _reset_panels.py Reload (Refs in
  _dossier_runtime_event_refs gespeichert, vor Re-Install deregistriert)
- _count_same_id_type filtert IsDeleted (verhindert Source-Duplikat-Bug bei Move)
- Frontend: Brüstungs-Slider für Tür ("Schwelle"), Flügel-Block nur bei Fenster

Plus aus früherer Phase dieser Session:
- Dossier-Launcher Auto-Load via Rhinos StartupCommands-XML
- Default-Pfad zeigt auf gebundeltes startup.py (out-of-the-box für neue User)
- Splash-Window beim Plugin-Load mit native macOS rounded corners
- Diverse Launcher-Verbesserungen (Brüstungs-Default, tauri.conf, capabilities)

Known issue: bei Multi-Select-Move mit vielen Sub-Volumen kann sporadisch
"Unable to transform" auftreten (Rhinos Move-Operation kollidiert mit Wand-
Regen). Tür-spezifischer Defer-Pfad mildert das, Fenster läuft sync.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-18 01:50:45 +02:00
parent 1180d7bedf
commit 961b3c0396
52 changed files with 10760 additions and 765 deletions
+33 -5
View File
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Dossier",
"version": "0.1.0",
"version": "0.6.3",
"identifier": "ch.gabrielevarano.dossier",
"build": {
"beforeDevCommand": "npm run dev",
@@ -14,12 +14,28 @@
{
"label": "main",
"title": "Dossier",
"width": 920,
"height": 640,
"minWidth": 720,
"minHeight": 480,
"width": 1080,
"height": 720,
"minWidth": 880,
"minHeight": 520,
"resizable": true,
"fullscreen": false
},
{
"label": "splash",
"url": "splash.html",
"title": "Dossier lädt",
"width": 440,
"height": 190,
"center": true,
"alwaysOnTop": true,
"decorations": false,
"resizable": false,
"skipTaskbar": true,
"visible": false,
"transparent": true,
"shadow": true,
"focus": false
}
],
"security": {
@@ -29,14 +45,26 @@
"bundle": {
"active": true,
"targets": ["app", "dmg"],
"createUpdaterArtifacts": true,
"icon": ["icons/icon.png"],
"copyright": "© 2026 Karim Gabriele Varano",
"category": "DeveloperTool",
"shortDescription": "Dossier Launcher",
"longDescription": "Projekt-Launcher fuer das Dossier-Plugin in Rhino 8.",
"macOS": {
"signingIdentity": "-"
},
"resources": {
"../../dist": "dist",
"../../rhino": "rhino"
}
},
"plugins": {
"updater": {
"endpoints": [
"https://git.kgva.ch/karim/DOSSIER/raw/branch/main/latest.json"
],
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDY3Q0IzQzA4Mjc5NTczOApSV1E0VjNtQ3dMTjhCamZqbElWdDBlQnNNU3ZEZDg0bEp0aGtyRnN1M2ZKZTdJYzV0TUJEUnhxRQo="
}
}
}