From c8114d9e549167f883a6feb4ffb396fe43abac58c7bf49efc04445bb31c31a8d Mon Sep 17 00:00:00 2001 From: linuxero Date: Mon, 10 Mar 2025 16:17:58 +0100 Subject: [PATCH 1/3] testing ssh git with qt 1 --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index a522bd0..9a0ce45 100644 --- a/main.py +++ b/main.py @@ -23,7 +23,7 @@ from lib.Printers import Printers os.environ['QML_XHR_ALLOW_FILE_READ'] = '1' -# [pyqcrm] +# [pyqcrm] test # program-name="" # version= From 0834ee89056347dd4c128c8c28822180f7fcab5dde778109900aa419aeaafaf7 Mon Sep 17 00:00:00 2001 From: linuxero Date: Mon, 10 Mar 2025 16:19:19 +0100 Subject: [PATCH 2/3] Not solved - GIT uthentication issues --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 9a0ce45..a522bd0 100644 --- a/main.py +++ b/main.py @@ -23,7 +23,7 @@ from lib.Printers import Printers os.environ['QML_XHR_ALLOW_FILE_READ'] = '1' -# [pyqcrm] test +# [pyqcrm] # program-name="" # version= From 469b8d0a210b5b4a862fcc12e01763bd15c640ea530c30410e451bbe0d5e844b Mon Sep 17 00:00:00 2001 From: Yuri Becker Date: Tue, 11 Mar 2025 09:28:59 +0100 Subject: [PATCH 3/3] Fix Window Restoring on Mac --- .gitignore | 1 + .idea/.gitignore | 8 ++++ .idea/discord.xml | 14 ++++++ .idea/inspectionProfiles/Project_Default.xml | 6 +++ .../inspectionProfiles/profiles_settings.xml | 6 +++ .idea/misc.xml | 7 +++ .idea/modules.xml | 8 ++++ .idea/pyqcrm.iml | 10 +++++ .idea/vcs.xml | 6 +++ .idea/watcherTasks.xml | 45 +++++++++++++++++++ Gui/main.qml | 8 ++++ 11 files changed, 119 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/discord.xml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/pyqcrm.iml create mode 100644 .idea/vcs.xml create mode 100644 .idea/watcherTasks.xml diff --git a/.gitignore b/.gitignore index eac8444..3e6c0cc 100644 --- a/.gitignore +++ b/.gitignore @@ -228,3 +228,4 @@ cython_debug/ rc_*.py +.DS_STORE \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..c2083d3 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/discord.xml b/.idea/discord.xml new file mode 100644 index 0000000..b25cd25 --- /dev/null +++ b/.idea/discord.xml @@ -0,0 +1,14 @@ + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..104102c --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..449e696 --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..4719720 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..cad38cf --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/pyqcrm.iml b/.idea/pyqcrm.iml new file mode 100644 index 0000000..1fff579 --- /dev/null +++ b/.idea/pyqcrm.iml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..0faa797 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/watcherTasks.xml b/.idea/watcherTasks.xml new file mode 100644 index 0000000..887bd74 --- /dev/null +++ b/.idea/watcherTasks.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Gui/main.qml b/Gui/main.qml index b68e806..a90a537 100644 --- a/Gui/main.qml +++ b/Gui/main.qml @@ -150,6 +150,14 @@ ApplicationWindow } } + onWindowStateChanged: { + if (windowState !== Qt.WindowMinimized) + { + systray.setVisible(false) + appWindow.show() + } + } + onClosing: (close) => { if (false)