jbqt 0.1.1__tar.gz → 0.1.2__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.
Potentially problematic release.
This version of jbqt might be problematic. Click here for more details.
- {jbqt-0.1.1 → jbqt-0.1.2}/PKG-INFO +2 -2
- {jbqt-0.1.1 → jbqt-0.1.2}/jbqt/common/consts.py +3 -3
- {jbqt-0.1.1 → jbqt-0.1.2}/jbqt/widgets/chips.py +1 -1
- {jbqt-0.1.1 → jbqt-0.1.2}/jbqt/widgets/multiselect.py +1 -1
- {jbqt-0.1.1 → jbqt-0.1.2}/pyproject.toml +2 -2
- {jbqt-0.1.1 → jbqt-0.1.2}/README.md +0 -0
- {jbqt-0.1.1 → jbqt-0.1.2}/jbqt/__init__.py +0 -0
- {jbqt-0.1.1 → jbqt-0.1.2}/jbqt/common/__init__.py +0 -0
- {jbqt-0.1.1 → jbqt-0.1.2}/jbqt/common/qt_utils.py +0 -0
- {jbqt-0.1.1 → jbqt-0.1.2}/jbqt/dialogs/__init__.py +0 -0
- {jbqt-0.1.1 → jbqt-0.1.2}/jbqt/dialogs/file_dialog.py +0 -0
- {jbqt-0.1.1 → jbqt-0.1.2}/jbqt/dialogs/input_form.py +0 -0
- {jbqt-0.1.1 → jbqt-0.1.2}/jbqt/dialogs/text_preview.py +0 -0
- {jbqt-0.1.1 → jbqt-0.1.2}/jbqt/models/__init__.py +0 -0
- {jbqt-0.1.1 → jbqt-0.1.2}/jbqt/models/chip_button.py +0 -0
- {jbqt-0.1.1 → jbqt-0.1.2}/jbqt/models/chips.py +0 -0
- {jbqt-0.1.1 → jbqt-0.1.2}/jbqt/view_icons.py +0 -0
- {jbqt-0.1.1 → jbqt-0.1.2}/jbqt/widgets/__init__.py +0 -0
- {jbqt-0.1.1 → jbqt-0.1.2}/jbqt/widgets/chip_button.py +0 -0
- {jbqt-0.1.1 → jbqt-0.1.2}/jbqt/widgets/simple.py +0 -0
- {jbqt-0.1.1 → jbqt-0.1.2}/jbqt/widgets/toast.py +0 -0
- {jbqt-0.1.1 → jbqt-0.1.2}/jbqt/widgets/widget_utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: jbqt
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary:
|
|
5
5
|
Author: Joseph Bochinski
|
|
6
6
|
Author-email: stirgejr@gmail.com
|
|
@@ -8,7 +8,7 @@ Requires-Python: >=3.12,<4.0
|
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
9
|
Classifier: Programming Language :: Python :: 3.12
|
|
10
10
|
Requires-Dist: fuzzywuzzy (>=0.18.0,<0.19.0)
|
|
11
|
-
Requires-Dist:
|
|
11
|
+
Requires-Dist: jbutils (>=0.1.1,<0.2.0)
|
|
12
12
|
Requires-Dist: pyqt6 (>=6.9.0,<7.0.0)
|
|
13
13
|
Requires-Dist: python-levenshtein (>=0.27.1,<0.28.0)
|
|
14
14
|
Description-Content-Type: text/markdown
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import os
|
|
2
2
|
import re
|
|
3
3
|
|
|
4
|
-
import
|
|
4
|
+
import jbutils
|
|
5
5
|
|
|
6
6
|
from PyQt6.QtWidgets import QApplication, QMainWindow, QScrollArea, QWidget
|
|
7
7
|
from PyQt6.QtCore import Qt, QSize
|
|
@@ -10,8 +10,8 @@ from PyQt6.QtGui import QIcon, QPixmap, QPainter, QColor
|
|
|
10
10
|
TAG_RE = re.compile(r"^\((.+)\)(\d+\.\d+)$")
|
|
11
11
|
LIST_ITEM_ROLE = Qt.ItemDataRole.UserRole - 1
|
|
12
12
|
|
|
13
|
-
STYLES =
|
|
14
|
-
COLORS =
|
|
13
|
+
STYLES = jbutils.STYLES
|
|
14
|
+
COLORS = jbutils.COLORS
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
class GlobalRefs:
|
|
@@ -4,7 +4,7 @@ from PyQt6.QtCore import QObject, pyqtSignal, Qt
|
|
|
4
4
|
from PyQt6.QtGui import QCursor, QMouseEvent, QWheelEvent
|
|
5
5
|
from PyQt6.QtWidgets import QComboBox, QListWidget, QListWidgetItem
|
|
6
6
|
|
|
7
|
-
import
|
|
7
|
+
import jbutils as utils
|
|
8
8
|
from jbqt.common import consts, qt_utils
|
|
9
9
|
|
|
10
10
|
|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "jbqt"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.2"
|
|
8
8
|
description = ""
|
|
9
9
|
authors = [ "Joseph Bochinski <stirgejr@gmail.com>",]
|
|
10
10
|
readme = "README.md"
|
|
@@ -12,6 +12,6 @@ readme = "README.md"
|
|
|
12
12
|
[tool.poetry.dependencies]
|
|
13
13
|
python = "^3.12"
|
|
14
14
|
pyqt6 = "^6.9.0"
|
|
15
|
-
jb-utils = "^0.1.2"
|
|
16
15
|
fuzzywuzzy = "^0.18.0"
|
|
17
16
|
python-levenshtein = "^0.27.1"
|
|
17
|
+
jbutils = "^0.1.1"
|
|
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
|