q2rad 0.1.229__tar.gz → 0.1.231__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 q2rad might be problematic. Click here for more details.
- {q2rad-0.1.229 → q2rad-0.1.231}/PKG-INFO +1 -1
- {q2rad-0.1.229 → q2rad-0.1.231}/pyproject.toml +1 -1
- {q2rad-0.1.229 → q2rad-0.1.231}/q2rad/q2extensions.py +1 -1
- {q2rad-0.1.229 → q2rad-0.1.231}/q2rad/q2rad.py +4 -2
- {q2rad-0.1.229 → q2rad-0.1.231}/q2rad/q2stylesettings.py +2 -2
- q2rad-0.1.231/q2rad/version.py +1 -0
- q2rad-0.1.229/q2rad/version.py +0 -1
- {q2rad-0.1.229 → q2rad-0.1.231}/LICENSE +0 -0
- {q2rad-0.1.229 → q2rad-0.1.231}/README.md +0 -0
- {q2rad-0.1.229 → q2rad-0.1.231}/q2rad/__init__.py +0 -0
- {q2rad-0.1.229 → q2rad-0.1.231}/q2rad/__main__.py +0 -0
- {q2rad-0.1.229 → q2rad-0.1.231}/q2rad/q2actions.py +0 -0
- {q2rad-0.1.229 → q2rad-0.1.231}/q2rad/q2appmanager.py +0 -0
- {q2rad-0.1.229 → q2rad-0.1.231}/q2rad/q2appselector.py +0 -0
- {q2rad-0.1.229 → q2rad-0.1.231}/q2rad/q2constants.py +0 -0
- {q2rad-0.1.229 → q2rad-0.1.231}/q2rad/q2forms.py +0 -0
- {q2rad-0.1.229 → q2rad-0.1.231}/q2rad/q2lines.py +0 -0
- {q2rad-0.1.229 → q2rad-0.1.231}/q2rad/q2make.py +0 -0
- {q2rad-0.1.229 → q2rad-0.1.231}/q2rad/q2market.py +0 -0
- {q2rad-0.1.229 → q2rad-0.1.231}/q2rad/q2modules.py +0 -0
- {q2rad-0.1.229 → q2rad-0.1.231}/q2rad/q2packages.py +0 -0
- {q2rad-0.1.229 → q2rad-0.1.231}/q2rad/q2queries.py +0 -0
- {q2rad-0.1.229 → q2rad-0.1.231}/q2rad/q2raddb.py +0 -0
- {q2rad-0.1.229 → q2rad-0.1.231}/q2rad/q2reports.py +0 -0
- {q2rad-0.1.229 → q2rad-0.1.231}/q2rad/q2utils.py +0 -0
|
@@ -118,7 +118,7 @@ class Q2Extensions(Q2Form):
|
|
|
118
118
|
return
|
|
119
119
|
if (
|
|
120
120
|
q2AskYN(
|
|
121
|
-
f"<p>You are about to export Extension ({prefix}) "
|
|
121
|
+
f"<p>You are about to export Extension (<b>{prefix}</b>) "
|
|
122
122
|
f"<p>into folder {os.path.abspath(q2market_path)}"
|
|
123
123
|
f"<p>and upload into {os.path.abspath(q2market_url)}"
|
|
124
124
|
"<p>Are you sure?"
|
|
@@ -18,6 +18,7 @@ import re
|
|
|
18
18
|
import threading
|
|
19
19
|
from packaging import version
|
|
20
20
|
import webbrowser
|
|
21
|
+
from functools import partial
|
|
21
22
|
|
|
22
23
|
if __name__ == "__main__":
|
|
23
24
|
sys.path.insert(0, ".")
|
|
@@ -325,7 +326,7 @@ class Q2RadApp(Q2App):
|
|
|
325
326
|
self.set_title("Open Application")
|
|
326
327
|
Q2AppSelect().run(autoload_enabled)
|
|
327
328
|
if self.selected_application != {}:
|
|
328
|
-
self.open_selected_app(True, migrate_db_data=
|
|
329
|
+
self.open_selected_app(True, migrate_db_data=True)
|
|
329
330
|
if self.check_app_update() or self.check_ext_update():
|
|
330
331
|
self.open_selected_app()
|
|
331
332
|
self.on_new_tab()
|
|
@@ -1112,7 +1113,8 @@ class Q2RadApp(Q2App):
|
|
|
1112
1113
|
|
|
1113
1114
|
self.add_menu(
|
|
1114
1115
|
menu_path,
|
|
1115
|
-
worker=menu_worker(x["name"]),
|
|
1116
|
+
# worker=menu_worker(x["name"]),
|
|
1117
|
+
worker=partial(self.run_form, x["name"]),
|
|
1116
1118
|
toolbar=x["toolbar"],
|
|
1117
1119
|
before=x["menu_before"],
|
|
1118
1120
|
icon=x["menu_icon"],
|
|
@@ -114,8 +114,8 @@ class AppStyleSettings(Q2Form):
|
|
|
114
114
|
self.q2_app.set_color_mode(color_mode)
|
|
115
115
|
|
|
116
116
|
def font_size_valid(self):
|
|
117
|
-
if int_(self.s.font_size) <
|
|
118
|
-
self.s.font_size =
|
|
117
|
+
if int_(self.s.font_size) < 8:
|
|
118
|
+
self.s.font_size = 8
|
|
119
119
|
if self.s.apply:
|
|
120
120
|
self.q2_app.q2style.font_size = int_(self.s.font_size)
|
|
121
121
|
self.style_valid()
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.231"
|
q2rad-0.1.229/q2rad/version.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.1.229"
|
|
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
|