python-visual-update-express 1.0.1__py3-none-any.whl → 1.0.2__py3-none-any.whl
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.
- python_visual_update_express/libs/update_manager.py +3 -3
- python_visual_update_express/ui/error_handling.py +2 -2
- python_visual_update_express/ui/status_text_widget.py +1 -1
- python_visual_update_express/ui/updater_window.py +4 -4
- python_visual_update_express/ui/window_content.py +8 -8
- {python_visual_update_express-1.0.1.dist-info → python_visual_update_express-1.0.2.dist-info}/METADATA +1 -1
- {python_visual_update_express-1.0.1.dist-info → python_visual_update_express-1.0.2.dist-info}/RECORD +9 -9
- {python_visual_update_express-1.0.1.dist-info → python_visual_update_express-1.0.2.dist-info}/WHEEL +0 -0
- {python_visual_update_express-1.0.1.dist-info → python_visual_update_express-1.0.2.dist-info}/licenses/LICENSE +0 -0
|
@@ -4,9 +4,9 @@ from typing import Union
|
|
|
4
4
|
|
|
5
5
|
from PyQt6.QtCore import pyqtSignal, QObject
|
|
6
6
|
|
|
7
|
-
from
|
|
8
|
-
from
|
|
9
|
-
from
|
|
7
|
+
from python_visual_update_express.data import general_info
|
|
8
|
+
from python_visual_update_express.libs.file_download import download_file_to_location
|
|
9
|
+
from python_visual_update_express.libs.updates_info import UpdatesInfo
|
|
10
10
|
|
|
11
11
|
DOWNLOADABLE_FILES_PATH = 'Updates/'
|
|
12
12
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import traceback
|
|
2
2
|
|
|
3
|
-
from
|
|
4
|
-
from
|
|
3
|
+
from python_visual_update_express.data.general_settings import DEBUG_MODE
|
|
4
|
+
from python_visual_update_express.ui.notifications import error_notification
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
def process_error(ex: Exception, self=None) -> None:
|
|
@@ -4,7 +4,7 @@ from PyQt6.QtWidgets import QWidget, QLabel, QHBoxLayout
|
|
|
4
4
|
from pyqtwaitingspinner import WaitingSpinner, SpinnerParameters, SpinDirection
|
|
5
5
|
from qtawesome import IconWidget
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from python_visual_update_express.libs.icons import IconsLib, Icon
|
|
8
8
|
|
|
9
9
|
SPINNER_PARAMS = SpinnerParameters( # These can be generated in the spinner editor `spinner-conf`
|
|
10
10
|
roundness=100.0,
|
|
@@ -3,10 +3,10 @@ from PyQt6.QtGui import QGuiApplication
|
|
|
3
3
|
from PyQt6.QtWidgets import QMainWindow, QVBoxLayout, QWidget
|
|
4
4
|
from semver import Version
|
|
5
5
|
|
|
6
|
-
from
|
|
7
|
-
from
|
|
8
|
-
from
|
|
9
|
-
from
|
|
6
|
+
from python_visual_update_express.data import general_info
|
|
7
|
+
from python_visual_update_express.data.general_info import GeneralInfo
|
|
8
|
+
from python_visual_update_express.data.general_settings import VERSION, WINDOW_WIDTH, WINDOW_HEIGHT
|
|
9
|
+
from python_visual_update_express.ui.window_content import WindowContent
|
|
10
10
|
|
|
11
11
|
VERSION_PREFIX = 'v. '
|
|
12
12
|
|
|
@@ -5,14 +5,14 @@ from tempfile import TemporaryDirectory
|
|
|
5
5
|
from PyQt6.QtCore import Qt, QThreadPool, pyqtSignal
|
|
6
6
|
from PyQt6.QtWidgets import QWidget, QVBoxLayout, QLayout, QPushButton, QHBoxLayout, QProgressBar
|
|
7
7
|
|
|
8
|
-
from
|
|
9
|
-
from
|
|
10
|
-
from
|
|
11
|
-
from
|
|
12
|
-
from
|
|
13
|
-
from
|
|
14
|
-
from
|
|
15
|
-
from
|
|
8
|
+
from python_visual_update_express.data import general_info
|
|
9
|
+
from python_visual_update_express.libs.file_download import download_text_file
|
|
10
|
+
from python_visual_update_express.libs.icons import Icon
|
|
11
|
+
from python_visual_update_express.libs.threading import Worker
|
|
12
|
+
from python_visual_update_express.libs.update_manager import UpdateManager
|
|
13
|
+
from python_visual_update_express.libs.updates_info import UpdatesInfo
|
|
14
|
+
from python_visual_update_express.ui.error_handling import process_error
|
|
15
|
+
from python_visual_update_express.ui.status_text_widget import StatusTextWidget
|
|
16
16
|
|
|
17
17
|
TEXT_INITIAL_STATUS = 'Ready to update'
|
|
18
18
|
TEXT_CHECKING_FOR_UPDATE = 'Checking for update...'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-visual-update-express
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: A dialog for updating specific files by syncing them from a server. Designed to work like InstallForge's "Visual Update Express".
|
|
5
5
|
Project-URL: Homepage, https://github.com/ChocolatePinecone/python-generic-updater
|
|
6
6
|
Project-URL: Issues, https://github.com/ChocolatePinecone/python-generic-updater/issues
|
{python_visual_update_express-1.0.1.dist-info → python_visual_update_express-1.0.2.dist-info}/RECORD
RENAMED
|
@@ -5,15 +5,15 @@ python_visual_update_express/data/general_settings.py,sha256=vYWr1croCKrYMTKGzLu
|
|
|
5
5
|
python_visual_update_express/libs/file_download.py,sha256=HJ1BDAUTSkjnDLsZbLzla9b05voXy1xkv49aUACIAmg,667
|
|
6
6
|
python_visual_update_express/libs/icons.py,sha256=jTLMNPtboajtT2Rhs4wodPI_0-561RdwE8W_-QLCMbg,1020
|
|
7
7
|
python_visual_update_express/libs/threading.py,sha256=AyCWuMEHA9Rvn5lxAnLk7eqh9JXictvm9ONQmFwtwVM,857
|
|
8
|
-
python_visual_update_express/libs/update_manager.py,sha256
|
|
8
|
+
python_visual_update_express/libs/update_manager.py,sha256=-ncbNyGgLM-Q_Sz0oNs-ho1gVHcIjvwRWvwRisodq0s,2023
|
|
9
9
|
python_visual_update_express/libs/updates_info.py,sha256=tA2O180UV3Q0gsDAeza33yo7lGJWtBxyH62R7jZQiMk,2889
|
|
10
10
|
python_visual_update_express/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
python_visual_update_express/ui/error_handling.py,sha256=
|
|
11
|
+
python_visual_update_express/ui/error_handling.py,sha256=Qzy8AlYfSaKF8vUBWWqRQQp6udu1pGjKD1F4K0Xvj8Q,447
|
|
12
12
|
python_visual_update_express/ui/notifications.py,sha256=uGT83XI9xwLz13vo1oPiaBcTZeyEjtIkyl1jfjQmDq0,338
|
|
13
|
-
python_visual_update_express/ui/status_text_widget.py,sha256=
|
|
14
|
-
python_visual_update_express/ui/updater_window.py,sha256=
|
|
15
|
-
python_visual_update_express/ui/window_content.py,sha256=
|
|
16
|
-
python_visual_update_express-1.0.
|
|
17
|
-
python_visual_update_express-1.0.
|
|
18
|
-
python_visual_update_express-1.0.
|
|
19
|
-
python_visual_update_express-1.0.
|
|
13
|
+
python_visual_update_express/ui/status_text_widget.py,sha256=E5LJZjtYVY2HPA_5xSr8ZoJcwDsnZ_xF_U4Q862trnc,2760
|
|
14
|
+
python_visual_update_express/ui/updater_window.py,sha256=k4C3WevpJ-7PkkmqdgN8rsQCSNFpUlK7qDapQP3PPdA,2037
|
|
15
|
+
python_visual_update_express/ui/window_content.py,sha256=cd58CgENl0jE5peGkyiMeldEuYojHIvMY-XDoifro-s,9049
|
|
16
|
+
python_visual_update_express-1.0.2.dist-info/METADATA,sha256=s3mphMyrIArJKlgTGGSzFCRGkD3hyv4EmMI8thYJk7w,2560
|
|
17
|
+
python_visual_update_express-1.0.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
18
|
+
python_visual_update_express-1.0.2.dist-info/licenses/LICENSE,sha256=8XfFtZzNlgbVIWPbv6B-Nmmptkxh4-B0h7YDKShpxAY,364
|
|
19
|
+
python_visual_update_express-1.0.2.dist-info/RECORD,,
|
{python_visual_update_express-1.0.1.dist-info → python_visual_update_express-1.0.2.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|