63ee0b40b5
feat: login time window rules (EPIC_000014)
...
- Implemented RuleManager and JSON storage
- Added background enforcement scheduler
- Added Web UI for rule management at /ui/rules
- Bumped version to 0.3.0
2026-01-16 11:25:56 +01:00
9ad9501722
release: 0.2.3
2026-01-15 17:52:21 +01:00
5850ef8358
fix: avoid update failure on /opt/sk cwd
2026-01-15 17:39:40 +01:00
835244b7e0
release: 0.2.2
2026-01-15 17:24:54 +01:00
fb096f7897
fix: ignore unreadable env files in upload script
2026-01-15 13:13:38 +01:00
c748181de2
feat: split update config into update.env
2026-01-15 12:45:22 +01:00
8c55fd4954
feat: add update service env label
2026-01-15 11:18:54 +01:00
f513d46d08
feat: show update service status in UI
2026-01-15 11:06:54 +01:00
1888f59c05
scripts: add update-service enrollment helper
2026-01-15 09:28:05 +01:00
b68ce13be0
docs: document Makefile usage
2026-01-15 09:14:26 +01:00
a732a5afc4
docs: add consumer audience split and external deps
2026-01-15 09:09:59 +01:00
10ec58f744
docs: overhaul repository documentation
2026-01-15 08:54:52 +01:00
c41482a7b3
docs: align versions and update update-service docs
2026-01-15 08:40:54 +01:00
589f9595f4
feat: add scripts/enroll_local.py and update task 40 documentation
2026-01-12 16:20:44 +01:00
fde2825112
planning: add update v1 tasks
2025-12-30 17:25:32 +01:00
f639e3c56a
planning: update-service v1 epic and stories
2025-12-30 14:26:21 +01:00
e75a989c54
ui: refine login and panels
2025-12-30 13:51:10 +01:00
044203e332
ui: add logo and favicon
2025-12-30 13:40:11 +01:00
725b67d734
ui: place oidc button near login
2025-12-30 13:36:01 +01:00
f27e423ef3
ui: add login routing and docs
2025-12-30 13:25:15 +01:00
b12e0bf4d5
docs: log login landing change
2025-12-30 13:16:57 +01:00
49adf77808
feat: replace Watchtower theme with OIDC professional design
...
- Remove Watchtower theme CSS files (tokens_watchtower.css, theme_watchtower.css)
- Add OIDC styles.css (professional IT asset management design)
- Add dark mode toggle button (moon/sun icon)
- Remove custom CSS in favor of OIDC styles.css
- Add dark mode persistence with localStorage
- Remove bg-noise div (Watchtower-specific)
- Wrap content in .container div for OIDC layout
Benefits:
- Professional gradient header
- Light/Dark mode toggle
- Better color palette for readability
- Consistent with homelab-service-oidc design
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
2025-12-30 12:32:57 +01:00
73ade70f16
feat: modernize web UI with dashboard and enhanced UX
...
- Add Lucide Icons library integration
- Implement metrics dashboard with 4 cards (users count, active, locked, version)
- Replace text-based user list with proper table including status badges
- Add toast notification system with slide-in animation
- Implement loading states with spinners for async operations
- Add action modal for user disable/enable operations
- Add status badges (success/warning/error/neutral) throughout
- Enhance CSS with hover effects, transitions, and modern styling
- Improve visual hierarchy with card-based layout
- Add icon-based actions for better UX
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
2025-12-30 12:25:38 +01:00
efd006276d
feat: implement Watchtower theme for web UI
...
Replace Pico CSS with custom Watchtower theme (Sci-Fi Dark Mode):
- Add backend/static/ directory with Watchtower CSS files
- tokens_watchtower.css: Design tokens (colors, typography, spacing)
- theme_watchtower.css: Theme overrides for components
Features:
- High-contrast dark mode (#0b0f14 background)
- Neon accent color (#00e08f teal/cyan)
- Glow effects on buttons and inputs
- Radial gradient background
- SVG noise texture overlay (bg-noise class)
- Pill-shaped buttons (border-radius: 999px)
- Uppercase labels with letter-spacing
- Monospace font for logs
UI Enhancements:
- FastAPI static files mount added
- Custom styling for all components (sections, buttons, inputs, forms)
- Accent border-left on header and update status
- Improved visual hierarchy with color coding
- OIDC button gets secondary style (outline)
Complete US_000024 and TASK_000024.
Based on minecraft-watchtower UI design.
All Pico CSS dependencies removed.
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
2025-12-30 11:59:24 +01:00
d799c0f042
feat: implement update management web UI
...
Add complete update management interface to web UI:
- Update status display (current version, last status, timestamp, errors)
- Check for updates button with availability indicator
- Apply update button with confirmation dialog and backup warnings
- Rollback button with confirmation dialog
- Update logs viewer (collapsible, reverse chronological)
- Auto-refresh after update/rollback actions (5s delay)
Features:
- Uses existing Pico CSS framework for consistent styling
- Integrates with existing auth system (Bearer token/session cookies)
- Real-time feedback with loading states and error handling
- German UI language matching existing interface
- All API calls use existing api() helper function
Complete US_000029-033 and TASK_000030-034:
- US_000029: Display update status in web UI
- US_000030: Trigger update check from UI
- US_000031: Apply updates from UI
- US_000032: Display update logs in UI
- US_000033: Trigger rollback from UI
EPIC_000008 (Client-Side Update Mechanism) now fully complete.
Documentation updated per SOP (CHANGELOG, PROJECT_STATUS, stories/tasks).
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
2025-12-30 11:32:39 +01:00
107cdabe8d
feat: implement update backend API and client logic
...
Add complete update mechanism for client-side updates:
- backend/update.py: Core update logic (check, apply, rollback, status/logs)
- backend/app.py: REST API endpoints (GET /update/status, POST /update/check, POST /update/apply, POST /update/rollback, GET /update/logs)
- backend/models.py: Pydantic models for update API responses
- backend/settings.py: Update config (status/log file paths)
- scripts/rollback_client.sh: Rollback script for failed updates
- scripts/update_client.sh: Enhanced update client script
- CLAUDE.md: Documentation for future Claude Code instances
Complete US_000026-028 and TASK_000027-029:
- US_000026: Client pulls updates from remote service
- US_000027: Client verifies and applies updates atomically
- US_000028: Client reports update status to backend
All endpoints require authentication. Updates run asynchronously.
Documentation updated per SOP (CHANGELOG, PROJECT_STATUS, stories/tasks).
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com >
2025-12-30 11:18:34 +01:00
b64cc5981c
docs: define update status/log files
2025-12-29 00:22:16 +01:00
fde207a3e6
docs: define update backend api
2025-12-29 00:08:16 +01:00
2fc189a467
docs: start update ui stories
2025-12-29 00:01:22 +01:00
312365a5f6
docs: require backup before update/rollback
2025-12-28 23:59:26 +01:00
132604de2d
code: report update status
2025-12-28 23:51:20 +01:00
37087e7925
docs: define update status reporting
2025-12-28 23:51:01 +01:00
c41a4560c1
code: add update client prototype script
2025-12-28 23:44:19 +01:00
2d829b74dd
docs: add update client flow
2025-12-28 23:44:00 +01:00
8a16a8633b
docs: add update client config keys
2025-12-28 23:39:10 +01:00
2aa04795b3
docs: start update client stories
2025-12-28 23:32:09 +01:00
c004aeffa7
docs: add update service requirements
2025-12-28 23:20:31 +01:00
3caff1f6e2
docs: define update service url
2025-12-28 22:57:37 +01:00
2d1ca05bf0
feature: root service and account status
2025-12-28 22:35:34 +01:00
098ba7b187
docs: update changelog for installer defaults
2025-12-28 14:04:32 +01:00
97ea7070cc
docs: enforce pam always available
2025-12-28 13:49:22 +01:00
4809027227
docs: note oidc pr preparation
2025-12-28 13:37:43 +01:00
98d51655ba
docs: record oidc validation blocked
2025-12-28 13:32:08 +01:00
a9c57caaf1
docs: add oidc validation runbook
2025-12-28 13:20:59 +01:00
4eb20e2449
docs: add project management structure
2025-12-28 09:16:22 +01:00