q2rad 0.1.229__tar.gz → 0.1.230__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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: q2rad
3
- Version: 0.1.229
3
+ Version: 0.1.230
4
4
  Summary: RAD - database, GUI, reports
5
5
  Author: Andrei Puchko
6
6
  Author-email: andrei.puchko@gmx.de
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "q2rad"
3
- version = "0.1.229"
3
+ version = "0.1.230"
4
4
  description = "RAD - database, GUI, reports"
5
5
  authors = ["Andrei Puchko <andrei.puchko@gmx.de>"]
6
6
  readme = "README.md"
@@ -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, ".")
@@ -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) < 10:
118
- self.s.font_size = 10
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.230"
@@ -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