over.app: add .dirs with the app's xdg dirs

This commit is contained in:
Martin Sekera 2021-02-15 00:29:30 +01:00
parent b7c3ca3e02
commit 396ae4e49d
2 changed files with 3 additions and 2 deletions

View file

@ -425,6 +425,7 @@ class Main:
self.last_command_line = None self.last_command_line = None
self.using_alternate_config = False self.using_alternate_config = False
self.uncontained_exception_callbacks = [] # (function, args) self.uncontained_exception_callbacks = [] # (function, args)
self.dirs = get_xdg_paths(name)
for feature_name in self.default_features: for feature_name in self.default_features:
if feature_name in features: if feature_name in features:

View file

@ -4,5 +4,5 @@
major = 2 # VERSION_MAJOR_IDENTIFIER major = 2 # VERSION_MAJOR_IDENTIFIER
minor = 1 # VERSION_MINOR_IDENTIFIER minor = 1 # VERSION_MINOR_IDENTIFIER
# VERSION_LAST_MM 2.1 # VERSION_LAST_MM 2.1
patch = 8 # VERSION_PATCH_IDENTIFIER patch = 9 # VERSION_PATCH_IDENTIFIER
str = "2.1.8" # VERSION_STRING_IDENTIFIER str = "2.1.9" # VERSION_STRING_IDENTIFIER