feat: erweiterte Chat-Funktionalität, UI-Verbesserungen und Lokalisierungsupdates

- Chat: Nachrichten-Status (read/unread), WebSocket-Verbesserungen
- App: Login-Optimierung, Job-Übersicht verbessert, neue Übersetzungen
- Backend: Dialog-Styling, Invoice-Generator, Job-Verwaltung erweitert
- Mehrsprachigkeit: Neue Übersetzungen für DE, EN, ES, ET, FR, LT, LV, PL, RU, TR
This commit is contained in:
2026-04-04 10:30:36 +02:00
parent d6132fabe1
commit bba5733783
55 changed files with 2708 additions and 697 deletions

16
upload.sh Executable file
View File

@@ -0,0 +1,16 @@
find . \
-type f \
\( -name "*.java" -o -name "*.dart" -o -name "*.md" \
-o -name "*.yaml" -o -name "*.yml" -o -name "*.properties" \
-o -name "*.xml" -o -name "*.gradle" \) \
! -path "*/build/*" \
! -path "*/.gradle/*" \
! -path "*/.dart_tool/*" \
! -path "*/node_modules/*" \
! -path "*/.git/*" \
| while read file; do
echo "Upload: $file"
curl -s -X POST "http://192.168.180.16:3001/api/v1/document/upload/votianlt" \
-H "Authorization: Bearer W25V4A8-5E24XSH-KKNJBX3-WN07B7P" \
-F "file=@$file"
done