@gtkx/testing 0.17.1 → 0.17.3

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.
package/README.md CHANGED
@@ -10,9 +10,9 @@
10
10
 
11
11
  <p align="center">
12
12
  <a href="https://www.npmjs.com/package/@gtkx/react"><img src="https://img.shields.io/npm/v/@gtkx/react.svg" alt="npm version"></a>
13
- <a href="https://github.com/eugeniodepalo/gtkx/actions"><img src="https://img.shields.io/github/actions/workflow/status/eugeniodepalo/gtkx/ci.yml" alt="CI"></a>
14
- <a href="https://github.com/eugeniodepalo/gtkx/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MPL--2.0-blue.svg" alt="License"></a>
15
- <a href="https://github.com/eugeniodepalo/gtkx/discussions"><img src="https://img.shields.io/badge/discussions-GitHub-blue" alt="GitHub Discussions"></a>
13
+ <a href="https://github.com/gtkx-org/gtkx/actions"><img src="https://img.shields.io/github/actions/workflow/status/eugeniodepalo/gtkx/ci.yml" alt="CI"></a>
14
+ <a href="https://github.com/gtkx-org/gtkx/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MPL--2.0-blue.svg" alt="License"></a>
15
+ <a href="https://github.com/gtkx-org/gtkx/discussions"><img src="https://img.shields.io/badge/discussions-GitHub-blue" alt="GitHub Discussions"></a>
16
16
  </p>
17
17
 
18
18
  ---
@@ -90,16 +90,16 @@ Explore complete applications in the [`examples/`](./examples) directory:
90
90
 
91
91
  ## Documentation
92
92
 
93
- Visit [https://eugeniodepalo.github.io/gtkx](https://eugeniodepalo.github.io/gtkx/) for the full documentation.
93
+ Visit [https://gtkx.dev](https://gtkx.dev) for the full documentation.
94
94
 
95
95
  ## Contributing
96
96
 
97
- Contributions are welcome! Please see the [contributing guidelines](./CONTRIBUTING.md) and check out the [good first issues](https://github.com/eugeniodepalo/gtkx/labels/good%20first%20issue).
97
+ Contributions are welcome! Please see the [contributing guidelines](./CONTRIBUTING.md) and check out the [good first issues](https://github.com/gtkx-org/gtkx/labels/good%20first%20issue).
98
98
 
99
99
  ## Community
100
100
 
101
- - [GitHub Discussions](https://github.com/eugeniodepalo/gtkx/discussions) — Questions, ideas, and general discussion
102
- - [Issue Tracker](https://github.com/eugeniodepalo/gtkx/issues) — Bug reports and feature requests
101
+ - [GitHub Discussions](https://github.com/gtkx-org/gtkx/discussions) — Questions, ideas, and general discussion
102
+ - [Issue Tracker](https://github.com/gtkx-org/gtkx/issues) — Bug reports and feature requests
103
103
 
104
104
  ## License
105
105
 
@@ -1,5 +1,8 @@
1
1
  import * as Gtk from "@gtkx/ffi/gtk";
2
2
  import type { ScreenshotResult, WaitForOptions } from "./types.js";
3
+ /**
4
+ * Options for capturing widget screenshots.
5
+ */
3
6
  export type ScreenshotOptions = Pick<WaitForOptions, "timeout" | "interval">;
4
7
  /**
5
8
  * Captures a screenshot of a GTK widget as a PNG image.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gtkx/testing",
3
- "version": "0.17.1",
3
+ "version": "0.17.3",
4
4
  "description": "Testing utilities for GTKX applications",
5
5
  "keywords": [
6
6
  "gtkx",
@@ -13,13 +13,13 @@
13
13
  "linux",
14
14
  "desktop"
15
15
  ],
16
- "homepage": "https://eugeniodepalo.github.io/gtkx",
16
+ "homepage": "https://gtkx.dev",
17
17
  "bugs": {
18
- "url": "https://github.com/eugeniodepalo/gtkx/issues"
18
+ "url": "https://github.com/gtkx-org/gtkx/issues"
19
19
  },
20
20
  "repository": {
21
21
  "type": "git",
22
- "url": "https://github.com/eugeniodepalo/gtkx.git",
22
+ "url": "https://github.com/gtkx-org/gtkx.git",
23
23
  "directory": "packages/testing"
24
24
  },
25
25
  "license": "MPL-2.0",
@@ -36,13 +36,13 @@
36
36
  "dist"
37
37
  ],
38
38
  "dependencies": {
39
- "@gtkx/react": "0.17.1",
40
- "@gtkx/ffi": "0.17.1"
39
+ "@gtkx/ffi": "0.17.3",
40
+ "@gtkx/react": "0.17.3"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/react-reconciler": "^0.33.0",
44
44
  "react-reconciler": "^0.33.0",
45
- "@gtkx/vitest": "0.17.1"
45
+ "@gtkx/vitest": "0.17.3"
46
46
  },
47
47
  "scripts": {
48
48
  "build": "tsc -b && cp ../../README.md .",