Private GIT
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SickRage-1
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vlbox
SickRage-1
Commits
2d50e5f5
Commit
2d50e5f5
authored
9 years ago
by
labrys
Browse files
Options
Downloads
Patches
Plain Diff
New status
parent
48a3e1ec
Branches
UHD-qualities
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
sickrage/tagger/status.py
+71
-0
71 additions, 0 deletions
sickrage/tagger/status.py
with
71 additions
and
0 deletions
sickrage/tagger/status.py
0 → 100644
+
71
−
0
View file @
2d50e5f5
# coding=utf-8
"""
File status tags
"""
from
__future__
import
unicode_literals
OLD_COMMON_STATUSES
=
dict
(
UNKNOWN
=-
1
,
# should never happen
WANTED
=
3
,
# episodes we don't have but want to get
ARCHIVED
=
6
,
# episodes that you don't have locally (counts toward download completion stats)
SKIPPED
=
5
,
# episodes we don't want
IGNORED
=
7
,
# episodes that you don't want included in your download stats
UNAIRED
=
1
,
# episodes that haven't aired yet
FAILED
=
11
,
# episode downloaded or snatched we don't want
SNATCHED
=
2
,
# qualified with quality
SNATCHED_BEST
=
12
,
# episode re-downloaded using best quality
SNATCHED_PROPER
=
9
,
# qualified with quality
DOWNLOADED
=
4
,
# qualified with quality
SUBTITLED
=
10
,
# qualified with quality
)
status
=
(
'
Unknown
'
,
# Non-existent
'
Skipped
'
,
# unwanted
'
Ignored
'
,
# unwanted; don't include in download stats
'
Removed
'
,
# removed from library, still counts towards stats
# Action
'
Wanted
'
,
# wanted, and do not have
'
Snatched
'
,
# result found and awaiting download
'
Failed
'
,
# snatched result failed to download
'
Replace
'
,
# existing file should be replaced
# Existent
'
Existing
'
,
# pre-existing
'
Downloaded
'
,
# downloaded and exists in library
'
Replaced
'
,
# existing download was replaced
'
Archived
'
,
# will not be replaced
)
qualifiers
=
(
# SCENE TAGS
'
Nuke
'
,
# Something is wrong with the release
'
Internal
'
,
# Replaces previous release for minor reasons
'
Proper
'
,
# Replaces poor quality release
'
Repack
'
,
# Same as a 'Proper'
'
Real
'
,
# Replaces a previous `Proper`
# RESULT TAGS
'
Allowed
'
,
# Continue searching for a preferred result
'
Preferred
'
,
# Preferred result, will not be replaced by `Allowed`
'
Best
'
,
# Best possible result, will not be replaced
)
resolutions
=
{
'
480p
'
,
'
720p
'
,
'
1080i
'
,
'
1080p
'
,
'
2160p
'
,
# AKA 4K UHD
'
4320p
'
,
# AKA 8K UHD, Full UHD
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment