summaryrefslogtreecommitdiff
path: root/raphodo/constants.py
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2017-10-02 06:51:13 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2017-10-02 06:51:13 +0200
commitc5fc6c6030d7d9d1b2af3d5165bebed3decd741b (patch)
treedfacccc9ae0747e53e53e5388b2ecd0623e040c3 /raphodo/constants.py
parent77dd64c0757c0191b276e65c24ee9874959790c8 (diff)
New upstream version 0.9.4upstream/0.9.4
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