diff --git a/.env.development b/.env.development index c32e76c3d..150824dbe 100644 --- a/.env.development +++ b/.env.development @@ -25,4 +25,4 @@ NEXT_PUBLIC_USE_MOCKS=true NEXT_PUBLIC_BASE_PATH=/talas5 # Oder leer lassen für direkten Zugriff -> NEXT_PUBLIC_BASE_PATH= # App-Versionsnummer -NEXT_PUBLIC_APP_VERSION=1.1.282 +NEXT_PUBLIC_APP_VERSION=1.1.283 diff --git a/.env.production b/.env.production index 3b140df56..013e044a8 100644 --- a/.env.production +++ b/.env.production @@ -26,4 +26,4 @@ NEXT_PUBLIC_BASE_PATH=/talas5 # Oder leer lassen für direkten Zugriff -> NEXT_PUBLIC_BASE_PATH= # App-Versionsnummer -NEXT_PUBLIC_APP_VERSION=1.1.282 \ No newline at end of file +NEXT_PUBLIC_APP_VERSION=1.1.283 \ No newline at end of file diff --git a/docs/README.md b/docs/README.md index 8133ea575..dc2e1eb19 100644 --- a/docs/README.md +++ b/docs/README.md @@ -11,15 +11,60 @@ Entwicklung, Architekturverständnis und Erweiterung. ## 📚 Inhaltsverzeichnis -- [📘 NodeMap – Entwicklerdokumentation](#-nodemap--entwicklerdokumentation) - - [📚 Inhaltsverzeichnis](#-inhaltsverzeichnis) - - [🔍 Projektüberblick](#-projektüberblick) - - [🧱 Projektstruktur \& Setup](#-projektstruktur--setup) - - [🔌 Webservices \& API-Fluss](#-webservices--api-fluss) - - [🧠 Zustandverwaltung (Redux)](#-zustandverwaltung-redux) - - [🧪 Entwicklung \& Testdaten](#-entwicklung--testdaten) - - [❗ Fehlerbehandlung \& Glossar](#-fehlerbehandlung--glossar) - - [🔄 Hinweis zum Deployment](#-hinweis-zum-deployment) +### 🔹 Einstieg & Übersicht + +- [Projektüberblick](architecture.md) +- [Build & Deployment](build-and-deploy.md) +- [Checkliste für Deployment](checklist.md) +- [Dynamische Marker erklärt](DynamischeMarkerErklaerung.md) + +### 🧭 Architektur + +- [Layer-Verbindung (Geräte)](architecture/device-layer-connection.md) + +### ⚙️ Konfiguration + +- [appVersion.js](config/appVersion.md) +- [Konfiguration: config.js](config/config.md) +- [Layer-Konfiguration](config/layers.md) +- [Allgemeine Übersicht](config/README.md) + +### 🧩 Hauptkomponenten + +- [MapComponent](components/mainComponent/MapComponent.md) +- [useInitializeMap](components/mainComponent/hooks/useInitializeMap.md) + +### 🗺️ Kontextmenü + +- [Übersicht Kontextmenü](components/contextmenu/README.md) +- [useMapContextMenu Hook](components/contextmenu/useMapContextMenu.md) +- [CoordinatePopup](components/contextmenu/CoordinatePopup.md) + +### ➕ POIs + +- [POI hinzufügen (AddPOIModal)](components/pois/AddPOIModal.md) +- [POI bearbeiten (PoiUpdateModal)](components/pois/PoiUpdateModal.md) + +### 📏 GIS-Polylinien + +- [PolylineContextMenu](components/gisPolylines/PolylineContextMenu.md) +- [StartIcon](components/gisPolylines/icons/StartIcon.md) +- [EndIcon](components/gisPolylines/icons/EndIcon.md) +- [CircleIcon](components/gisPolylines/icons/CircleIcon.md) +- [SupportPointIcons](components/gisPolylines/icons/SupportPointIcons.md) + +### 💡 UI-Komponenten + +- [CoordinateInput](components/uiWidgets/CoordinateInput.md) +- [VersionInfoModal](components/uiWidgets/VersionInfoModal.md) +- [EditModeToggle](components/uiWidgets/mapLayersControlPanel/EditModeToggle.md) +- [MapLayersControlPanel](components/uiWidgets/mapLayersControlPanel/MapLayersControlPanel.md) + +### 🔍 Weitere Tools + +- [TestScript (Debug)](components/TestScript.md) + +--- --- diff --git a/package-lock.json b/package-lock.json index fddd5288d..18bddf5cd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "nodemap", - "version": "1.1.282", + "version": "1.1.283", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "nodemap", - "version": "1.1.282", + "version": "1.1.283", "dependencies": { "@emotion/react": "^11.13.3", "@emotion/styled": "^11.13.0", diff --git a/package.json b/package.json index f5d7b5b19..1ac413ceb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nodemap", - "version": "1.1.282", + "version": "1.1.283", "dependencies": { "@emotion/react": "^11.13.3", "@emotion/styled": "^11.13.0",