pytodo-qt 0.2.7__tar.gz → 0.2.8__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. {pytodo-qt-0.2.7/src/pytodo_qt.egg-info → pytodo-qt-0.2.8}/PKG-INFO +1 -1
  2. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/pyproject.toml +1 -1
  3. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/__main__.py +2 -11
  4. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/core/settings.py +1 -1
  5. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/gui/MainWindow.py +1 -1
  6. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8/src/pytodo_qt.egg-info}/PKG-INFO +1 -1
  7. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/COPYING +0 -0
  8. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/README.md +0 -0
  9. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/setup.cfg +0 -0
  10. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/setup.py +0 -0
  11. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/__init__.py +0 -0
  12. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/core/Logger.py +0 -0
  13. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/core/TodoDatabase.py +0 -0
  14. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/core/__init__.py +0 -0
  15. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/core/json_helpers.py +0 -0
  16. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/crypto/AESCipher.py +0 -0
  17. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/crypto/__init__.py +0 -0
  18. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/gui/AddTodoDialog.py +0 -0
  19. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/gui/SyncDialog.py +0 -0
  20. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/gui/__init__.py +0 -0
  21. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/gui/icons/minus.png +0 -0
  22. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/gui/icons/plus.png +0 -0
  23. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/gui/icons/pytodo-qt.png +0 -0
  24. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/net/__init__.py +0 -0
  25. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/net/sync_operations.py +0 -0
  26. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/net/tcp_client_lib.py +0 -0
  27. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/net/tcp_server_lib.py +0 -0
  28. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt.egg-info/SOURCES.txt +0 -0
  29. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt.egg-info/dependency_links.txt +0 -0
  30. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt.egg-info/entry_points.txt +0 -0
  31. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt.egg-info/requires.txt +0 -0
  32. {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pytodo-qt
3
- Version: 0.2.7
3
+ Version: 0.2.8
4
4
  Summary: A small cross-platform to-do application written in Python 3 and PyQt6
5
5
  Author-email: Michael Berry <trismegustis@gmail.com>
6
6
  License: GPLv3
@@ -11,7 +11,7 @@ pytodo_qt = ["*.png"]
11
11
 
12
12
  [project]
13
13
  name = "pytodo-qt"
14
- version = "0.2.7"
14
+ version = "0.2.8"
15
15
  description = "A small cross-platform to-do application written in Python 3 and PyQt6"
16
16
  readme = "README.md"
17
17
  authors = [
@@ -37,17 +37,8 @@ logger = Logger(__name__)
37
37
 
38
38
  # Main function
39
39
  def main():
40
- location = ""
41
- for i in range(0, len(sys.path)):
42
- if sys.path[i].__contains__("site-packages"):
43
- location = sys.path[i]
44
- location += "/pytodo_qt"
45
- os.chdir(location)
46
- break
47
-
48
- if location == "":
49
- logger.log.exception("Unknown installation or invocation, exiting")
50
- sys.exit(1)
40
+ # move to main module dir
41
+ os.chdir(os.path.dirname(__file__))
51
42
 
52
43
  # create a command line arg_parser
53
44
  arg_parser = argparse.ArgumentParser(
@@ -13,7 +13,7 @@ from ..core.Logger import Logger
13
13
  logger = Logger(__name__)
14
14
 
15
15
 
16
- __version__ = "0.2.7"
16
+ __version__ = "0.2.8"
17
17
  options = {}
18
18
  DB = None
19
19
 
@@ -811,7 +811,7 @@ class MainWindow(QMainWindow):
811
811
 
812
812
  def about_app(self):
813
813
  """Display a message box with Program/Author information."""
814
- text = """<b><u>pytodo-qt v0.2.7</u></b>
814
+ text = """<b><u>pytodo-qt v0.2.8</u></b>
815
815
  <br><br>To-Do list program that works with multiple To-Do
816
816
  lists locally and over a network.
817
817
  <br><br>License: <a href="http://www.fsf.org/licenses/gpl.html">GPLv3</a>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pytodo-qt
3
- Version: 0.2.7
3
+ Version: 0.2.8
4
4
  Summary: A small cross-platform to-do application written in Python 3 and PyQt6
5
5
  Author-email: Michael Berry <trismegustis@gmail.com>
6
6
  License: GPLv3
File without changes
File without changes
File without changes
File without changes