arkitekt-next 0.20.0__py3-none-any.whl → 0.21.0__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.
Potentially problematic release.
This version of arkitekt-next might be problematic. Click here for more details.
- arkitekt_next/qt/magic_bar.py +9 -9
- {arkitekt_next-0.20.0.dist-info → arkitekt_next-0.21.0.dist-info}/METADATA +2 -2
- {arkitekt_next-0.20.0.dist-info → arkitekt_next-0.21.0.dist-info}/RECORD +6 -6
- {arkitekt_next-0.20.0.dist-info → arkitekt_next-0.21.0.dist-info}/WHEEL +0 -0
- {arkitekt_next-0.20.0.dist-info → arkitekt_next-0.21.0.dist-info}/entry_points.txt +0 -0
- {arkitekt_next-0.20.0.dist-info → arkitekt_next-0.21.0.dist-info}/licenses/LICENSE +0 -0
arkitekt_next/qt/magic_bar.py
CHANGED
|
@@ -193,10 +193,11 @@ class Profile(QtWidgets.QDialog):
|
|
|
193
193
|
super().__init__(*args, **{"parent": bar, **kwargs})
|
|
194
194
|
self.app = app
|
|
195
195
|
self.bar = bar
|
|
196
|
+
self.manifest = self.app.fakts.manifest
|
|
196
197
|
|
|
197
198
|
self.settings = QtCore.QSettings(
|
|
198
199
|
"arkitekt_next",
|
|
199
|
-
f"{self.
|
|
200
|
+
f"{self.manifest.identifier}:{self.manifest.version}:profile",
|
|
200
201
|
)
|
|
201
202
|
|
|
202
203
|
self.setWindowTitle("Settings")
|
|
@@ -207,11 +208,11 @@ class Profile(QtWidgets.QDialog):
|
|
|
207
208
|
self.setLayout(self.mylayout)
|
|
208
209
|
self.mylayout.addLayout(self.infobar)
|
|
209
210
|
|
|
210
|
-
if self.
|
|
211
|
-
self.infobar.addWidget(Logo(self.
|
|
211
|
+
if self.manifest.logo:
|
|
212
|
+
self.infobar.addWidget(Logo(self.manifest.logo, parent=self))
|
|
212
213
|
|
|
213
|
-
self.infobar.addWidget(QtWidgets.QLabel(self.
|
|
214
|
-
self.infobar.addWidget(QtWidgets.QLabel(self.
|
|
214
|
+
self.infobar.addWidget(QtWidgets.QLabel(self.manifest.identifier))
|
|
215
|
+
self.infobar.addWidget(QtWidgets.QLabel(self.manifest.version))
|
|
215
216
|
|
|
216
217
|
self.unkonfigure_button = QtWidgets.QPushButton("Reconnect")
|
|
217
218
|
self.unkonfigure_button.clicked.connect(lambda: self.bar.refresh_task.run())
|
|
@@ -320,7 +321,7 @@ class MagicBar(QtWidgets.QWidget):
|
|
|
320
321
|
self.profile = Profile(app, self, dark_mode=dark_mode)
|
|
321
322
|
self.profile.updated.connect(self.on_profile_updated)
|
|
322
323
|
|
|
323
|
-
self.configure_task = async_to_qt(self.app.fakts.
|
|
324
|
+
self.configure_task = async_to_qt(self.app.fakts.aload)
|
|
324
325
|
self.configure_task.errored.connect(self.configure_errored)
|
|
325
326
|
self.configure_task.returned.connect(self.set_unlogined)
|
|
326
327
|
|
|
@@ -328,12 +329,11 @@ class MagicBar(QtWidgets.QWidget):
|
|
|
328
329
|
self.refresh_task.errored.connect(self.configure_errored)
|
|
329
330
|
self.refresh_task.returned.connect(self.set_unlogined)
|
|
330
331
|
|
|
331
|
-
self.get_token_task = async_to_qt(self.app.
|
|
332
|
+
self.get_token_task = async_to_qt(self.app.fakts.aget_token)
|
|
332
333
|
self.get_token_task.errored.connect(self.login_errored)
|
|
333
334
|
self.get_token_task.returned.connect(self.set_unprovided)
|
|
334
335
|
|
|
335
|
-
self.refresh_token_task = async_to_qt(self.app.
|
|
336
|
-
self.refresh_token_task.started.connect(self.set_providing)
|
|
336
|
+
self.refresh_token_task = async_to_qt(self.app.fakts.arefresh_token)
|
|
337
337
|
self.refresh_token_task.errored.connect(self.login_errored)
|
|
338
338
|
self.refresh_token_task.returned.connect(self.set_unprovided)
|
|
339
339
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: arkitekt-next
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.21.0
|
|
4
4
|
Summary: client for the arkitekt_next platform
|
|
5
5
|
Author-email: jhnnsrs <jhnnsrs@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -15,7 +15,7 @@ Requires-Dist: rath>=3.6.0
|
|
|
15
15
|
Requires-Dist: rekuest-next>=0.13.1
|
|
16
16
|
Requires-Dist: rich-click>=1.8.8
|
|
17
17
|
Requires-Dist: semver>=3.0.4
|
|
18
|
-
Requires-Dist: turms>=0.9.
|
|
18
|
+
Requires-Dist: turms>=0.9.2
|
|
19
19
|
Requires-Dist: watchfiles>=1.0.5
|
|
20
20
|
Provides-Extra: all
|
|
21
21
|
Requires-Dist: fluss-next>=0.2.0; extra == 'all'
|
|
@@ -80,7 +80,7 @@ arkitekt_next/cli/templates/simple.py,sha256=rWaprO7Ue9AUq10oI5c3G8MxF5rsAz_FsYo
|
|
|
80
80
|
arkitekt_next/cli/versions/v1.yaml,sha256=rv2-F6FQbTZi_H6pSE_csdICdtKBObDdoo_asOFi43Y,12
|
|
81
81
|
arkitekt_next/qt/__init__.py,sha256=MeKBI1aYsHt6yDFfYyppj-LM8Nn5URNl2pJlXrdzjzc,443
|
|
82
82
|
arkitekt_next/qt/builders.py,sha256=GaSG4rWfBAoz3kEghtWMOAKqYUp9tDyNy12O6wAjMKU,5801
|
|
83
|
-
arkitekt_next/qt/magic_bar.py,sha256=
|
|
83
|
+
arkitekt_next/qt/magic_bar.py,sha256=WhC3PIuaARGFtmHdk0_6l7C6gXX12g4aN8eWIptLtZE,17550
|
|
84
84
|
arkitekt_next/qt/types.py,sha256=sqi4cLTIjBOv1FIcmrjjDVl5-1AGGYC23ebrWjvuvZ0,4016
|
|
85
85
|
arkitekt_next/qt/utils.py,sha256=MgBPtPmCSBkIuATov3UgREESwxAHh77lWNNxyE7Qs48,773
|
|
86
86
|
arkitekt_next/qt/assets/dark/gear.png,sha256=nYl1JZhcpwd7s5FgG2g-1RpkK7TH_QQRqJMmK6r0BpU,6296
|
|
@@ -93,8 +93,8 @@ arkitekt_next/qt/assets/light/green pulse.gif,sha256=cUd2F3Qlvjb7SnsU-LjGgeLTa8K
|
|
|
93
93
|
arkitekt_next/qt/assets/light/orange pulse.gif,sha256=0gDvrRed0mzZZPHB4tP6vptx7myUCAa_hEVGdjRhNy8,94769
|
|
94
94
|
arkitekt_next/qt/assets/light/pink pulse.gif,sha256=rxd6ZTHSIG9JZuuHhi3jiSB_JYFBZpy7OWUeZETlhQ4,107513
|
|
95
95
|
arkitekt_next/qt/assets/light/red pulse.gif,sha256=U7WLbZvSl5e-Ob5RmawtlC0Rh9VVHxkjDbGjj7NYVUo,108749
|
|
96
|
-
arkitekt_next-0.
|
|
97
|
-
arkitekt_next-0.
|
|
98
|
-
arkitekt_next-0.
|
|
99
|
-
arkitekt_next-0.
|
|
100
|
-
arkitekt_next-0.
|
|
96
|
+
arkitekt_next-0.21.0.dist-info/METADATA,sha256=H8R4wYyq3tNgFQyKXHrAI2D-UgCQuc4Qnvs1NNBQOJM,5782
|
|
97
|
+
arkitekt_next-0.21.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
98
|
+
arkitekt_next-0.21.0.dist-info/entry_points.txt,sha256=IY-mUEDBU6QncqnYw-Ufw5bvNNXjqSlLf1uexZZCJhc,61
|
|
99
|
+
arkitekt_next-0.21.0.dist-info/licenses/LICENSE,sha256=YZ2oRjC248t-GpoEyw7J13vwKYNG6zhYMaEAix6EzF0,1089
|
|
100
|
+
arkitekt_next-0.21.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|