diff --git a/.env.development b/.env.development index c7d6d9b..63f0139 100644 --- a/.env.development +++ b/.env.development @@ -6,6 +6,6 @@ NEXT_PUBLIC_USE_MOCK_BACKEND_LOOP_START=false NEXT_PUBLIC_EXPORT_STATIC=false NEXT_PUBLIC_USE_CGI=false # App-Versionsnummer -NEXT_PUBLIC_APP_VERSION=1.6.750 +NEXT_PUBLIC_APP_VERSION=1.6.751 NEXT_PUBLIC_CPL_MODE=json # json (Entwicklungsumgebung) oder jsSimulatedProd (CPL ->CGI-Interface-Simulator) oder production (CPL-> CGI-Interface Platzhalter) diff --git a/.env.production b/.env.production index 9859e09..a825bed 100644 --- a/.env.production +++ b/.env.production @@ -5,5 +5,5 @@ NEXT_PUBLIC_CPL_API_PATH=/CPL NEXT_PUBLIC_EXPORT_STATIC=true NEXT_PUBLIC_USE_CGI=true # App-Versionsnummer -NEXT_PUBLIC_APP_VERSION=1.6.750 +NEXT_PUBLIC_APP_VERSION=1.6.751 NEXT_PUBLIC_CPL_MODE=production \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 8efc465..f390be0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [1.6.751] – 2025-08-20 + +- Presentation playwright + +--- ## [1.6.750] – 2025-08-19 - feat: light und dark mode Messwerteingänge diff --git a/Git 2.pptx b/Git 2.pptx new file mode 100644 index 0000000..d6eddf9 Binary files /dev/null and b/Git 2.pptx differ diff --git a/Testing_CPLV4_Webserver.pptx b/Testing_CPLV4_Webseiten.pptx similarity index 100% rename from Testing_CPLV4_Webserver.pptx rename to Testing_CPLV4_Webseiten.pptx diff --git a/create_presentation.py b/create_presentation.py index 9e3fd28..2c1da76 100644 --- a/create_presentation.py +++ b/create_presentation.py @@ -19,7 +19,7 @@ def add_slide(title, content_lines): p.alignment = PP_ALIGN.LEFT # Folie 1: Titel -add_slide("Testing CPL V4 Webserver", ["Von: Ismail Ali", "Datum: 22.08.2025"]) +add_slide("Testing CPL V4 Webseiten", ["Von: Ismail Ali", "Datum: 22.08.2025"]) # Folie 2 entfernt diff --git a/mocks/device-cgi-simulator/SERVICE/kabelueberwachungMockData.js b/mocks/device-cgi-simulator/SERVICE/kabelueberwachungMockData.js index 4252ed5..c1af4ba 100644 --- a/mocks/device-cgi-simulator/SERVICE/kabelueberwachungMockData.js +++ b/mocks/device-cgi-simulator/SERVICE/kabelueberwachungMockData.js @@ -265,11 +265,11 @@ var loopMeasurementEvent = [ ]; //Event TDR-Messung var tdrMeasurementEvent = [ - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ]; //Event Abgleich var alignmentEvent = [ - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ]; diff --git a/package-lock.json b/package-lock.json index 230f075..d9130f2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "cpl-v4", - "version": "1.6.750", + "version": "1.6.751", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "cpl-v4", - "version": "1.6.750", + "version": "1.6.751", "dependencies": { "@fontsource/roboto": "^5.1.0", "@headlessui/react": "^2.2.4", diff --git a/package.json b/package.json index ed565a6..b9a21ef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cpl-v4", - "version": "1.6.750", + "version": "1.6.751", "private": true, "scripts": { "dev": "next dev", diff --git a/pages/_app.tsx b/pages/_app.tsx index dc7801e..ba82407 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -13,7 +13,6 @@ import Footer from "@/components/footer/Footer"; import { store } from "@/redux/store"; import Script from "next/script"; import DeviceEventsBridge from "@/components/common/DeviceEventsBridge"; -import GlobalActivityOverlay from "@/components/common/GlobalActivityOverlay"; import { usePathname } from "next/navigation"; // Thunks importieren @@ -162,10 +161,6 @@ function AppContent({ )} - {/* Hide global overlay on kabelueberwachung page so only per-slot overlays show */} - {pathnameHook?.includes("kabelueberwachung") ? null : ( - - )}