diff --git a/.env.development b/.env.development index 2b573ba..ae94ea8 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.737 +NEXT_PUBLIC_APP_VERSION=1.6.738 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 32435c5..b7cb9f2 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.737 +NEXT_PUBLIC_APP_VERSION=1.6.738 NEXT_PUBLIC_CPL_MODE=production \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 169bf4f..e73b4c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [1.6.738] – 2025-08-18 + +- feat: Navigation dar und light mode + +--- ## [1.6.737] – 2025-08-18 - feat: playwright scraper diff --git a/components/header/Header.tsx b/components/header/Header.tsx index d7dd9b8..4db2545 100644 --- a/components/header/Header.tsx +++ b/components/header/Header.tsx @@ -121,9 +121,15 @@ function Header() { title={isDark ? "Light Mode" : "Dark Mode"} > {isDark ? ( - + ) : ( - + )} diff --git a/components/main/dashboard/DashboardView.tsx b/components/main/dashboard/DashboardView.tsx index 9bf7768..e9e2d9a 100644 --- a/components/main/dashboard/DashboardView.tsx +++ b/components/main/dashboard/DashboardView.tsx @@ -25,7 +25,7 @@ const DashboardView: React.FC = () => { }, [dispatch]); //------------------------------------- return ( -
+
{/* Header */}
diff --git a/components/main/dashboard/NetworkInfo.tsx b/components/main/dashboard/NetworkInfo.tsx index 7794dfa..283cfd5 100644 --- a/components/main/dashboard/NetworkInfo.tsx +++ b/components/main/dashboard/NetworkInfo.tsx @@ -38,7 +38,7 @@ const NetworkInfo: React.FC = () => { return (
-
+
{ priority />
-

IP-Adresse

-

{ip}

+

+ IP-Adresse +

+

+ {ip} +

@@ -64,8 +68,12 @@ const NetworkInfo: React.FC = () => { priority />
-

Subnet-Maske

-

{subnet}

+

+ Subnet-Maske +

+

+ {subnet} +

@@ -79,16 +87,20 @@ const NetworkInfo: React.FC = () => { priority />
-

Gateway

-

{gateway}

+

Gateway

+

+ {gateway} +

OPC-UA
-

Status

-

{opcUaZustand}

+

Status

+

+ {opcUaZustand} +

{/* OPC UA Nodeset Name */} diff --git a/components/main/dashboard/VersionInfo.tsx b/components/main/dashboard/VersionInfo.tsx index 84acd1b..3d1dd86 100644 --- a/components/main/dashboard/VersionInfo.tsx +++ b/components/main/dashboard/VersionInfo.tsx @@ -18,22 +18,24 @@ const VersionInfo: React.FC = ({ className = "" }) => { return (
-

+

Versionsinformationen

-

+

Applikationsversion: {appVersion}

-

Webversion: {webVersion}

+

+ Webversion: {webVersion} +

); diff --git a/package-lock.json b/package-lock.json index a5083a6..b6851ef 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "cpl-v4", - "version": "1.6.737", + "version": "1.6.738", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "cpl-v4", - "version": "1.6.737", + "version": "1.6.738", "dependencies": { "@fontsource/roboto": "^5.1.0", "@headlessui/react": "^2.2.4", diff --git a/package.json b/package.json index d5c5ecd..78100a3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cpl-v4", - "version": "1.6.737", + "version": "1.6.738", "private": true, "scripts": { "dev": "next dev",