@ts-for-gir/gir-module-metadata 4.0.0-beta.44 → 4.0.0-rc.10
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/package.json +4 -4
- package/src/data/gjs.ts +1 -1
- package/src/data/glib.ts +30 -0
- package/src/data/gnome-shell.ts +82 -0
- package/src/data/grilo.ts +26 -0
- package/src/data/gstreamer.ts +32 -0
- package/src/data/gtk4.ts +32 -0
- package/src/data/gwebgl.ts +13 -0
- package/src/data/index.ts +138 -12
- package/src/data/misc.ts +495 -21
- package/src/data/soup.ts +1 -1
- package/src/data/webkit.ts +8 -0
- package/src/types.ts +2 -0
- package/src/data/adw.ts +0 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ts-for-gir/gir-module-metadata",
|
|
3
|
-
"version": "4.0.0-
|
|
3
|
+
"version": "4.0.0-rc.10",
|
|
4
4
|
"description": "Curated metadata (descriptions, licenses, logos, URLs) for GIR namespaces",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"module": "src/index.ts",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"gtk"
|
|
36
36
|
],
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@ts-for-gir/tsconfig": "^4.0.0-
|
|
39
|
-
"@types/node": "^
|
|
40
|
-
"typescript": "^6.0.
|
|
38
|
+
"@ts-for-gir/tsconfig": "^4.0.0-rc.10",
|
|
39
|
+
"@types/node": "^25.6.0",
|
|
40
|
+
"typescript": "^6.0.3"
|
|
41
41
|
}
|
|
42
42
|
}
|
package/src/data/gjs.ts
CHANGED
package/src/data/glib.ts
CHANGED
|
@@ -43,3 +43,33 @@ export const gmodule: GirModuleMetadata = {
|
|
|
43
43
|
description: "Portable method for dynamically loading plug-ins.",
|
|
44
44
|
cDocsUrl: "https://docs.gtk.org/gmodule/",
|
|
45
45
|
};
|
|
46
|
+
|
|
47
|
+
export const glibUnix: GirModuleMetadata = {
|
|
48
|
+
...GLIB_COMMON,
|
|
49
|
+
girId: "GLibUnix-2.0",
|
|
50
|
+
displayName: "GLib Unix",
|
|
51
|
+
description: "Unix-specific GLib API extensions.",
|
|
52
|
+
cDocsUrl: "https://docs.gtk.org/glib-unix/",
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
export const glibWin32: GirModuleMetadata = {
|
|
56
|
+
...GLIB_COMMON,
|
|
57
|
+
girId: "GLibWin32-2.0",
|
|
58
|
+
displayName: "GLib Win32",
|
|
59
|
+
description: "Windows-specific GLib API extensions.",
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
export const gioUnix: GirModuleMetadata = {
|
|
63
|
+
...GLIB_COMMON,
|
|
64
|
+
girId: "GioUnix-2.0",
|
|
65
|
+
displayName: "GIO Unix",
|
|
66
|
+
description: "Unix-specific GIO interfaces and utilities.",
|
|
67
|
+
cDocsUrl: "https://docs.gtk.org/gio-unix/",
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
export const gioWin32: GirModuleMetadata = {
|
|
71
|
+
...GLIB_COMMON,
|
|
72
|
+
girId: "GioWin32-2.0",
|
|
73
|
+
displayName: "GIO Win32",
|
|
74
|
+
description: "Windows-specific GIO interfaces and utilities.",
|
|
75
|
+
};
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import type { GirModuleMetadata } from "../types.ts";
|
|
2
|
+
|
|
3
|
+
const MUTTER_COMMON = {
|
|
4
|
+
authors: "GNOME",
|
|
5
|
+
websiteUrl: "https://mutter.gnome.org",
|
|
6
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/mutter/",
|
|
7
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/mutter.git",
|
|
8
|
+
license: "GPL-2.0-or-later",
|
|
9
|
+
iconFile: "mutter-r.svg",
|
|
10
|
+
category: "GNOME Shell",
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
const SHELL_COMMON = {
|
|
14
|
+
authors: "GNOME",
|
|
15
|
+
websiteUrl: "https://wiki.gnome.org/Projects/GnomeShell",
|
|
16
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/gnome-shell/",
|
|
17
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/gnome-shell.git",
|
|
18
|
+
license: "GPL-2.0-or-later",
|
|
19
|
+
iconFile: "gnome-shell-r.svg",
|
|
20
|
+
category: "GNOME Shell",
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
export const meta: GirModuleMetadata = {
|
|
24
|
+
...MUTTER_COMMON,
|
|
25
|
+
girId: "Meta-18",
|
|
26
|
+
displayName: "Mutter",
|
|
27
|
+
description: "Window management and compositor library for GNOME.",
|
|
28
|
+
cDocsUrl: "https://mutter.gnome.org/meta/",
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
export const clutter: GirModuleMetadata = {
|
|
32
|
+
...MUTTER_COMMON,
|
|
33
|
+
girId: "Clutter-18",
|
|
34
|
+
displayName: "Clutter",
|
|
35
|
+
description: "Scene graph toolkit used by Mutter for rendering.",
|
|
36
|
+
cDocsUrl: "https://mutter.gnome.org/clutter/",
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
export const cogl: GirModuleMetadata = {
|
|
40
|
+
...MUTTER_COMMON,
|
|
41
|
+
girId: "Cogl-18",
|
|
42
|
+
displayName: "Cogl",
|
|
43
|
+
description: "Low-level GPU graphics library used by Mutter.",
|
|
44
|
+
cDocsUrl: "https://mutter.gnome.org/cogl/",
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
export const mtk: GirModuleMetadata = {
|
|
48
|
+
...MUTTER_COMMON,
|
|
49
|
+
girId: "Mtk-18",
|
|
50
|
+
displayName: "Mtk",
|
|
51
|
+
description: "Mutter Toolkit utility library.",
|
|
52
|
+
cDocsUrl: "https://mutter.gnome.org/mtk/",
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
export const st: GirModuleMetadata = {
|
|
56
|
+
...SHELL_COMMON,
|
|
57
|
+
girId: "St-18",
|
|
58
|
+
displayName: "St",
|
|
59
|
+
description: "GNOME Shell UI toolkit for building shell extensions.",
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
export const shell: GirModuleMetadata = {
|
|
63
|
+
...SHELL_COMMON,
|
|
64
|
+
girId: "Shell-18",
|
|
65
|
+
displayName: "Shell",
|
|
66
|
+
description: "Core library of the GNOME Shell desktop.",
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
export const gvc: GirModuleMetadata = {
|
|
70
|
+
...SHELL_COMMON,
|
|
71
|
+
girId: "Gvc-1.0",
|
|
72
|
+
displayName: "Gvc",
|
|
73
|
+
description: "GNOME volume control library.",
|
|
74
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/libgnome-volume-control/",
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
export const shew: GirModuleMetadata = {
|
|
78
|
+
...SHELL_COMMON,
|
|
79
|
+
girId: "Shew-0",
|
|
80
|
+
displayName: "Shew",
|
|
81
|
+
description: "Shell Extensions Helper window library.",
|
|
82
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { GirModuleMetadata } from "../types.ts";
|
|
2
|
+
|
|
3
|
+
const GRILO_COMMON = {
|
|
4
|
+
authors: "GNOME",
|
|
5
|
+
websiteUrl: "https://wiki.gnome.org/Projects/Grilo",
|
|
6
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/grilo/",
|
|
7
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/grilo.git",
|
|
8
|
+
license: "LGPL-2.1-or-later",
|
|
9
|
+
category: "Multimedia",
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
export const grl: GirModuleMetadata = {
|
|
13
|
+
...GRILO_COMMON,
|
|
14
|
+
girId: "Grl-0.3",
|
|
15
|
+
displayName: "Grilo",
|
|
16
|
+
description: "Framework for discovering and browsing media content.",
|
|
17
|
+
cDocsUrl: "https://gnome.pages.gitlab.gnome.org/grilo/",
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export const grlNet: GirModuleMetadata = {
|
|
21
|
+
...GRILO_COMMON,
|
|
22
|
+
girId: "GrlNet-0.3",
|
|
23
|
+
displayName: "Grilo Net",
|
|
24
|
+
description: "Networking support for the Grilo media discovery framework.",
|
|
25
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/grilo-plugins/",
|
|
26
|
+
};
|
package/src/data/gstreamer.ts
CHANGED
|
@@ -72,3 +72,35 @@ export const gstController: GirModuleMetadata = {
|
|
|
72
72
|
description: "GStreamer dynamic parameter control.",
|
|
73
73
|
cDocsUrl: "https://gstreamer.freedesktop.org/documentation/controller/index.html",
|
|
74
74
|
};
|
|
75
|
+
|
|
76
|
+
export const gstPlayer: GirModuleMetadata = {
|
|
77
|
+
...GST_COMMON,
|
|
78
|
+
girId: "GstPlayer-1.0",
|
|
79
|
+
displayName: "GStreamer Player",
|
|
80
|
+
description: "High-level media playback API.",
|
|
81
|
+
cDocsUrl: "https://gstreamer.freedesktop.org/documentation/player/index.html",
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
export const gstGL: GirModuleMetadata = {
|
|
85
|
+
...GST_COMMON,
|
|
86
|
+
girId: "GstGL-1.0",
|
|
87
|
+
displayName: "GStreamer GL",
|
|
88
|
+
description: "GStreamer OpenGL integration library.",
|
|
89
|
+
cDocsUrl: "https://gstreamer.freedesktop.org/documentation/gl/index.html",
|
|
90
|
+
};
|
|
91
|
+
|
|
92
|
+
export const gstWebRTC: GirModuleMetadata = {
|
|
93
|
+
...GST_COMMON,
|
|
94
|
+
girId: "GstWebRTC-1.0",
|
|
95
|
+
displayName: "GStreamer WebRTC",
|
|
96
|
+
description: "WebRTC support for GStreamer.",
|
|
97
|
+
cDocsUrl: "https://gstreamer.freedesktop.org/documentation/webrtc/index.html",
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
export const ges: GirModuleMetadata = {
|
|
101
|
+
...GST_COMMON,
|
|
102
|
+
girId: "GES-1.0",
|
|
103
|
+
displayName: "GES",
|
|
104
|
+
description: "GStreamer Editing Services for non-linear video editing.",
|
|
105
|
+
cDocsUrl: "https://gstreamer.freedesktop.org/documentation/gst-editing-services/index.html",
|
|
106
|
+
};
|
package/src/data/gtk4.ts
CHANGED
|
@@ -36,3 +36,35 @@ export const gsk4: GirModuleMetadata = {
|
|
|
36
36
|
description: "The GTK rendering API.",
|
|
37
37
|
cDocsUrl: "https://docs.gtk.org/gsk4/",
|
|
38
38
|
};
|
|
39
|
+
|
|
40
|
+
export const gdkMacos: GirModuleMetadata = {
|
|
41
|
+
...GTK_COMMON,
|
|
42
|
+
girId: "GdkMacos-4.0",
|
|
43
|
+
displayName: "GDK macOS",
|
|
44
|
+
description: "GDK backend for macOS.",
|
|
45
|
+
cDocsUrl: "https://docs.gtk.org/gdk4-macos/",
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
export const gdkWin32: GirModuleMetadata = {
|
|
49
|
+
...GTK_COMMON,
|
|
50
|
+
girId: "GdkWin32-4.0",
|
|
51
|
+
displayName: "GDK Win32",
|
|
52
|
+
description: "GDK backend for Windows.",
|
|
53
|
+
cDocsUrl: "https://docs.gtk.org/gdk4-win32/",
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
export const gdkWayland: GirModuleMetadata = {
|
|
57
|
+
...GTK_COMMON,
|
|
58
|
+
girId: "GdkWayland-4.0",
|
|
59
|
+
displayName: "GDK Wayland",
|
|
60
|
+
description: "GDK backend for Wayland.",
|
|
61
|
+
cDocsUrl: "https://docs.gtk.org/gdk4-wayland/",
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
export const gdkX11: GirModuleMetadata = {
|
|
65
|
+
...GTK_COMMON,
|
|
66
|
+
girId: "GdkX11-4.0",
|
|
67
|
+
displayName: "GDK X11",
|
|
68
|
+
description: "GDK backend for X11.",
|
|
69
|
+
cDocsUrl: "https://docs.gtk.org/gdk4-x11/",
|
|
70
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { GirModuleMetadata } from "../types.ts";
|
|
2
|
+
|
|
3
|
+
export const gwebgl: GirModuleMetadata = {
|
|
4
|
+
girId: "Gwebgl-0.1",
|
|
5
|
+
displayName: "Gwebgl",
|
|
6
|
+
description: "WebGL bindings for GJS.",
|
|
7
|
+
authors: "gjsify",
|
|
8
|
+
websiteUrl: "https://github.com/gjsify/gjsify",
|
|
9
|
+
browseUrl: "https://github.com/gjsify/gjsify/tree/main/packages/dom/webgl",
|
|
10
|
+
repositoryUrl: "https://github.com/gjsify/gjsify.git",
|
|
11
|
+
license: "MIT",
|
|
12
|
+
category: "GJS",
|
|
13
|
+
};
|
package/src/data/index.ts
CHANGED
|
@@ -1,31 +1,100 @@
|
|
|
1
1
|
import type { GirModuleMetadata } from "../types.ts";
|
|
2
|
-
import { adw } from "./adw.ts";
|
|
3
2
|
import { cairo } from "./cairo.ts";
|
|
4
3
|
import { gdkPixbuf } from "./gdk-pixbuf.ts";
|
|
5
4
|
import { gjs } from "./gjs.ts";
|
|
6
|
-
import { gio, glib, gmodule, gobject } from "./glib.ts";
|
|
5
|
+
import { gio, gioUnix, gioWin32, glib, glibUnix, glibWin32, gmodule, gobject } from "./glib.ts";
|
|
6
|
+
import { clutter, cogl, gvc, meta, mtk, shell, shew, st } from "./gnome-shell.ts";
|
|
7
7
|
import { graphene } from "./graphene.ts";
|
|
8
|
-
import {
|
|
8
|
+
import { grl, grlNet } from "./grilo.ts";
|
|
9
|
+
import {
|
|
10
|
+
ges,
|
|
11
|
+
gst,
|
|
12
|
+
gstApp,
|
|
13
|
+
gstAudio,
|
|
14
|
+
gstBase,
|
|
15
|
+
gstController,
|
|
16
|
+
gstGL,
|
|
17
|
+
gstPbutils,
|
|
18
|
+
gstPlayer,
|
|
19
|
+
gstTag,
|
|
20
|
+
gstVideo,
|
|
21
|
+
gstWebRTC,
|
|
22
|
+
} from "./gstreamer.ts";
|
|
9
23
|
import { gdk3, gtk3 } from "./gtk3.ts";
|
|
10
|
-
import { gdk4, gsk4, gtk4 } from "./gtk4.ts";
|
|
24
|
+
import { gdk4, gdkMacos, gdkWayland, gdkWin32, gdkX11, gsk4, gtk4 } from "./gtk4.ts";
|
|
25
|
+
import { gwebgl } from "./gwebgl.ts";
|
|
11
26
|
import { freetype2, harfBuzz } from "./harfbuzz.ts";
|
|
12
|
-
import {
|
|
27
|
+
import {
|
|
28
|
+
adw,
|
|
29
|
+
appStream,
|
|
30
|
+
atk,
|
|
31
|
+
atspi,
|
|
32
|
+
dbus,
|
|
33
|
+
dex,
|
|
34
|
+
flatpak,
|
|
35
|
+
gck,
|
|
36
|
+
gcr,
|
|
37
|
+
gdesktopEnums,
|
|
38
|
+
geocodeGlib,
|
|
39
|
+
gl,
|
|
40
|
+
goa,
|
|
41
|
+
gssdp,
|
|
42
|
+
gstSdp,
|
|
43
|
+
gtksource5,
|
|
44
|
+
gudev,
|
|
45
|
+
gupnp,
|
|
46
|
+
gweather,
|
|
47
|
+
json,
|
|
48
|
+
jsonrpc,
|
|
49
|
+
libosinfo,
|
|
50
|
+
libxml2,
|
|
51
|
+
nm,
|
|
52
|
+
notify,
|
|
53
|
+
panel,
|
|
54
|
+
peas,
|
|
55
|
+
polkit,
|
|
56
|
+
polkitAgent,
|
|
57
|
+
poppler,
|
|
58
|
+
rest,
|
|
59
|
+
rsvg,
|
|
60
|
+
secret,
|
|
61
|
+
shumate,
|
|
62
|
+
spelling,
|
|
63
|
+
template,
|
|
64
|
+
tsparql,
|
|
65
|
+
vte,
|
|
66
|
+
win32,
|
|
67
|
+
wnck,
|
|
68
|
+
xdp,
|
|
69
|
+
xdpGtk4,
|
|
70
|
+
xfixes,
|
|
71
|
+
xlib,
|
|
72
|
+
} from "./misc.ts";
|
|
13
73
|
import { pango, pangoCairo } from "./pango.ts";
|
|
14
74
|
import { soup3 } from "./soup.ts";
|
|
15
|
-
import { javaScriptCore6, webkit6, webkitWebExtension6 } from "./webkit.ts";
|
|
75
|
+
import { javaScriptCore6, webkit6, webkitWebExtension6, webkitWebProcessExtension6 } from "./webkit.ts";
|
|
16
76
|
|
|
17
77
|
const ALL_ENTRIES: GirModuleMetadata[] = [
|
|
18
78
|
// GJS core
|
|
19
79
|
gjs,
|
|
80
|
+
gwebgl,
|
|
20
81
|
// GLib family
|
|
21
82
|
glib,
|
|
22
83
|
gobject,
|
|
23
84
|
gio,
|
|
24
85
|
gmodule,
|
|
86
|
+
glibUnix,
|
|
87
|
+
glibWin32,
|
|
88
|
+
gioUnix,
|
|
89
|
+
gioWin32,
|
|
25
90
|
// GTK 4
|
|
26
91
|
gtk4,
|
|
27
92
|
gdk4,
|
|
28
93
|
gsk4,
|
|
94
|
+
gdkMacos,
|
|
95
|
+
gdkWin32,
|
|
96
|
+
gdkWayland,
|
|
97
|
+
gdkX11,
|
|
29
98
|
// GTK 3
|
|
30
99
|
gtk3,
|
|
31
100
|
gdk3,
|
|
@@ -36,6 +105,7 @@ const ALL_ENTRIES: GirModuleMetadata[] = [
|
|
|
36
105
|
gdkPixbuf,
|
|
37
106
|
graphene,
|
|
38
107
|
cairo,
|
|
108
|
+
rsvg,
|
|
39
109
|
// Text rendering
|
|
40
110
|
harfBuzz,
|
|
41
111
|
freetype2,
|
|
@@ -48,20 +118,76 @@ const ALL_ENTRIES: GirModuleMetadata[] = [
|
|
|
48
118
|
gstTag,
|
|
49
119
|
gstApp,
|
|
50
120
|
gstController,
|
|
121
|
+
gstPlayer,
|
|
122
|
+
gstGL,
|
|
123
|
+
gstWebRTC,
|
|
124
|
+
ges,
|
|
125
|
+
grl,
|
|
126
|
+
grlNet,
|
|
127
|
+
// GNOME Shell
|
|
128
|
+
meta,
|
|
129
|
+
clutter,
|
|
130
|
+
cogl,
|
|
131
|
+
mtk,
|
|
132
|
+
st,
|
|
133
|
+
shell,
|
|
134
|
+
gvc,
|
|
135
|
+
shew,
|
|
51
136
|
// Web
|
|
52
137
|
webkit6,
|
|
53
138
|
webkitWebExtension6,
|
|
139
|
+
webkitWebProcessExtension6,
|
|
54
140
|
javaScriptCore6,
|
|
55
|
-
|
|
56
|
-
|
|
141
|
+
goa,
|
|
142
|
+
// Networking
|
|
57
143
|
soup3,
|
|
144
|
+
rest,
|
|
145
|
+
nm,
|
|
146
|
+
gupnp,
|
|
147
|
+
gssdp,
|
|
148
|
+
// Data & Markup
|
|
149
|
+
json,
|
|
150
|
+
libxml2,
|
|
151
|
+
tsparql,
|
|
152
|
+
template,
|
|
153
|
+
jsonrpc,
|
|
154
|
+
// Security
|
|
155
|
+
secret,
|
|
156
|
+
gcr,
|
|
157
|
+
gck,
|
|
158
|
+
polkit,
|
|
159
|
+
polkitAgent,
|
|
160
|
+
// System
|
|
161
|
+
gudev,
|
|
162
|
+
flatpak,
|
|
163
|
+
appStream,
|
|
164
|
+
libosinfo,
|
|
165
|
+
xdp,
|
|
166
|
+
xdpGtk4,
|
|
167
|
+
// GNOME Desktop
|
|
168
|
+
adw,
|
|
58
169
|
gtksource5,
|
|
59
170
|
shumate,
|
|
60
171
|
notify,
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
172
|
+
vte,
|
|
173
|
+
panel,
|
|
174
|
+
peas,
|
|
175
|
+
spelling,
|
|
176
|
+
gweather,
|
|
177
|
+
geocodeGlib,
|
|
178
|
+
poppler,
|
|
179
|
+
wnck,
|
|
180
|
+
dex,
|
|
181
|
+
atspi,
|
|
182
|
+
atk,
|
|
183
|
+
gdesktopEnums,
|
|
184
|
+
// Low-level / transitive
|
|
185
|
+
dbus,
|
|
186
|
+
gl,
|
|
187
|
+
gstSdp,
|
|
188
|
+
win32,
|
|
189
|
+
xfixes,
|
|
190
|
+
xlib,
|
|
65
191
|
];
|
|
66
192
|
|
|
67
193
|
const METADATA = new Map<string, GirModuleMetadata>();
|
package/src/data/misc.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import type { GirModuleMetadata } from "../types.ts";
|
|
2
2
|
|
|
3
|
+
// --- GNOME Desktop ---
|
|
4
|
+
|
|
3
5
|
export const gtksource5: GirModuleMetadata = {
|
|
4
6
|
girId: "GtkSource-5",
|
|
5
7
|
displayName: "GtkSourceView",
|
|
@@ -11,7 +13,8 @@ export const gtksource5: GirModuleMetadata = {
|
|
|
11
13
|
repositoryUrl: "https://gitlab.gnome.org/GNOME/gtksourceview.git",
|
|
12
14
|
license: "LGPL-2.1-or-later",
|
|
13
15
|
cDocsUrl: "https://gnome.pages.gitlab.gnome.org/gtksourceview/gtksourceview5/",
|
|
14
|
-
|
|
16
|
+
iconFile: "gtksourceview-r.svg",
|
|
17
|
+
category: "GNOME Desktop",
|
|
15
18
|
};
|
|
16
19
|
|
|
17
20
|
export const shumate: GirModuleMetadata = {
|
|
@@ -24,7 +27,8 @@ export const shumate: GirModuleMetadata = {
|
|
|
24
27
|
repositoryUrl: "https://gitlab.gnome.org/GNOME/libshumate.git",
|
|
25
28
|
license: "LGPL-2.1-or-later",
|
|
26
29
|
cDocsUrl: "https://gnome.pages.gitlab.gnome.org/libshumate/",
|
|
27
|
-
|
|
30
|
+
iconFile: "libshumate-r.svg",
|
|
31
|
+
category: "GNOME Desktop",
|
|
28
32
|
};
|
|
29
33
|
|
|
30
34
|
export const notify: GirModuleMetadata = {
|
|
@@ -36,21 +40,173 @@ export const notify: GirModuleMetadata = {
|
|
|
36
40
|
browseUrl: "https://gitlab.gnome.org/GNOME/libnotify/",
|
|
37
41
|
repositoryUrl: "https://gitlab.gnome.org/GNOME/libnotify.git",
|
|
38
42
|
license: "LGPL-2.1-or-later",
|
|
39
|
-
category: "GNOME
|
|
43
|
+
category: "GNOME Desktop",
|
|
40
44
|
};
|
|
41
45
|
|
|
42
|
-
export const
|
|
43
|
-
girId: "
|
|
44
|
-
displayName: "
|
|
45
|
-
description: "
|
|
46
|
+
export const vte: GirModuleMetadata = {
|
|
47
|
+
girId: "Vte-3.91",
|
|
48
|
+
displayName: "VTE",
|
|
49
|
+
description: "Terminal emulator widget for GTK.",
|
|
46
50
|
authors: "GNOME",
|
|
47
|
-
websiteUrl: "https://wiki.gnome.org/
|
|
48
|
-
browseUrl: "https://gitlab.gnome.org/GNOME/
|
|
49
|
-
repositoryUrl: "https://gitlab.gnome.org/GNOME/
|
|
51
|
+
websiteUrl: "https://wiki.gnome.org/Apps/Terminal/VTE",
|
|
52
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/vte/",
|
|
53
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/vte.git",
|
|
54
|
+
license: "LGPL-3.0-or-later",
|
|
55
|
+
cDocsUrl: "https://gnome.pages.gitlab.gnome.org/vte/vte/",
|
|
56
|
+
category: "GNOME Desktop",
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
export const panel: GirModuleMetadata = {
|
|
60
|
+
girId: "Panel-1",
|
|
61
|
+
displayName: "Panel",
|
|
62
|
+
description: "IDE panel and dock library for GTK.",
|
|
63
|
+
authors: "GNOME",
|
|
64
|
+
websiteUrl: "https://gitlab.gnome.org/GNOME/libpanel",
|
|
65
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/libpanel/",
|
|
66
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/libpanel.git",
|
|
67
|
+
license: "LGPL-3.0-or-later",
|
|
68
|
+
cDocsUrl: "https://gnome.pages.gitlab.gnome.org/libpanel/",
|
|
69
|
+
category: "GNOME Desktop",
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
export const peas: GirModuleMetadata = {
|
|
73
|
+
girId: "Peas-2",
|
|
74
|
+
displayName: "Libpeas",
|
|
75
|
+
description: "Application plugin engine.",
|
|
76
|
+
authors: "GNOME",
|
|
77
|
+
websiteUrl: "https://wiki.gnome.org/Projects/Libpeas",
|
|
78
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/libpeas/",
|
|
79
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/libpeas.git",
|
|
80
|
+
license: "LGPL-2.1-or-later",
|
|
81
|
+
cDocsUrl: "https://gnome.pages.gitlab.gnome.org/libpeas/libpeas-2/",
|
|
82
|
+
category: "GNOME Desktop",
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
export const spelling: GirModuleMetadata = {
|
|
86
|
+
girId: "Spelling-1",
|
|
87
|
+
displayName: "Spelling",
|
|
88
|
+
description: "Spell checking library for GTK.",
|
|
89
|
+
authors: "GNOME",
|
|
90
|
+
websiteUrl: "https://gitlab.gnome.org/GNOME/libspelling",
|
|
91
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/libspelling/",
|
|
92
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/libspelling.git",
|
|
93
|
+
license: "LGPL-2.1-or-later",
|
|
94
|
+
cDocsUrl: "https://gnome.pages.gitlab.gnome.org/libspelling/",
|
|
95
|
+
category: "GNOME Desktop",
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
export const adw: GirModuleMetadata = {
|
|
99
|
+
girId: "Adw-1",
|
|
100
|
+
displayName: "Libadwaita",
|
|
101
|
+
description: "Building blocks for modern adaptive GNOME applications.",
|
|
102
|
+
authors: "GNOME",
|
|
103
|
+
websiteUrl: "https://gnome.pages.gitlab.gnome.org/libadwaita/",
|
|
104
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/libadwaita/",
|
|
105
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/libadwaita.git",
|
|
106
|
+
license: "LGPL-2.1-or-later",
|
|
107
|
+
cDocsUrl: "https://gnome.pages.gitlab.gnome.org/libadwaita/doc/",
|
|
108
|
+
category: "GNOME Desktop",
|
|
109
|
+
};
|
|
110
|
+
|
|
111
|
+
export const gweather: GirModuleMetadata = {
|
|
112
|
+
girId: "GWeather-4.0",
|
|
113
|
+
displayName: "GWeather",
|
|
114
|
+
description: "Weather data access library.",
|
|
115
|
+
authors: "GNOME",
|
|
116
|
+
websiteUrl: "https://wiki.gnome.org/Projects/LibGWeather",
|
|
117
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/libgweather/",
|
|
118
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/libgweather.git",
|
|
119
|
+
license: "GPL-2.0-or-later",
|
|
120
|
+
cDocsUrl: "https://gnome.pages.gitlab.gnome.org/libgweather/",
|
|
121
|
+
category: "GNOME Desktop",
|
|
122
|
+
};
|
|
123
|
+
|
|
124
|
+
export const geocodeGlib: GirModuleMetadata = {
|
|
125
|
+
girId: "GeocodeGlib-2.0",
|
|
126
|
+
displayName: "Geocode-GLib",
|
|
127
|
+
description: "Geocoding and reverse geocoding helper library.",
|
|
128
|
+
authors: "GNOME",
|
|
129
|
+
websiteUrl: "https://gitlab.gnome.org/GNOME/geocode-glib",
|
|
130
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/geocode-glib/",
|
|
131
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/geocode-glib.git",
|
|
132
|
+
license: "LGPL-2.0-or-later",
|
|
133
|
+
category: "GNOME Desktop",
|
|
134
|
+
};
|
|
135
|
+
|
|
136
|
+
export const poppler: GirModuleMetadata = {
|
|
137
|
+
girId: "Poppler-0.18",
|
|
138
|
+
displayName: "Poppler",
|
|
139
|
+
description: "PDF rendering library.",
|
|
140
|
+
authors: "freedesktop.org",
|
|
141
|
+
websiteUrl: "https://poppler.freedesktop.org",
|
|
142
|
+
browseUrl: "https://gitlab.freedesktop.org/poppler/poppler/",
|
|
143
|
+
repositoryUrl: "https://gitlab.freedesktop.org/poppler/poppler.git",
|
|
144
|
+
license: "GPL-2.0-or-later",
|
|
145
|
+
cDocsUrl: "https://poppler.freedesktop.org/api/glib/",
|
|
146
|
+
category: "GNOME Desktop",
|
|
147
|
+
};
|
|
148
|
+
|
|
149
|
+
export const wnck: GirModuleMetadata = {
|
|
150
|
+
girId: "Wnck-3.0",
|
|
151
|
+
displayName: "Wnck",
|
|
152
|
+
description: "Window Navigator Construction Kit.",
|
|
153
|
+
authors: "GNOME",
|
|
154
|
+
websiteUrl: "https://gitlab.gnome.org/GNOME/libwnck",
|
|
155
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/libwnck/",
|
|
156
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/libwnck.git",
|
|
157
|
+
license: "LGPL-2.0-or-later",
|
|
158
|
+
category: "GNOME Desktop",
|
|
159
|
+
};
|
|
160
|
+
|
|
161
|
+
export const dex: GirModuleMetadata = {
|
|
162
|
+
girId: "Dex-1",
|
|
163
|
+
displayName: "Dex",
|
|
164
|
+
description: "Deferred execution library for GLib.",
|
|
165
|
+
authors: "GNOME",
|
|
166
|
+
websiteUrl: "https://gitlab.gnome.org/GNOME/libdex",
|
|
167
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/libdex/",
|
|
168
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/libdex.git",
|
|
169
|
+
license: "LGPL-2.1-or-later",
|
|
170
|
+
cDocsUrl: "https://gnome.pages.gitlab.gnome.org/libdex/",
|
|
171
|
+
category: "GNOME Desktop",
|
|
172
|
+
};
|
|
173
|
+
|
|
174
|
+
export const atspi: GirModuleMetadata = {
|
|
175
|
+
girId: "Atspi-2.0",
|
|
176
|
+
displayName: "AT-SPI",
|
|
177
|
+
description: "Assistive Technology Service Provider Interface.",
|
|
178
|
+
authors: "GNOME",
|
|
179
|
+
websiteUrl: "https://wiki.gnome.org/Accessibility",
|
|
180
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/at-spi2-core/",
|
|
181
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/at-spi2-core.git",
|
|
50
182
|
license: "LGPL-2.1-or-later",
|
|
51
|
-
|
|
183
|
+
cDocsUrl: "https://gnome.pages.gitlab.gnome.org/at-spi2-core/libatspi/",
|
|
184
|
+
category: "GNOME Desktop",
|
|
185
|
+
};
|
|
186
|
+
|
|
187
|
+
export const atk: GirModuleMetadata = {
|
|
188
|
+
girId: "Atk-1.0",
|
|
189
|
+
displayName: "ATK",
|
|
190
|
+
description: "Accessibility Toolkit interfaces (legacy, superseded by AT-SPI).",
|
|
191
|
+
authors: "GNOME",
|
|
192
|
+
websiteUrl: "https://gitlab.gnome.org/GNOME/at-spi2-core",
|
|
193
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/at-spi2-core/",
|
|
194
|
+
license: "LGPL-2.0-or-later",
|
|
195
|
+
category: "GNOME Desktop",
|
|
52
196
|
};
|
|
53
197
|
|
|
198
|
+
export const gdesktopEnums: GirModuleMetadata = {
|
|
199
|
+
girId: "GDesktopEnums-3.0",
|
|
200
|
+
displayName: "GDesktopEnums",
|
|
201
|
+
description: "GNOME desktop settings enumerations.",
|
|
202
|
+
authors: "GNOME",
|
|
203
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/gsettings-desktop-schemas/",
|
|
204
|
+
license: "LGPL-2.1-or-later",
|
|
205
|
+
category: "GNOME Desktop",
|
|
206
|
+
};
|
|
207
|
+
|
|
208
|
+
// --- Data & Markup ---
|
|
209
|
+
|
|
54
210
|
export const json: GirModuleMetadata = {
|
|
55
211
|
girId: "Json-1.0",
|
|
56
212
|
displayName: "JSON-GLib",
|
|
@@ -61,9 +217,127 @@ export const json: GirModuleMetadata = {
|
|
|
61
217
|
repositoryUrl: "https://gitlab.gnome.org/GNOME/json-glib.git",
|
|
62
218
|
license: "LGPL-2.1-or-later",
|
|
63
219
|
cDocsUrl: "https://gnome.pages.gitlab.gnome.org/json-glib/",
|
|
64
|
-
category: "
|
|
220
|
+
category: "Data & Markup",
|
|
221
|
+
};
|
|
222
|
+
|
|
223
|
+
export const libxml2: GirModuleMetadata = {
|
|
224
|
+
girId: "libxml2-2.0",
|
|
225
|
+
displayName: "libxml2",
|
|
226
|
+
description: "XML parsing and manipulation library.",
|
|
227
|
+
authors: "Daniel Veillard",
|
|
228
|
+
websiteUrl: "https://gitlab.gnome.org/GNOME/libxml2",
|
|
229
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/libxml2/",
|
|
230
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/libxml2.git",
|
|
231
|
+
license: "MIT",
|
|
232
|
+
category: "Data & Markup",
|
|
233
|
+
};
|
|
234
|
+
|
|
235
|
+
export const tsparql: GirModuleMetadata = {
|
|
236
|
+
girId: "Tsparql-3.0",
|
|
237
|
+
displayName: "Tracker SPARQL",
|
|
238
|
+
description: "SPARQL database and query library.",
|
|
239
|
+
authors: "GNOME",
|
|
240
|
+
websiteUrl: "https://gnome.pages.gitlab.gnome.org/tracker/",
|
|
241
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/tracker/",
|
|
242
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/tracker.git",
|
|
243
|
+
license: "LGPL-2.1-or-later",
|
|
244
|
+
cDocsUrl: "https://gnome.pages.gitlab.gnome.org/tracker/docs/developer/",
|
|
245
|
+
iconFile: "tracker-r.svg",
|
|
246
|
+
category: "Data & Markup",
|
|
247
|
+
};
|
|
248
|
+
|
|
249
|
+
export const template: GirModuleMetadata = {
|
|
250
|
+
girId: "Template-1.0",
|
|
251
|
+
displayName: "Template-GLib",
|
|
252
|
+
description: "Template rendering library for GLib.",
|
|
253
|
+
authors: "GNOME",
|
|
254
|
+
websiteUrl: "https://gitlab.gnome.org/GNOME/template-glib",
|
|
255
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/template-glib/",
|
|
256
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/template-glib.git",
|
|
257
|
+
license: "LGPL-2.1-or-later",
|
|
258
|
+
category: "Data & Markup",
|
|
259
|
+
};
|
|
260
|
+
|
|
261
|
+
export const jsonrpc: GirModuleMetadata = {
|
|
262
|
+
girId: "Jsonrpc-1.0",
|
|
263
|
+
displayName: "Jsonrpc-GLib",
|
|
264
|
+
description: "JSON-RPC protocol library.",
|
|
265
|
+
authors: "GNOME",
|
|
266
|
+
websiteUrl: "https://gitlab.gnome.org/GNOME/jsonrpc-glib",
|
|
267
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/jsonrpc-glib/",
|
|
268
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/jsonrpc-glib.git",
|
|
269
|
+
license: "LGPL-2.1-or-later",
|
|
270
|
+
category: "Data & Markup",
|
|
271
|
+
};
|
|
272
|
+
|
|
273
|
+
// --- Security ---
|
|
274
|
+
|
|
275
|
+
export const secret: GirModuleMetadata = {
|
|
276
|
+
girId: "Secret-1",
|
|
277
|
+
displayName: "Libsecret",
|
|
278
|
+
description: "A library for accessing the Secret Service API of the freedesktop.org project.",
|
|
279
|
+
authors: "GNOME",
|
|
280
|
+
websiteUrl: "https://wiki.gnome.org/Projects/Libsecret",
|
|
281
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/libsecret/",
|
|
282
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/libsecret.git",
|
|
283
|
+
license: "LGPL-2.1-or-later",
|
|
284
|
+
category: "Security",
|
|
285
|
+
};
|
|
286
|
+
|
|
287
|
+
export const gcr: GirModuleMetadata = {
|
|
288
|
+
girId: "Gcr-4",
|
|
289
|
+
displayName: "Gcr",
|
|
290
|
+
description: "Cryptographic and certificate UI library.",
|
|
291
|
+
authors: "GNOME",
|
|
292
|
+
websiteUrl: "https://gitlab.gnome.org/GNOME/gcr",
|
|
293
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/gcr/",
|
|
294
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/gcr.git",
|
|
295
|
+
license: "LGPL-2.1-or-later",
|
|
296
|
+
cDocsUrl: "https://gnome.pages.gitlab.gnome.org/gcr/gcr-4/",
|
|
297
|
+
category: "Security",
|
|
298
|
+
};
|
|
299
|
+
|
|
300
|
+
export const gck: GirModuleMetadata = {
|
|
301
|
+
girId: "Gck-2",
|
|
302
|
+
displayName: "Gck",
|
|
303
|
+
description: "GObject wrapper for PKCS#11.",
|
|
304
|
+
authors: "GNOME",
|
|
305
|
+
websiteUrl: "https://gitlab.gnome.org/GNOME/gcr",
|
|
306
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/gcr/",
|
|
307
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/gcr.git",
|
|
308
|
+
license: "LGPL-2.1-or-later",
|
|
309
|
+
cDocsUrl: "https://gnome.pages.gitlab.gnome.org/gcr/gck-2/",
|
|
310
|
+
category: "Security",
|
|
311
|
+
};
|
|
312
|
+
|
|
313
|
+
export const polkit: GirModuleMetadata = {
|
|
314
|
+
girId: "Polkit-1.0",
|
|
315
|
+
displayName: "Polkit",
|
|
316
|
+
description: "Application-level toolkit for defining and handling authorization policies.",
|
|
317
|
+
authors: "freedesktop.org",
|
|
318
|
+
websiteUrl: "https://gitlab.freedesktop.org/polkit/polkit",
|
|
319
|
+
browseUrl: "https://gitlab.freedesktop.org/polkit/polkit/",
|
|
320
|
+
repositoryUrl: "https://gitlab.freedesktop.org/polkit/polkit.git",
|
|
321
|
+
license: "LGPL-2.0-or-later",
|
|
322
|
+
iconFile: "polkit-r.svg",
|
|
323
|
+
category: "Security",
|
|
324
|
+
};
|
|
325
|
+
|
|
326
|
+
export const polkitAgent: GirModuleMetadata = {
|
|
327
|
+
girId: "PolkitAgent-1.0",
|
|
328
|
+
displayName: "Polkit Agent",
|
|
329
|
+
description: "Polkit authentication agent library.",
|
|
330
|
+
authors: "freedesktop.org",
|
|
331
|
+
websiteUrl: "https://gitlab.freedesktop.org/polkit/polkit",
|
|
332
|
+
browseUrl: "https://gitlab.freedesktop.org/polkit/polkit/",
|
|
333
|
+
repositoryUrl: "https://gitlab.freedesktop.org/polkit/polkit.git",
|
|
334
|
+
license: "LGPL-2.0-or-later",
|
|
335
|
+
iconFile: "polkit-r.svg",
|
|
336
|
+
category: "Security",
|
|
65
337
|
};
|
|
66
338
|
|
|
339
|
+
// --- Networking ---
|
|
340
|
+
|
|
67
341
|
export const nm: GirModuleMetadata = {
|
|
68
342
|
girId: "NM-1.0",
|
|
69
343
|
displayName: "NetworkManager",
|
|
@@ -74,17 +348,217 @@ export const nm: GirModuleMetadata = {
|
|
|
74
348
|
repositoryUrl: "https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git",
|
|
75
349
|
license: "LGPL-2.1-or-later",
|
|
76
350
|
cDocsUrl: "https://networkmanager.dev/docs/api/latest/",
|
|
77
|
-
category: "
|
|
351
|
+
category: "Networking",
|
|
78
352
|
};
|
|
79
353
|
|
|
80
|
-
export const
|
|
81
|
-
girId: "
|
|
82
|
-
displayName: "
|
|
83
|
-
description: "
|
|
354
|
+
export const gupnp: GirModuleMetadata = {
|
|
355
|
+
girId: "GUPnP-1.6",
|
|
356
|
+
displayName: "GUPnP",
|
|
357
|
+
description: "UPnP framework based on GObject and libsoup.",
|
|
358
|
+
authors: "GNOME",
|
|
359
|
+
websiteUrl: "https://wiki.gnome.org/Projects/GUPnP",
|
|
360
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/gupnp/",
|
|
361
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/gupnp.git",
|
|
362
|
+
license: "LGPL-2.1-or-later",
|
|
363
|
+
cDocsUrl: "https://gnome.pages.gitlab.gnome.org/gupnp/docs/",
|
|
364
|
+
category: "Networking",
|
|
365
|
+
};
|
|
366
|
+
|
|
367
|
+
export const gssdp: GirModuleMetadata = {
|
|
368
|
+
girId: "GSSDP-1.6",
|
|
369
|
+
displayName: "GSSDP",
|
|
370
|
+
description: "SSDP resource discovery and announcement library.",
|
|
371
|
+
authors: "GNOME",
|
|
372
|
+
websiteUrl: "https://wiki.gnome.org/Projects/GUPnP",
|
|
373
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/gssdp/",
|
|
374
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/gssdp.git",
|
|
375
|
+
license: "LGPL-2.1-or-later",
|
|
376
|
+
cDocsUrl: "https://gnome.pages.gitlab.gnome.org/gssdp/docs/",
|
|
377
|
+
category: "Networking",
|
|
378
|
+
};
|
|
379
|
+
|
|
380
|
+
// --- System ---
|
|
381
|
+
|
|
382
|
+
export const gudev: GirModuleMetadata = {
|
|
383
|
+
girId: "GUdev-1.0",
|
|
384
|
+
displayName: "GUdev",
|
|
385
|
+
description: "GObject wrapper for libudev.",
|
|
386
|
+
authors: "GNOME",
|
|
387
|
+
websiteUrl: "https://gitlab.gnome.org/GNOME/libgudev",
|
|
388
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/libgudev/",
|
|
389
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/libgudev.git",
|
|
390
|
+
license: "LGPL-2.1-or-later",
|
|
391
|
+
category: "System",
|
|
392
|
+
};
|
|
393
|
+
|
|
394
|
+
export const flatpak: GirModuleMetadata = {
|
|
395
|
+
girId: "Flatpak-1.0",
|
|
396
|
+
displayName: "Flatpak",
|
|
397
|
+
description: "Library for managing Flatpak installations.",
|
|
398
|
+
authors: "Flatpak Team",
|
|
399
|
+
websiteUrl: "https://flatpak.org",
|
|
400
|
+
browseUrl: "https://github.com/flatpak/flatpak/",
|
|
401
|
+
repositoryUrl: "https://github.com/flatpak/flatpak.git",
|
|
402
|
+
license: "LGPL-2.1-or-later",
|
|
403
|
+
category: "System",
|
|
404
|
+
};
|
|
405
|
+
|
|
406
|
+
export const appStream: GirModuleMetadata = {
|
|
407
|
+
girId: "AppStream-1.0",
|
|
408
|
+
displayName: "AppStream",
|
|
409
|
+
description: "Software metadata handling library.",
|
|
410
|
+
authors: "Matthias Klumpp",
|
|
411
|
+
websiteUrl: "https://www.freedesktop.org/wiki/Distributions/AppStream/",
|
|
412
|
+
browseUrl: "https://github.com/ximion/appstream/",
|
|
413
|
+
repositoryUrl: "https://github.com/ximion/appstream.git",
|
|
414
|
+
license: "LGPL-2.1-or-later",
|
|
415
|
+
cDocsUrl: "https://www.freedesktop.org/software/appstream/docs/",
|
|
416
|
+
category: "System",
|
|
417
|
+
};
|
|
418
|
+
|
|
419
|
+
export const libosinfo: GirModuleMetadata = {
|
|
420
|
+
girId: "Libosinfo-1.0",
|
|
421
|
+
displayName: "libosinfo",
|
|
422
|
+
description: "Operating system information database.",
|
|
423
|
+
authors: "libosinfo Team",
|
|
424
|
+
websiteUrl: "https://libosinfo.org",
|
|
425
|
+
browseUrl: "https://gitlab.com/libosinfo/libosinfo/",
|
|
426
|
+
repositoryUrl: "https://gitlab.com/libosinfo/libosinfo.git",
|
|
427
|
+
license: "LGPL-2.1-or-later",
|
|
428
|
+
category: "System",
|
|
429
|
+
};
|
|
430
|
+
|
|
431
|
+
export const xdp: GirModuleMetadata = {
|
|
432
|
+
girId: "Xdp-1.0",
|
|
433
|
+
displayName: "libportal",
|
|
434
|
+
description: "Desktop portals access library.",
|
|
435
|
+
authors: "GNOME",
|
|
436
|
+
websiteUrl: "https://github.com/flatpak/libportal",
|
|
437
|
+
browseUrl: "https://github.com/flatpak/libportal/",
|
|
438
|
+
repositoryUrl: "https://github.com/flatpak/libportal.git",
|
|
439
|
+
license: "LGPL-3.0-or-later",
|
|
440
|
+
iconFile: "libportal-r.svg",
|
|
441
|
+
category: "System",
|
|
442
|
+
};
|
|
443
|
+
|
|
444
|
+
export const xdpGtk4: GirModuleMetadata = {
|
|
445
|
+
girId: "XdpGtk4-1.0",
|
|
446
|
+
displayName: "libportal GTK4",
|
|
447
|
+
description: "Desktop portals GTK 4 integration.",
|
|
448
|
+
authors: "GNOME",
|
|
449
|
+
websiteUrl: "https://github.com/flatpak/libportal",
|
|
450
|
+
browseUrl: "https://github.com/flatpak/libportal/",
|
|
451
|
+
repositoryUrl: "https://github.com/flatpak/libportal.git",
|
|
452
|
+
license: "LGPL-3.0-or-later",
|
|
453
|
+
iconFile: "libportal-r.svg",
|
|
454
|
+
category: "System",
|
|
455
|
+
};
|
|
456
|
+
|
|
457
|
+
// --- Graphics (low-level) ---
|
|
458
|
+
|
|
459
|
+
export const rsvg: GirModuleMetadata = {
|
|
460
|
+
girId: "Rsvg-2.0",
|
|
461
|
+
displayName: "librsvg",
|
|
462
|
+
description: "SVG rendering library.",
|
|
463
|
+
authors: "GNOME",
|
|
464
|
+
websiteUrl: "https://wiki.gnome.org/Projects/LibRsvg",
|
|
465
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/librsvg/",
|
|
466
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/librsvg.git",
|
|
467
|
+
license: "LGPL-2.1-or-later",
|
|
468
|
+
cDocsUrl: "https://gnome.pages.gitlab.gnome.org/librsvg/doc/rsvg/",
|
|
469
|
+
iconFile: "librsvg-r.svg",
|
|
470
|
+
category: "Graphics",
|
|
471
|
+
};
|
|
472
|
+
|
|
473
|
+
export const gl: GirModuleMetadata = {
|
|
474
|
+
girId: "GL-1.0",
|
|
475
|
+
displayName: "GL",
|
|
476
|
+
description: "OpenGL type definitions for GObject Introspection.",
|
|
477
|
+
authors: "Khronos Group",
|
|
478
|
+
websiteUrl: "https://www.opengl.org",
|
|
479
|
+
license: "MIT",
|
|
480
|
+
category: "Graphics",
|
|
481
|
+
};
|
|
482
|
+
|
|
483
|
+
export const xfixes: GirModuleMetadata = {
|
|
484
|
+
girId: "xfixes-4.0",
|
|
485
|
+
displayName: "XFixes",
|
|
486
|
+
description: "X11 XFixes extension type definitions.",
|
|
487
|
+
authors: "X.Org Foundation",
|
|
488
|
+
websiteUrl: "https://www.x.org",
|
|
489
|
+
license: "MIT",
|
|
490
|
+
category: "Graphics",
|
|
491
|
+
};
|
|
492
|
+
|
|
493
|
+
export const xlib: GirModuleMetadata = {
|
|
494
|
+
girId: "xlib-2.0",
|
|
495
|
+
displayName: "Xlib",
|
|
496
|
+
description: "X11 core protocol type definitions.",
|
|
497
|
+
authors: "X.Org Foundation",
|
|
498
|
+
websiteUrl: "https://www.x.org",
|
|
499
|
+
license: "MIT",
|
|
500
|
+
category: "Graphics",
|
|
501
|
+
};
|
|
502
|
+
|
|
503
|
+
// --- GLib (low-level) ---
|
|
504
|
+
|
|
505
|
+
export const dbus: GirModuleMetadata = {
|
|
506
|
+
girId: "DBus-1.0",
|
|
507
|
+
displayName: "DBus",
|
|
508
|
+
description: "D-Bus inter-process communication type definitions.",
|
|
84
509
|
authors: "freedesktop.org",
|
|
85
|
-
websiteUrl: "https://
|
|
86
|
-
|
|
87
|
-
|
|
510
|
+
websiteUrl: "https://www.freedesktop.org/wiki/Software/dbus/",
|
|
511
|
+
license: "AFL-2.1 OR GPL-2.0-or-later",
|
|
512
|
+
category: "GLib",
|
|
513
|
+
};
|
|
514
|
+
|
|
515
|
+
export const win32: GirModuleMetadata = {
|
|
516
|
+
girId: "win32-1.0",
|
|
517
|
+
displayName: "Win32",
|
|
518
|
+
description: "Windows API type aliases for GObject Introspection.",
|
|
519
|
+
authors: "GTK Development Team",
|
|
520
|
+
license: "LGPL-2.1-or-later",
|
|
521
|
+
category: "GLib",
|
|
522
|
+
};
|
|
523
|
+
|
|
524
|
+
// --- Multimedia (transitive) ---
|
|
525
|
+
|
|
526
|
+
export const gstSdp: GirModuleMetadata = {
|
|
527
|
+
girId: "GstSdp-1.0",
|
|
528
|
+
displayName: "GStreamer SDP",
|
|
529
|
+
description: "GStreamer SDP (Session Description Protocol) library.",
|
|
530
|
+
authors: "GStreamer Team",
|
|
531
|
+
websiteUrl: "https://gstreamer.freedesktop.org",
|
|
532
|
+
browseUrl: "https://gitlab.freedesktop.org/gstreamer/gstreamer/",
|
|
533
|
+
license: "LGPL-2.1-or-later",
|
|
534
|
+
cDocsUrl: "https://gstreamer.freedesktop.org/documentation/sdp/index.html",
|
|
535
|
+
category: "Multimedia",
|
|
536
|
+
};
|
|
537
|
+
|
|
538
|
+
// --- Web ---
|
|
539
|
+
|
|
540
|
+
export const goa: GirModuleMetadata = {
|
|
541
|
+
girId: "Goa-1.0",
|
|
542
|
+
displayName: "GNOME Online Accounts",
|
|
543
|
+
description: "Framework for accessing online accounts.",
|
|
544
|
+
authors: "GNOME",
|
|
545
|
+
websiteUrl: "https://wiki.gnome.org/Projects/GnomeOnlineAccounts",
|
|
546
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/gnome-online-accounts/",
|
|
547
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/gnome-online-accounts.git",
|
|
88
548
|
license: "LGPL-2.0-or-later",
|
|
89
|
-
|
|
549
|
+
cDocsUrl: "https://gnome.pages.gitlab.gnome.org/gnome-online-accounts/goa/",
|
|
550
|
+
iconFile: "goa-r.svg",
|
|
551
|
+
category: "Web",
|
|
552
|
+
};
|
|
553
|
+
|
|
554
|
+
export const rest: GirModuleMetadata = {
|
|
555
|
+
girId: "Rest-1.0",
|
|
556
|
+
displayName: "librest",
|
|
557
|
+
description: "RESTful web service access library.",
|
|
558
|
+
authors: "GNOME",
|
|
559
|
+
websiteUrl: "https://gitlab.gnome.org/GNOME/librest",
|
|
560
|
+
browseUrl: "https://gitlab.gnome.org/GNOME/librest/",
|
|
561
|
+
repositoryUrl: "https://gitlab.gnome.org/GNOME/librest.git",
|
|
562
|
+
license: "LGPL-2.1-or-later",
|
|
563
|
+
category: "Networking",
|
|
90
564
|
};
|
package/src/data/soup.ts
CHANGED
package/src/data/webkit.ts
CHANGED
|
@@ -31,3 +31,11 @@ export const javaScriptCore6: GirModuleMetadata = {
|
|
|
31
31
|
description: "JavaScript engine used by WebKitGTK.",
|
|
32
32
|
cDocsUrl: "https://webkitgtk.org/reference/jsc-glib/unstable/",
|
|
33
33
|
};
|
|
34
|
+
|
|
35
|
+
export const webkitWebProcessExtension6: GirModuleMetadata = {
|
|
36
|
+
...WEBKIT_COMMON,
|
|
37
|
+
girId: "WebKitWebProcessExtension-6.0",
|
|
38
|
+
displayName: "WebKit Web Process Extension",
|
|
39
|
+
description: "Library for extensions running in WebKit's web process.",
|
|
40
|
+
cDocsUrl: "https://webkitgtk.org/reference/webkit2gtk-web-process-extension/unstable/",
|
|
41
|
+
};
|
package/src/types.ts
CHANGED
|
@@ -22,6 +22,8 @@ export interface GirModuleMetadata {
|
|
|
22
22
|
cDocsUrl?: string;
|
|
23
23
|
/** Logo/icon URL (absolute URL) */
|
|
24
24
|
logoUrl?: string;
|
|
25
|
+
/** Icon filename from refs/library-icons (e.g. "librsvg-r.svg"). Used as fallback when logoUrl is not set. */
|
|
26
|
+
iconFile?: string;
|
|
25
27
|
/** Category for grouping on documentation homepage */
|
|
26
28
|
category?: string;
|
|
27
29
|
}
|
package/src/data/adw.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import type { GirModuleMetadata } from "../types.ts";
|
|
2
|
-
|
|
3
|
-
export const adw: GirModuleMetadata = {
|
|
4
|
-
girId: "Adw-1",
|
|
5
|
-
displayName: "Libadwaita",
|
|
6
|
-
description: "Building blocks for modern adaptive GNOME applications.",
|
|
7
|
-
authors: "GNOME",
|
|
8
|
-
websiteUrl: "https://gnome.pages.gitlab.gnome.org/libadwaita/",
|
|
9
|
-
browseUrl: "https://gitlab.gnome.org/GNOME/libadwaita/",
|
|
10
|
-
repositoryUrl: "https://gitlab.gnome.org/GNOME/libadwaita.git",
|
|
11
|
-
license: "LGPL-2.1-or-later",
|
|
12
|
-
cDocsUrl: "https://gnome.pages.gitlab.gnome.org/libadwaita/doc/",
|
|
13
|
-
category: "GNOME Libraries",
|
|
14
|
-
};
|