q2rad 0.1.196__tar.gz → 0.1.198__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.196
3
+ Version: 0.1.198
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.196"
3
+ version = "0.1.198"
4
4
  description = "RAD - database, GUI, reports"
5
5
  authors = ["Andrei Puchko <andrei.puchko@gmx.de>"]
6
6
  readme = "README.md"
@@ -52,6 +52,7 @@ WIDGETS = (
52
52
  "button",
53
53
  "check",
54
54
  "radio",
55
+ "vradio",
55
56
  "combo",
56
57
  "list",
57
58
  "spin",
@@ -34,9 +34,7 @@ class Q2Market(Q2Form):
34
34
  def on_init(self):
35
35
  self.add_control("app_title", _("Name"), datatype="char", datalen=100)
36
36
  self.add_control("app_version", _("Version"), datatype="char", datalen=100)
37
- self.add_control(
38
- "app_description", _("Description"), datatype="char", datalen=100
39
- )
37
+ self.add_control("app_description", _("Description"), control="text", datatype="char", datalen=100)
40
38
  self.add_control("app_url", _("Path"), datatype="char", datalen=100)
41
39
 
42
40
  q2market_catalogue_url = f"{self.q2_app.q2market_url}/q2market.json"
@@ -510,6 +510,8 @@ class auto_filter:
510
510
  )
511
511
  self.mem.add_control("/f")
512
512
  for col in cu.records():
513
+ if col["control"] == "text":
514
+ col["control"] = "line"
513
515
  col = Q2Controls.validate(col)
514
516
  self.filter_columns.append(cu.r.column)
515
517
 
@@ -0,0 +1 @@
1
+ __version__ = "0.1.198"
@@ -1 +0,0 @@
1
- __version__ = "0.1.196"
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