mirror of
https://github.com/idanoo/autobrr
synced 2025-07-25 17:59:14 +00:00
feat: add usenet support (#543)
* feat(autobrr): implement usenet support * feat(sonarr): implement usenet support * feat(radarr): implement usenet support * feat(announce): implement usenet support * announce: cast a line * feat(release): prevent unknown protocol transfer * release: lines for days. * feat: add newznab and sabnzbd support * feat: add category to sabnzbd * feat(newznab): map categories * feat(newznab): map categories --------- Co-authored-by: ze0s <43699394+zze0s@users.noreply.github.com> Co-authored-by: ze0s <ze0s@riseup.net>
This commit is contained in:
parent
b2d93d50c5
commit
13a74f7cc8
29 changed files with 1588 additions and 37 deletions
|
@ -6,6 +6,7 @@ export interface radioFieldsetOption {
|
|||
label: string;
|
||||
description: string;
|
||||
value: string;
|
||||
type?: string;
|
||||
}
|
||||
|
||||
interface props {
|
||||
|
@ -75,7 +76,7 @@ function RadioFieldsetWide({ name, legend, options }: props) {
|
|||
)}
|
||||
aria-hidden="true"
|
||||
/>
|
||||
<div className="ml-3 flex flex-col">
|
||||
<div className="ml-3 flex flex-col w-full">
|
||||
<RadioGroup.Label
|
||||
as="span"
|
||||
className={classNames(
|
||||
|
@ -83,7 +84,10 @@ function RadioFieldsetWide({ name, legend, options }: props) {
|
|||
checked ? "font-bold" : "font-medium"
|
||||
)}
|
||||
>
|
||||
{setting.label}
|
||||
<div className="flex justify-between">
|
||||
{setting.label}
|
||||
{setting.type && <span className="rounded bg-orange-500 text-orange-900 px-1 ml-2 text-sm">{setting.type}</span>}
|
||||
</div>
|
||||
</RadioGroup.Label>
|
||||
<RadioGroup.Description
|
||||
as="span"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue