mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-29 23:32:04 +02:00
An easy to use GTK integration library. Meant as a GtkVideo alternative. While GtkVideo is more of a simple example of video playback under GTK4, this acts as a full-fledged video player in the form of a GtkWidget that can be placed anywhere within application. The widget offers customization options for both top header and bottom playback controls panels. The Clapper playback API is exposed under widget "player" property making it easy for the programmer to set media and control playback programically. The new library will be distributed with Clapper player. This includes public headers and GObject Introspection support. Licensed under LGPL-2.1-or-later.
64 lines
1.7 KiB
TOML
64 lines
1.7 KiB
TOML
[library]
|
|
version = "@CLAPPER_VERSION@"
|
|
browse_url = "https://github.com/Rafostar/clapper/"
|
|
repository_url = "https://github.com/Rafostar/clapper.git"
|
|
website_url = "https://rafostar.github.io/clapper/"
|
|
docs_url = "https://rafostar.github.io/clapper/doc/clapper-gtk/"
|
|
authors = "Rafał Dzięgiel"
|
|
logo_url = "clapper-logo.svg"
|
|
license = "LGPL-2.1-or-later"
|
|
description = "Clapper GTK integration library"
|
|
devhelp = true
|
|
search_index = true
|
|
|
|
dependencies = ["Clapper@CLAPPER_VERSION_SUFFIX@", "Gtk-4.0"]
|
|
|
|
[dependencies."Clapper@CLAPPER_VERSION_SUFFIX@"]
|
|
name = "Clapper"
|
|
description = "Clapper playback library"
|
|
docs_url = "https://rafostar.github.io/clapper/doc/clapper/"
|
|
|
|
[dependencies."Gtk-4.0"]
|
|
name = "Gtk"
|
|
description = "The GTK toolkit"
|
|
docs_url = "https://docs.gtk.org/gtk4/"
|
|
|
|
related = ["GLib-2.0", "GObject-2.0", "Gio-2.0", "Gst-1.0"]
|
|
|
|
[related."GLib-2.0"]
|
|
name = "GLib"
|
|
description = "A general-purpose, portable utility library"
|
|
docs_url = "https://docs.gtk.org/glib/"
|
|
|
|
[related."GObject-2.0"]
|
|
name = "GObject"
|
|
description = "The base type system library"
|
|
docs_url = "https://docs.gtk.org/gobject/"
|
|
|
|
[related."Gio-2.0"]
|
|
name = "Gio"
|
|
description = "GObject Interfaces and Objects, Networking, IPC, and I/O"
|
|
docs_url = "https://docs.gtk.org/gio/"
|
|
|
|
[related."Gst-1.0"]
|
|
name = "Gst"
|
|
description = "GStreamer core library"
|
|
docs_url = "https://gstreamer.freedesktop.org/documentation/gstreamer/gi-index.html"
|
|
|
|
[theme]
|
|
name = "basic"
|
|
show_index_summary = true
|
|
show_class_hierarchy = true
|
|
|
|
[source-location]
|
|
base_url = "https://github.com/Rafostar/clapper/tree/master/"
|
|
|
|
[extra]
|
|
# The same order will be used when generating the index
|
|
content_files = [
|
|
]
|
|
content_images = [
|
|
"images/clapper-logo.svg",
|
|
]
|
|
urlmap_file = "urlmap.js"
|