python-visual-update-express 1.0.0__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.
@@ -1 +1 @@
1
- from python_generic_updater.ui.updater_window import UpdaterWindow
1
+ from .ui.updater_window import UpdaterWindow
@@ -4,9 +4,9 @@ from typing import Union
4
4
 
5
5
  from PyQt6.QtCore import pyqtSignal, QObject
6
6
 
7
- from python_generic_updater.data import general_info
8
- from python_generic_updater.libs.file_download import download_file_to_location
9
- from python_generic_updater.libs.updates_info import UpdatesInfo
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
 
File without changes
@@ -1,7 +1,7 @@
1
1
  import traceback
2
2
 
3
- from python_generic_updater.data.general_settings import DEBUG_MODE
4
- from python_generic_updater.ui.notifications import error_notification
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 python_generic_updater.libs.icons import IconsLib, Icon
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 python_generic_updater.data import general_info
7
- from python_generic_updater.data.general_info import GeneralInfo
8
- from python_generic_updater.data.general_settings import VERSION, WINDOW_WIDTH, WINDOW_HEIGHT
9
- from python_generic_updater.ui.window_content import WindowContent
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 python_generic_updater.data import general_info
9
- from python_generic_updater.libs.file_download import download_text_file
10
- from python_generic_updater.libs.icons import Icon
11
- from python_generic_updater.libs.threading import Worker
12
- from python_generic_updater.libs.update_manager import UpdateManager
13
- from python_generic_updater.libs.updates_info import UpdatesInfo
14
- from python_generic_updater.ui.error_handling import process_error
15
- from python_generic_updater.ui.status_text_widget import StatusTextWidget
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.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
@@ -9,6 +9,10 @@ License-File: LICENSE
9
9
  Classifier: Operating System :: OS Independent
10
10
  Classifier: Programming Language :: Python :: 3
11
11
  Requires-Python: >=3.10
12
+ Requires-Dist: pyqt6>=6.7.1
13
+ Requires-Dist: pyqtwaitingspinner==1.3.2
14
+ Requires-Dist: qtawesome>=1.4.0
15
+ Requires-Dist: semver>=3.0.4
12
16
  Description-Content-Type: text/markdown
13
17
 
14
18
  # Python Visual Update Express
@@ -0,0 +1,19 @@
1
+ python_visual_update_express/__init__.py,sha256=STZKiHSDY5x_kCtIrQQnXpaCvpXzddlEYkhNa_Oj7VQ,44
2
+ python_visual_update_express/application.py,sha256=c-Zfo_tWfB1aBa2_k6lViOb1otgbqFcsrs464re07uY,586
3
+ python_visual_update_express/data/general_info.py,sha256=Gh6ABo3SZ1EGh34guU90uUbtys8rRqciYZzQfQtkXak,285
4
+ python_visual_update_express/data/general_settings.py,sha256=vYWr1croCKrYMTKGzLu56vwQF8WG-SujO_JPFsLRQsI,176
5
+ python_visual_update_express/libs/file_download.py,sha256=HJ1BDAUTSkjnDLsZbLzla9b05voXy1xkv49aUACIAmg,667
6
+ python_visual_update_express/libs/icons.py,sha256=jTLMNPtboajtT2Rhs4wodPI_0-561RdwE8W_-QLCMbg,1020
7
+ python_visual_update_express/libs/threading.py,sha256=AyCWuMEHA9Rvn5lxAnLk7eqh9JXictvm9ONQmFwtwVM,857
8
+ python_visual_update_express/libs/update_manager.py,sha256=-ncbNyGgLM-Q_Sz0oNs-ho1gVHcIjvwRWvwRisodq0s,2023
9
+ python_visual_update_express/libs/updates_info.py,sha256=tA2O180UV3Q0gsDAeza33yo7lGJWtBxyH62R7jZQiMk,2889
10
+ python_visual_update_express/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ python_visual_update_express/ui/error_handling.py,sha256=Qzy8AlYfSaKF8vUBWWqRQQp6udu1pGjKD1F4K0Xvj8Q,447
12
+ python_visual_update_express/ui/notifications.py,sha256=uGT83XI9xwLz13vo1oPiaBcTZeyEjtIkyl1jfjQmDq0,338
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,,
@@ -1,18 +0,0 @@
1
- python_visual_update_express/__init__.py,sha256=dARMO0afc-UpUd6zSNyBGDa73tobmwjAZh9oPf7SSjo,68
2
- python_visual_update_express/application.py,sha256=c-Zfo_tWfB1aBa2_k6lViOb1otgbqFcsrs464re07uY,586
3
- python_visual_update_express/data/general_info.py,sha256=Gh6ABo3SZ1EGh34guU90uUbtys8rRqciYZzQfQtkXak,285
4
- python_visual_update_express/data/general_settings.py,sha256=vYWr1croCKrYMTKGzLu56vwQF8WG-SujO_JPFsLRQsI,176
5
- python_visual_update_express/libs/file_download.py,sha256=HJ1BDAUTSkjnDLsZbLzla9b05voXy1xkv49aUACIAmg,667
6
- python_visual_update_express/libs/icons.py,sha256=jTLMNPtboajtT2Rhs4wodPI_0-561RdwE8W_-QLCMbg,1020
7
- python_visual_update_express/libs/threading.py,sha256=AyCWuMEHA9Rvn5lxAnLk7eqh9JXictvm9ONQmFwtwVM,857
8
- python_visual_update_express/libs/update_manager.py,sha256=zi_npKq7QGvdkT6toKs3TtiFeR8aby-_96GiWMrVE2I,2005
9
- python_visual_update_express/libs/updates_info.py,sha256=tA2O180UV3Q0gsDAeza33yo7lGJWtBxyH62R7jZQiMk,2889
10
- python_visual_update_express/ui/error_handling.py,sha256=2UEdGopWlqUu3d930_hFkn423M2r_2juuT-XYegVWX4,435
11
- python_visual_update_express/ui/notifications.py,sha256=uGT83XI9xwLz13vo1oPiaBcTZeyEjtIkyl1jfjQmDq0,338
12
- python_visual_update_express/ui/status_text_widget.py,sha256=g3ud_ssPuGQ1rnKuyMVUSMY-tfhtiDDAJFARYVD9POs,2754
13
- python_visual_update_express/ui/updater_window.py,sha256=sHFXolVNzJLJ7cGxbaOge77KBXjHskYOFbBftUFHNv0,2013
14
- python_visual_update_express/ui/window_content.py,sha256=UpBBzCV6bTyamVctyRyB8iTIQvvxes-mfdr6YeV6oKM,9001
15
- python_visual_update_express-1.0.0.dist-info/METADATA,sha256=nTqw6q0RhqTRVl5P4PgfA45TfiGzJwtgDYWz8K-LgM8,2430
16
- python_visual_update_express-1.0.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
17
- python_visual_update_express-1.0.0.dist-info/licenses/LICENSE,sha256=8XfFtZzNlgbVIWPbv6B-Nmmptkxh4-B0h7YDKShpxAY,364
18
- python_visual_update_express-1.0.0.dist-info/RECORD,,