Commit Graph

105 Commits

Author SHA1 Message Date
spinline
9d0eb11f16 Refactor App routing to fix infinite recursion and stack overflow errors
All checks were successful
Build MIPS Binary / build (push) Successful in 4m8s
2026-02-07 16:10:06 +03:00
spinline
e3eb5fbca9 Add detailed logging to login handler and use full page reload for auth navigation
All checks were successful
Build MIPS Binary / build (push) Successful in 4m7s
2026-02-07 15:28:44 +03:00
spinline
08f2f540fe Fix unused import and dead code warnings
All checks were successful
Build MIPS Binary / build (push) Successful in 4m6s
2026-02-07 15:20:23 +03:00
spinline
d53d661ad1 Implement authentication system with SQLite: Add login/setup pages, auth middleware, and database integration
Some checks failed
Build MIPS Binary / build (push) Failing after 3m42s
2026-02-07 14:43:25 +03:00
spinline
92720c15b3 Fix mobile dropdown interaction: Revert to pointerdown with stop_propagation and use overlay for reliable closing
All checks were successful
Build MIPS Binary / build (push) Successful in 3m57s
2026-02-07 14:14:37 +03:00
spinline
5e59f66056 Fix dropdown closing behavior on mobile by adding transparent overlay
All checks were successful
Build MIPS Binary / build (push) Successful in 3m45s
2026-02-07 13:54:00 +03:00
spinline
14f811fd79 fix: convert sort dropdown to signal-based for iOS Safari 2026-02-06 17:19:47 +03:00
spinline
2a919211d9 fix: fixed statusbar at bottom, fix dropdown toggle race, fix theme buttons on iOS
- StatusBar now uses fixed positioning at viewport bottom (z-[99])
- Dropdown toggle uses skip_next_close guard to prevent close-then-reopen
- Global close listener uses click instead of pointerdown (fires after toggle)
- Theme/limit buttons use on:pointerdown instead of on:click for iOS compat
- Main content has pb-8 to prevent overlap with fixed statusbar
- Rebuilt tailwind.css
2026-02-06 17:17:07 +03:00
spinline
d1604fb8fb frontend(statusbar): use signal-based dropdowns to fix iOS Safari toggle 2026-02-06 13:57:26 +03:00
spinline
19d9d7f30f fix: use details-based dropdowns for iOS Safari toggle behavior 2026-02-06 13:34:07 +03:00
spinline
a3321c7cf1 fix: properly check notification permission result, show toast feedback on Safari 2026-02-06 13:26:37 +03:00
spinline
22672f7aaa refactor(ui): switch to inline styles for safe-area padding (simpler approach) 2026-02-06 13:19:02 +03:00
spinline
e10b252eff fix(ui): use configured safe-area spacing for notch support 2026-02-06 13:13:53 +03:00
spinline
5b0fab80fe fix(ui): add safe area padding for mobile notch support 2026-02-06 12:55:41 +03:00
spinline
cd2a398b15 feat: request push notification permission when settings button clicked 2026-02-06 01:15:42 +03:00
spinline
60fc887327 fix(ios): add vibrate API feature detection for iOS Safari
- iOS Safari doesn't support navigator.vibrate()
- Added feature detection before calling vibrate
- Prevents TypeError on iOS devices
- Haptic feedback still works on Android/Chrome
2026-02-05 23:30:54 +03:00
spinline
17551af8b5 fix: remove on:close event from add torrent modal to prevent callback panic
- Dialog's on:close was calling callback after scope disposal
- Caused 'could not get stored value' error in leptos_reactive
- on_close callback still properly called via handle_close and submit success
2026-02-05 22:52:47 +03:00
spinline
88b2dddba0 fix(toast): use proper DaisyUI alert structure with SVG icons 2026-02-05 21:26:28 +03:00
spinline
579be70a5a fix(toast): make responsive for mobile screens 2026-02-05 21:20:49 +03:00
spinline
ce32eadffd fix(toast): simplify style, remove duplicate backend notifications 2026-02-05 21:18:58 +03:00
spinline
f2ca731827 fix(frontend): fix toast positioning with wrapper div and inline styles 2026-02-05 21:11:36 +03:00
spinline
718fed554f fix(frontend): fix toast positioning - move outside drawer, use fixed position 2026-02-05 21:02:47 +03:00
spinline
e8da646a91 fix(frontend): prevent callback panic by deferring menu close to on_close 2026-02-05 20:55:14 +03:00
spinline
497b39e0ae fix(frontend): use signal-based toast for async contexts 2026-02-05 20:48:40 +03:00
spinline
6c7379483e feat(frontend): add clean-code toast notifications 2026-02-05 20:40:11 +03:00
spinline
6e4a9e2d51 fix: resolve frontend build errors and warnings 2026-02-05 18:49:51 +03:00
spinline
e2a8e17eae feat: implement notification system and backoff strategy for rTorrent polling 2026-02-05 18:31:42 +03:00
spinline
209b7ec2c3 fix(ui): format ETA to be human readable 2026-02-05 00:28:30 +03:00
spinline
f4b3820600 fix(ui): prevent theme dropdown from being permanently interactive by removing block class 2026-02-05 00:22:04 +03:00
spinline
564d0c129b fix(ui): improve mobile view contrast by setting background to base-200 2026-02-05 00:19:24 +03:00
spinline
ebd6d55468 fix(ui): ensure default theme is set correctly in incognito mode 2026-02-05 00:10:14 +03:00
spinline
76195584a3 feat(ui): add dedicated Paused filter 2026-02-04 23:45:58 +03:00
spinline
6cc0043111 feat(ui): add abyss theme 2026-02-04 23:38:44 +03:00
spinline
07cfd41cd1 fix(logic): exclude incomplete paused torrents from completed filter 2026-02-04 23:32:02 +03:00
spinline
97753762b4 fix(ui): update theme selector icon to paint-brush 2026-02-04 23:26:55 +03:00
spinline
efcee71f56 feat(ui): add more themes (cupcake, dracula, cyberpunk, emerald, sunset) 2026-02-04 23:21:12 +03:00
spinline
a6a40997fb fix(ui): replace mismatched upload icon with consistent arrow-up icon 2026-02-04 23:16:43 +03:00
spinline
6e9af2b48a feat(ui): persist theme selection in local storage 2026-02-04 22:56:49 +03:00
spinline
874e24389e chore(ui): cleanup unused themes, keeping only light/dark/dim/nord 2026-02-04 20:04:13 +03:00
spinline
4b36123264 fix(ui): cleaner rewrite of torrent table without macro comments 2026-02-04 19:50:00 +03:00
spinline
e4a8716502 fix(ui): restore table footer and fix syntax errors 2026-02-04 19:45:48 +03:00
spinline
3b63aa18ac fix(ui): remove accidentally duplicated code block in torrent table 2026-02-04 19:42:48 +03:00
spinline
9f44688a4f feat(ui): add mobile sorting dropdown with native focus implementation 2026-02-04 19:39:37 +03:00
spinline
6076637012 fix(ui): global touch blur listener for robust ios dropdown closing 2026-02-04 19:28:02 +03:00
spinline
0d9d6f3641 fix(ui): restore missing limits logic for statusbar 2026-02-04 19:20:45 +03:00
spinline
c42ee6ce81 fix(ui): refactor to native css focus dropdowns for ios support 2026-02-04 19:14:20 +03:00
spinline
a47bc38909 fix(ui): use blocks for show conditions to satisfy macro parser 2026-02-04 19:08:13 +03:00
spinline
de0f85e81a fix(ui): resolave closure type mismatch and lint warnings 2026-02-04 19:02:01 +03:00
spinline
95b7535ff2 fix(ui): use global touchstart listener for ios dropdowns 2026-02-04 18:37:36 +03:00
spinline
79f18a4c39 fix(ui): adopt context menu backdrop pattern for robust ios dropdowns 2026-02-04 18:28:56 +03:00