1540 Commits

Author SHA1 Message Date
coopa11y
0411e8acc1 Label schedule time, enable, and delete controls for screen readers (#3525)
* Label schedule time, enable, and delete controls

* Use ARIA label for schedule enable control

---------

Co-authored-by: coopa11y <coopa11y@users.noreply.github.com>
2026-07-28 21:12:47 +03:00
coopa11y
9122633907 Label SABnzbd login fields and help link for screen readers (#3524)
* Label SABnzbd login fields and help link

* Use ARIA labels for login fields

---------

Co-authored-by: coopa11y <coopa11y@users.noreply.github.com>
2026-07-28 17:42:48 +03:00
coopa11y
af10190e0b Improve Glitter status table accessibility (#3523)
Co-authored-by: coopa11y <coopa11y@users.noreply.github.com>
2026-07-26 20:07:31 +03:00
Parsa Yazdani
404060373b feat: add 'Sort by Remaining Size' queue sort option (#3512)
* feat: add 'Sort by Remaining Size' queue sort option

Add a new 'remaining_bytes' sort field that sorts the queue by absolute
remaining bytes (bytes - bytes_tried), complementing the existing
'remaining' sort which uses percentage downloaded and the 'size' sort
which uses total bytes.

Changes:
- nzbqueue.py: add remaining_bytes sort field, fix update_sort_order()
  to parse field+direction from config instead of hardcoding 'remaining'
- skintext.py: add Glitter-sortRemainingBytesAsc/Desc translation strings,
  update auto_sort explanation text
- Glitter UI: add dropdown entries and JS handlers for both directions
- Config: add auto_sort options for remaining_bytes asc/desc
- Tests: parametrize remaining_bytes asc/desc against sizeleft slot field

* style: wrap long string for Black formatting

* fix: limit remaining-size sorting to ascending

---------

Co-authored-by: QuixThe2nd <QuixThe2nd@users.noreply.github.com>
2026-07-26 16:28:08 +03:00
coopa11y
a84544bef8 Improve Glitter message accessibility (#3518)
Co-authored-by: coopa11y <coopa11y@users.noreply.github.com>
2026-07-25 12:50:52 +03:00
coopa11y
f38b602924 Improve interface options form accessibility (#3516)
Co-authored-by: coopa11y <coopa11y@users.noreply.github.com>
2026-07-25 11:50:58 +03:00
coopa11y
3ab1782dc2 Improve Add NZB form accessibility (#3511)
Co-authored-by: coopa11y <coopa11y@users.noreply.github.com>
2026-07-22 22:15:35 +03:00
coopa11y
1336d66f78 Restore keyboard access to queue actions (#3503)
Co-authored-by: coopa11y <coopa11y@users.noreply.github.com>
2026-07-21 15:25:04 +02:00
coopa11y
1f7bec651d Improve Glitter history row accessibility (#3504)
Co-authored-by: coopa11y <coopa11y@users.noreply.github.com>
2026-07-20 10:24:13 +02:00
coopa11y
efb16cc69b Improve Glitter search and pagination accessibility (#3505)
* Improve Glitter search and pagination accessibility

* Fixed: Preserve pagination keyboard shortcuts

---------

Co-authored-by: coopa11y <coopa11y@users.noreply.github.com>
2026-07-20 10:23:24 +02:00
Safihre
636aa91e21 Restore queue action buttons 2026-07-17 08:58:52 +02:00
mnightingale
ba2099d006 Add RSS Age rule (#3498)
* RSS age rule

* Support years (y) and months (mo) and do not approximate durations in seconds

* Better handling of entries with no age

* Formatting

* Allow >=, =>, <=, and =< aliases

* Implement feedback

* Fix existing issue with From SxxEyy in default row

* Test unitless ages
2026-07-16 21:24:41 +02:00
Safihre
889fbf688d Correct CSS for queue rows
After #3477
2026-07-16 21:17:53 +02:00
coopa11y
1eed5c7866 Improve Glitter queue row accessibility (#3477)
* Improve Glitter queue row action labels

* Simplify queue row accessibility labels

---------

Co-authored-by: coopa11y <coopa11y@users.noreply.github.com>
2026-07-16 07:51:36 +02:00
Safihre
0bcb28d576 Correctly fix dots-styling in pagination 2026-07-09 12:08:09 +02:00
Safihre
dc421047d3 Render Config UI tooltips in body
Closes #3486
2026-07-04 20:32:28 +02:00
coopa11y
fd6d8c71c7 Improve Config search accessibility (#3476)
Co-authored-by: coopa11y <coopa11y@users.noreply.github.com>
2026-07-03 13:07:20 +02:00
coopa11y
6112ded96b Improve Glitter header menu labels (#3471)
* Improve Glitter header menu labels

* Improve Glitter header label localization

---------

Co-authored-by: coopa11y <coopa11y@users.noreply.github.com>
2026-06-30 20:15:40 +02:00
thezoggy
b057bc6afc pagination dot dark fix (#3472)
Fixes https://github.com/sabnzbd/sabnzbd/issues/3470
2026-06-27 23:16:52 +02:00
Safihre
8919aa7ec0 Remove INSTALL.txt and update documentation references
The `INSTALL.txt` file has been removed, as all installation instructions are now exclusively maintained on the project wiki. This updates `README.md` and build artifacts to reflect this change.

Additionally, `COPYRIGHT.txt` has been updated to include a new active team member, streamline translation contributor credits, and provide a direct link to GNU licenses. A minor CSS adjustment for the mobile UI is also included.
2026-06-15 14:05:47 +02:00
Safihre
fee562d57f Increase default NNTP server connections to 16
Updates the default number of connections from 8 to 16 in the server configuration and wizard UI templates. This change aims to improve performance for users who do not explicitly configure this setting.

Additionally, ensures the API server test function defaults to at least 1 connection when none is specified.

Relates to #3284
2026-06-14 13:34:22 +02:00
Safihre
f1486e2d4b Add drop down menu options to the additional queue columns
Closes #2227

Beware that this causes extra CPU usage.
Claude has diagnosed:
What it almost certainly is: paint/raster cost of native form controls. Every refresh tick the progress bar width and text change, which invalidates a paint region spanning most of the row. Chrome re-rasterizes damaged tiles wholesale, and the selects sit in those tiles. A <select> — especially one with custom styling like ours, which knocks Chrome off the native-theme fast path — is much more expensive to rasterize than plain text, and there are 4 of them per row, re-painted every second while downloading. Rasterization runs on Chrome's compositor/raster threads, which is exactly the kind of cost that shows up in the browser Task Manager but is invisible to JS-side profiling (which is why my layout measurement showed no difference). Form controls also carry extra accessibility-tree bookkeeping on each DOM-adjacent change, which adds a little more.
2026-06-12 15:11:04 +02:00
Safihre
e969276828 Extend custom toggle switch styling to login and wizard 2026-06-11 11:40:11 +02:00
Safihre
e3acbdc8c2 Use commit hash for static asset cache busting
Closes #3457
2026-06-11 11:10:43 +02:00
Safihre
cc5c0037a5 Minor style fixes for front-end and variable names 2026-06-11 08:54:08 +02:00
Safihre
740eb442a8 Add toggle switches to Interface Settings modal 2026-06-08 23:02:45 +02:00
Safihre
83d167415a Refine toggle styling implementation for Firefox compatibility
Replaces the `::after` pseudo-element with CSS `background-image` properties to draw the toggle's movable knob and its shadow.
2026-06-08 16:58:22 +02:00
Safihre
5c4d2f1d9f Improve on toggle redesign 2026-06-08 15:38:08 +02:00
Safihre
09c338dd5b Change checkboxes in Config to toggle 2026-06-08 14:44:31 +02:00
Safihre
bff7d559f9 Refine button and navigation tab interactive states 2026-06-08 09:04:29 +02:00
Safihre
08bcddf8d2 Style login and wizard pages after recent changes 2026-06-05 14:32:04 +02:00
Safihre
eae5f164e6 Correct rounding of the Warnings box 2026-06-05 10:39:07 +02:00
mnightingale
2c530fee47 Remove disableDelays because config is not defined (#3438) 2026-05-26 06:50:24 +02:00
Safihre
f12725eea5 Adjust new rounded UI layout and spacing for consistency
Refines margins, paddings, and element positioning across various components to improve visual harmony and alignment with the modernized interface design.
2026-05-23 22:17:28 +02:00
Safihre
dbf8ef15ef Refactor theming to use CSS variables
This modernizes the theming architecture by defining core colors as CSS variables,
allowing themes like 'Night' to override them concisely. This approach improves
maintainability and removes dynamic styling previously handled by JavaScript.
2026-05-23 22:05:46 +02:00
Safihre
de5abc95f5 Further improvements to styling revamp 2026-05-23 22:05:45 +02:00
Safihre
04379e3faa Change main interface to more rounded version 2026-05-23 22:05:45 +02:00
Safihre
e63648c9c4 Give the Config a little bit more modern feeling 2026-05-21 10:06:01 +02:00
Safihre
2cb472f690 Allow setting options for URL-grabbing jobs
And correct mistake in priority-API field, which was 0 (int) instead of "Normal" fallback.
2026-05-16 16:15:43 +02:00
Safihre
caee1d3bfe Front-end would show job with invalid date as URL-fetching
Closes #3418
2026-05-16 14:49:12 +02:00
Safihre
02c567fd8c Use reduced progress bar width in compact layout
Apply the table-header-progress-smaller class (25% width) to both queue and
history when compact layout is enabled, matching the behavior when extra columns
are shown. This provides more horizontal space for longer NZB titles.

Fixes #3414
2026-05-15 21:10:16 +02:00
mnightingale
2184964d78 Reduce time to test (#3412)
* Remove UI delays

* Everything using set_config, set_platform, or pyfakefs

* tmp_path

* Scroll to top seems unnecessary but make it wait until it's done

* Remove sleep from test_rss_basic_flow

* Remove sleeps from test_daemonizing

* Define pytest markers

* Reduce sleep in test_queue_repair

* Remove sleeps from clean_cache_dir

* Suppress failures to connect during startup

* Reduce cache sleeps

* Reduce sleeps checking app started

* Reduce sleep removing cache dir
2026-05-13 18:49:41 +02:00
Safihre
f7ad95f298 Consolidate RSS feed processing and remove 'Apply filters' action
Performance of Apply Feed is good enough that we can run it on any filter change.
2026-05-13 13:59:17 +02:00
Safihre
cd5acde5d2 Set pipeling requests to 2 for new servers (#3362) 2026-03-23 22:51:02 +01:00
Safihre
2122503762 Update copyright to 2026 2026-02-09 16:44:38 +01:00
Safihre
9624a285f1 Add Apprise documentation URL to Notifications page 2026-01-26 10:45:11 +01:00
Safihre
6487944c6c Move Pipelining setting to Server-level 2025-12-22 16:38:46 +01:00
Safihre
b19bd65495 Show error in case of failed NZB upload
Closes #3233
2025-12-19 12:40:34 +01:00
Safihre
e4d8642b4f Correct mobile layout if Full Width is enabled 2025-11-21 10:12:19 +01:00
Safihre
daca14f97e Update Apprise texts 2025-11-03 14:28:47 +01:00