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.
- {pytodo-qt-0.2.7/src/pytodo_qt.egg-info → pytodo-qt-0.2.8}/PKG-INFO +1 -1
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/pyproject.toml +1 -1
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/__main__.py +2 -11
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/core/settings.py +1 -1
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/gui/MainWindow.py +1 -1
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8/src/pytodo_qt.egg-info}/PKG-INFO +1 -1
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/COPYING +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/README.md +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/setup.cfg +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/setup.py +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/__init__.py +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/core/Logger.py +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/core/TodoDatabase.py +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/core/__init__.py +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/core/json_helpers.py +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/crypto/AESCipher.py +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/crypto/__init__.py +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/gui/AddTodoDialog.py +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/gui/SyncDialog.py +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/gui/__init__.py +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/gui/icons/minus.png +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/gui/icons/plus.png +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/gui/icons/pytodo-qt.png +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/net/__init__.py +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/net/sync_operations.py +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/net/tcp_client_lib.py +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt/net/tcp_server_lib.py +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt.egg-info/SOURCES.txt +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt.egg-info/dependency_links.txt +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt.egg-info/entry_points.txt +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt.egg-info/requires.txt +0 -0
- {pytodo-qt-0.2.7 → pytodo-qt-0.2.8}/src/pytodo_qt.egg-info/top_level.txt +0 -0
|
@@ -37,17 +37,8 @@ logger = Logger(__name__)
|
|
|
37
37
|
|
|
38
38
|
# Main function
|
|
39
39
|
def main():
|
|
40
|
-
|
|
41
|
-
|
|
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(
|
|
@@ -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.
|
|
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>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|