diff options
| author | deviantfero <fmorataya.04@gmail.com> | 2018-02-04 03:47:02 -0600 |
|---|---|---|
| committer | deviantfero <fmorataya.04@gmail.com> | 2018-02-04 03:47:02 -0600 |
| commit | b6a5c81d2cf5319d9265546fc7e824a021f14e6e (patch) | |
| tree | 7d6cba3f9d7ff68c0703b5219cfbbdf87a671f6a /pywal | |
| parent | ac2cee675153c17030875459e01913e2cb3f249e (diff) | |
general: add __template_version__ to avoid deprecating templates on each pywal release
Diffstat (limited to 'pywal')
| -rw-r--r-- | pywal/__init__.py | 3 | ||||
| -rw-r--r-- | pywal/__main__.py | 1 | ||||
| -rw-r--r-- | pywal/settings.py | 1 |
3 files changed, 4 insertions, 1 deletions
diff --git a/pywal/__init__.py b/pywal/__init__.py index e9c0603..bd25c3f 100644 --- a/pywal/__init__.py +++ b/pywal/__init__.py @@ -9,7 +9,7 @@ Created by Dylan Araps. """ -from .settings import __version__ +from .settings import __version__, __template_version__ from . import colors from . import export from . import image @@ -19,6 +19,7 @@ from . import wallpaper __all__ = [ "__version__", + "__template_version__" "colors", "export", "image", diff --git a/pywal/__main__.py b/pywal/__main__.py index 7c0bf06..74a9836 100644 --- a/pywal/__main__.py +++ b/pywal/__main__.py @@ -15,6 +15,7 @@ import shutil import sys from .settings import __version__, CACHE_DIR +from .settings import __template_version__ from . import colors from . import export from . import image diff --git a/pywal/settings.py b/pywal/settings.py index c1b03fe..ba77347 100644 --- a/pywal/settings.py +++ b/pywal/settings.py @@ -14,6 +14,7 @@ import platform __version__ = "1.3.0" +__template_version__ = "1.0.0" HOME = os.getenv("HOME", os.getenv("USERPROFILE")) |
