@gtkx/testing 0.4.0 → 0.4.1

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.
Files changed (2) hide show
  1. package/README.md +2 -6
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -57,7 +57,7 @@ const App = () => {
57
57
 
58
58
  return (
59
59
  <ApplicationWindow title="Counter" onCloseRequest={quit}>
60
- <Box orientation={Orientation.VERTICAL} spacing={12} margin={20}>
60
+ <Box orientation={Orientation.VERTICAL} spacing={12}>
61
61
  <Label.Root label={`Count: ${count}`} />
62
62
  <Button label="Increment" onClicked={() => setCount((c) => c + 1)} />
63
63
  </Box>
@@ -117,10 +117,6 @@ User events: `click`, `dblClick`, `type`, `clear`, `tab`, `selectOptions`
117
117
  | [gtk4-demo](examples/gtk4-demo) | Widget showcase |
118
118
  | [todo](examples/todo) | Todo app with tests |
119
119
 
120
- ```bash
121
- cd examples/gtk4-demo && pnpm dev
122
- ```
123
-
124
120
  ## Packages
125
121
 
126
122
  | Package | Description |
@@ -136,7 +132,7 @@ cd examples/gtk4-demo && pnpm dev
136
132
  ## Requirements
137
133
 
138
134
  - Node.js 20+
139
- - GTK4 (`gtk4-devel` on Fedora, `libgtk-4-dev` on Ubuntu)
135
+ - GTK4 Runtime (`gtk4` on Fedora, `libgtk-4-1` on Ubuntu)
140
136
  - Linux
141
137
 
142
138
  ## Contributing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gtkx/testing",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Testing utilities for GTKX applications",
5
5
  "keywords": [
6
6
  "gtk",
@@ -32,9 +32,9 @@
32
32
  "dist"
33
33
  ],
34
34
  "dependencies": {
35
- "@gtkx/ffi": "0.4.0",
36
- "@gtkx/native": "0.4.0",
37
- "@gtkx/react": "0.4.0"
35
+ "@gtkx/native": "0.4.1",
36
+ "@gtkx/ffi": "0.4.1",
37
+ "@gtkx/react": "0.4.1"
38
38
  },
39
39
  "scripts": {
40
40
  "build": "tsc -b && cp ../../README.md .",