feat: UX improvements — secure webhooks, locale fixes, dynamic languages, UI polish

- Remove top paginator from dashboard events, keep only bottom
- Fix test message locale: pass UI locale to email/matrix bot tests
- Convert webhook auth mode from text input to icon grid selector
- Generate secure UUID tokens for webhook URLs instead of sequential IDs
- Move Recent Payloads into per-provider expandable container (lazy-loaded)
- Make template config languages dynamic via app settings instead of hardcoded
- Change default dev port to 5175
This commit is contained in:
2026-04-11 02:14:15 +03:00
parent 6b2211353d
commit 734e5c9340
29 changed files with 278 additions and 154 deletions
+6 -5
View File
@@ -11,14 +11,15 @@ if [ -n "$PID" ]; then
sleep 1
fi
# Resolve python — py launcher needs absolute path for nohup on Windows
if command -v python3 &>/dev/null; then
# Resolve python — prefer py launcher on Windows (python3 may be the Store stub)
if command -v py &>/dev/null; then
PYTHON=$(py -3 -c "import sys; print(sys.executable)" 2>/dev/null)
elif command -v python3 &>/dev/null && python3 --version &>/dev/null; then
PYTHON=python3
elif command -v python &>/dev/null; then
elif command -v python &>/dev/null && python --version &>/dev/null; then
PYTHON=python
else
PYTHON=$(py -3.13 -c "import sys; print(sys.executable)" 2>/dev/null \
|| py -3 -c "import sys; print(sys.executable)")
echo "Python not found"; exit 1
fi
# Start backend
+3 -3
View File
@@ -6,7 +6,7 @@ set -e
cd "$(dirname "$0")/.."
# Kill existing frontend
PID=$(netstat -ano 2>/dev/null | grep ':5173.*LISTENING' | awk '{print $5}' | head -1)
PID=$(netstat -ano 2>/dev/null | grep ':5175.*LISTENING' | awk '{print $5}' | head -1)
if [ -n "$PID" ]; then
taskkill //F //PID "$PID" 2>/dev/null || true
sleep 1
@@ -14,8 +14,8 @@ fi
# Start frontend
cd frontend
npx vite dev --port 5173 --host > /dev/null 2>&1 &
npx vite dev --port 5175 --host > /dev/null 2>&1 &
cd ..
sleep 4
curl -s -o /dev/null -w "Frontend: %{http_code}\n" http://localhost:5173/
curl -s -o /dev/null -w "Frontend: %{http_code}\n" http://localhost:5175/