chore: Docs umstrukturiert, Client-Updates, Scripts nach scripts/

This commit is contained in:
2026-01-28 20:00:37 +01:00
parent 4b38da3b85
commit 5ba12cb738
70 changed files with 1240 additions and 284 deletions

View File

@@ -0,0 +1,17 @@
@echo off
REM Git Commit Script für TypeScript Fixes
cd /d c:\Users\User\Documents\GitHub\ANDJJJJJJ
echo Staging aller Aenderungen...
git add .
echo Erstelle Commit...
git commit -m "fix: TypeScript errors & build fixes for Control Panel Redesign" -m "- Fix unused imports (Trash, Filter, Bell, CategoryAdvanced)" -m "- Fix undefined checks for cleanup settings" -m "- Fix cleanupPreview undefined checks" -m "- Fix useTheme unused parameter" -m "- Fix companyLabels type safety" -m "- Build erfolgreich durchgefuehrt"
echo Pushe Aenderungen...
git push
echo.
echo Erfolgreich committed und gepusht!
pause