devel-docs: adding libgimp as dependency to libgimpui.

Also use proper naming of dependencies, regarding of casing (e.g. GIMP
and GEGL, but babl).
This commit is contained in:
Jehan 2022-11-29 04:37:09 +01:00
parent 4acd18309a
commit 83545ee94d
2 changed files with 14 additions and 3 deletions

View File

@ -10,6 +10,7 @@ license = "GPL-3.0-or-later"
description = "GIMP UI library" description = "GIMP UI library"
dependencies = [ dependencies = [
'Babl-0.1', 'Babl-0.1',
'Gimp-3.0',
'GLib-2.0', 'GLib-2.0',
'GObject-2.0', 'GObject-2.0',
'GdkPixbuf-2.0', 'GdkPixbuf-2.0',
@ -21,11 +22,18 @@ dependencies = [
devhelp = true devhelp = true
search_index = true search_index = true
# These links are mostly used for the dependency lists in index page.
[dependencies."Babl-0.1"] [dependencies."Babl-0.1"]
name = "Babl" name = "babl"
description = "Pixel encoding and color space conversion engine" description = "Pixel encoding and color space conversion engine"
docs_url = "https://gegl.org/babl" docs_url = "https://gegl.org/babl"
[dependencies."Gimp-3.0"]
name = "GIMP"
description = "GIMP Library"
docs_url = "https://developer.gimp.org/api/3.0/libgimp/"
[dependencies."GLib-2.0"] [dependencies."GLib-2.0"]
name = "GLib" name = "GLib"
description = "C Utility Library" description = "C Utility Library"
@ -42,12 +50,12 @@ search_index = true
docs_url = "https://docs.gtk.org/gdk-pixbuf/" docs_url = "https://docs.gtk.org/gdk-pixbuf/"
[dependencies."Gegl-0.4"] [dependencies."Gegl-0.4"]
name = "Gegl" name = "GEGL"
description = "Generic Graphics Library" description = "Generic Graphics Library"
docs_url = "https://gegl.org/" docs_url = "https://gegl.org/"
[dependencies."Gio-2.0"] [dependencies."Gio-2.0"]
name = "Gio" name = "GIO"
description = "GObject interfaces and objects" description = "GObject interfaces and objects"
docs_url = "https://developer.gnome.org/gio/stable" docs_url = "https://developer.gnome.org/gio/stable"
@ -106,4 +114,6 @@ content_images = [
'images/string-combo-box.png', 'images/string-combo-box.png',
'images/unit-combo-box.png', 'images/unit-combo-box.png',
] ]
# The urlmap is used as base links when an API docs refer to a type or
# function from another library.
urlmap_file = "urlmap.js" urlmap_file = "urlmap.js"

View File

@ -6,4 +6,5 @@ baseURLs = [
[ 'GdkPixbuf', 'https://docs.gtk.org/gdk-pixbuf/' ], [ 'GdkPixbuf', 'https://docs.gtk.org/gdk-pixbuf/' ],
[ 'Gio', 'https://docs.gtk.org/gio/' ], [ 'Gio', 'https://docs.gtk.org/gio/' ],
[ 'Gtk', 'https://docs.gtk.org/gtk3/' ], [ 'Gtk', 'https://docs.gtk.org/gtk3/' ],
[ 'Gimp', 'https://developer.gimp.org/api/3.0/libgimp/' ],
] ]