summaryrefslogtreecommitdiff
path: root/raphodo/constants.py
diff options
context:
space:
mode:
Diffstat (limited to 'raphodo/constants.py')
-rw-r--r--raphodo/constants.py22
1 files changed, 21 insertions, 1 deletions
diff --git a/raphodo/constants.py b/raphodo/constants.py
index e3f8049..c88c18b 100644
--- a/raphodo/constants.py
+++ b/raphodo/constants.py
@@ -481,6 +481,7 @@ class Desktop(Enum):
mate = 6
lxde = 7
lxqt = 8
+ ubuntugnome = 9
unknown = 10
@@ -495,6 +496,8 @@ class Distro(Enum):
opensuse = 8
gentoo = 9
galliumos = 10
+ peppermint = 11
+ antergos = 12
orientation_offset = dict(
@@ -587,4 +590,21 @@ class RememberThisMessage(Enum):
class RememberThisButtons(Enum):
yes_no = 1
- ok = 2 \ No newline at end of file
+ ok = 2
+
+
+class CompletedDownloads(IntEnum):
+ keep = 1
+ clear = 2
+ prompt = 3
+
+
+class TreatRawJpeg(IntEnum):
+ one_photo = 1
+ two_photos = 2
+
+
+class MarkRawJpeg(IntEnum):
+ no_jpeg = 1
+ no_raw = 2
+ both = 3 \ No newline at end of file