omarchy-ui 0.0.4-x86_64-linux → 0.0.6-x86_64-linux
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.
- checksums.yaml +4 -4
- data/App.qml +4 -3
- data/BarWidget.qml +2 -2
- data/Panel.qml +7 -4
- data/README.md +456 -227
- data/Service.qml +122 -5
- data/ZuiRenderer.qml +37 -0
- data/lib/omarchy_ui/cli.rb +7 -17
- data/lib/omarchy_ui/generator.rb +105 -0
- data/lib/omarchy_ui/runtime.rb +33 -0
- data/lib/omarchy_ui.rb +117 -17
- data/vendor/runtime/x86_64-linux/RUNTIME_PROVENANCE.md +16 -6
- data/vendor/runtime/x86_64-linux/omarchy-ui-runtime +0 -0
- data/vendor/runtime/x86_64-linux/omarchy-ui-runtime.sha256 +1 -1
- data/vendor/runtime/x86_64-linux/runtime-provenance.json +12 -0
- metadata +21 -21
- data/Components/README.md +0 -40
- data/Components/Sparkline.qml +0 -36
- data/ControlNode.qml +0 -754
- data/lib/omarchy_ui/animation.rb +0 -24
- data/lib/omarchy_ui/application.rb +0 -322
- data/lib/omarchy_ui/builder.rb +0 -247
- data/lib/omarchy_ui/command.rb +0 -95
- data/lib/omarchy_ui/component_registry.rb +0 -87
- data/lib/omarchy_ui/components.rb +0 -43
- data/lib/omarchy_ui/node.rb +0 -30
- data/lib/omarchy_ui/project.rb +0 -108
- data/lib/omarchy_ui/protocol.rb +0 -29
- data/lib/omarchy_ui/scheduler.rb +0 -136
- data/lib/omarchy_ui/source_bundle.rb +0 -59
- data/lib/omarchy_ui/state_store.rb +0 -100
- data/lib/omarchy_ui/value.rb +0 -44
- data/manifest.json +0 -27
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8c8e67a6ee733ab185881c3af8614d428d5888fcea3fed015780ccc4bae6a3b5
|
|
4
|
+
data.tar.gz: 648c98f47aea9d30e857809a65052bdb2ca374ecaebc122a3ea192b99aa2b815
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5f7664f1dafd992a22872bc029e8c48a242452ad5a8df9185a2aa0707b94b14df8724bd2e8c4fe3bd79afedeaf957e838fb1e27ecabb9467ba0ec41806e8f6d8
|
|
7
|
+
data.tar.gz: 97ec7a87a20e40653d8247cf69fd2534febb44b89ea7601355ada885d5f1978753332418ae756c9cf2e934a5534d108f43a850eca1c2ef3dc1c741435243d4ea
|
data/App.qml
CHANGED
|
@@ -82,7 +82,7 @@ ShellRoot {
|
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
|
|
85
|
-
|
|
85
|
+
ZuiRenderer {
|
|
86
86
|
id: renderer
|
|
87
87
|
anchors {
|
|
88
88
|
left: parent.left
|
|
@@ -91,7 +91,7 @@ ShellRoot {
|
|
|
91
91
|
bottom: parent.bottom
|
|
92
92
|
margins: Style.space(24)
|
|
93
93
|
}
|
|
94
|
-
visible:
|
|
94
|
+
visible: renderReady
|
|
95
95
|
bridge: service
|
|
96
96
|
surfaceName: root.activeSurface
|
|
97
97
|
controlId: service.rootId(surfaceName)
|
|
@@ -102,7 +102,8 @@ ShellRoot {
|
|
|
102
102
|
Text {
|
|
103
103
|
anchors.centerIn: parent
|
|
104
104
|
visible: !renderer.visible
|
|
105
|
-
text: service.lastError !== "" ? service.lastError
|
|
105
|
+
text: service.lastError !== "" ? service.lastError
|
|
106
|
+
: "Starting Ruby UI with Zui…"
|
|
106
107
|
color: Color.foreground
|
|
107
108
|
font.family: Style.font.family
|
|
108
109
|
font.pixelSize: Style.font.body
|
data/BarWidget.qml
CHANGED
|
@@ -16,10 +16,10 @@ BarWidget {
|
|
|
16
16
|
implicitWidth: Math.max(Style.bar.iconSlot, renderer.implicitWidth + Style.space(12))
|
|
17
17
|
implicitHeight: barSize
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
ZuiRenderer {
|
|
20
20
|
id: renderer
|
|
21
21
|
anchors.centerIn: parent
|
|
22
|
-
visible:
|
|
22
|
+
visible: renderReady
|
|
23
23
|
bridge: root.rubyService
|
|
24
24
|
surfaceName: root.surfaceName
|
|
25
25
|
controlId: root.rootControlId
|
data/Panel.qml
CHANGED
|
@@ -12,6 +12,9 @@ Item {
|
|
|
12
12
|
property var service: null
|
|
13
13
|
property bool opened: false
|
|
14
14
|
property string surfaceName: "counter"
|
|
15
|
+
readonly property string layerNamespace: manifest && manifest.id
|
|
16
|
+
? String(manifest.id)
|
|
17
|
+
: "omarchy-ui"
|
|
15
18
|
|
|
16
19
|
readonly property string rootControlId: service ? service.rootId(surfaceName) : ""
|
|
17
20
|
|
|
@@ -40,7 +43,7 @@ Item {
|
|
|
40
43
|
anchors { top: true; right: true; bottom: true; left: true }
|
|
41
44
|
color: "transparent"
|
|
42
45
|
exclusionMode: ExclusionMode.Ignore
|
|
43
|
-
WlrLayershell.namespace:
|
|
46
|
+
WlrLayershell.namespace: root.layerNamespace
|
|
44
47
|
WlrLayershell.layer: WlrLayer.Overlay
|
|
45
48
|
WlrLayershell.keyboardFocus: WlrKeyboardFocus.Exclusive
|
|
46
49
|
|
|
@@ -74,10 +77,10 @@ Item {
|
|
|
74
77
|
onClicked: {}
|
|
75
78
|
}
|
|
76
79
|
|
|
77
|
-
|
|
80
|
+
ZuiRenderer {
|
|
78
81
|
id: renderer
|
|
79
82
|
anchors.centerIn: parent
|
|
80
|
-
visible:
|
|
83
|
+
visible: renderReady
|
|
81
84
|
bridge: root.service
|
|
82
85
|
surfaceName: root.surfaceName
|
|
83
86
|
controlId: root.rootControlId
|
|
@@ -94,7 +97,7 @@ Item {
|
|
|
94
97
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
95
98
|
text: root.service && root.service.lastError !== ""
|
|
96
99
|
? root.service.lastError
|
|
97
|
-
: "Starting Ruby UI…"
|
|
100
|
+
: "Starting Ruby UI with Zui…"
|
|
98
101
|
color: Color.foreground
|
|
99
102
|
font.family: Style.font.family
|
|
100
103
|
font.pixelSize: Style.font.body
|