First commit

This commit is contained in:
2025-10-15 00:07:35 -05:00
commit 5e354c05be
69 changed files with 4598 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
class SubscriptionBell
{
/^ Disabled bell ^/
static getDisabled() "Disabled";
/^ Download (Low quality) ^/
static getDownloadLow() "DownloadLow";
/^ Download (High quality) ^/
static getDownloadHigh() "DownloadHigh";
/^ Download (and notify) (Low quality) ^/
static getBellLow() "BellLow";
/^ Download (and notify) (High quality) ^/
static getBellHigh() "BellHigh";
/^ Notify ^/
static getBell() "Bell";
static getBells()
{
return [
{name="Disabled",value=SubscriptionBell.Disabled},
{name="Notify",value=SubscriptionBell.Bell},
{name="Notify and Download (Low)", value=SubscriptionBell.BellLow},
{name="Notify and Download (High)", value=SubscriptionBell.BellHigh},
{name="Download (Low)", value=SubscriptionBell.DownloadLow},
{name="Download (High)", value=SubscriptionBell.DownloadHigh}
];
}
}