Roster is a modern HTTP client application for GNOME, similar to Postman, built with GTK 4 and libadwaita. Features: - Send HTTP requests (GET, POST, PUT, DELETE) - Configure custom headers with add/remove functionality - Request body editor for POST/PUT/DELETE requests - View response headers and bodies in separate tabs - Track request history with JSON persistence - Load previous requests from history with confirmation dialog - Beautiful GNOME-native UI with libadwaita components - HTTPie backend for reliable HTTP communication Technical implementation: - Python 3 with GTK 4 and libadwaita 1 - Meson build system with Flatpak support - Custom widgets (HeaderRow, HistoryItem) with GObject signals - Background threading for non-blocking HTTP requests - AdwTabView for modern tabbed interface - History persistence to ~/.config/roster/history.json - Comprehensive error handling and user feedback
55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
{
|
|
"id" : "cz.vesp.roster",
|
|
"runtime" : "org.gnome.Platform",
|
|
"runtime-version" : "master",
|
|
"sdk" : "org.gnome.Sdk",
|
|
"command" : "roster",
|
|
"finish-args" : [
|
|
"--share=network",
|
|
"--share=ipc",
|
|
"--socket=fallback-x11",
|
|
"--device=dri",
|
|
"--socket=wayland",
|
|
"--filesystem=xdg-config/roster:create"
|
|
],
|
|
"cleanup" : [
|
|
"/include",
|
|
"/lib/pkgconfig",
|
|
"/man",
|
|
"/share/doc",
|
|
"/share/gtk-doc",
|
|
"/share/man",
|
|
"/share/pkgconfig",
|
|
"*.la",
|
|
"*.a"
|
|
],
|
|
"build-options" : {
|
|
"build-args" : [
|
|
"--share=network"
|
|
]
|
|
},
|
|
"modules" : [
|
|
{
|
|
"name" : "httpie",
|
|
"buildsystem" : "simple",
|
|
"build-commands" : [
|
|
"pip3 install --prefix=${FLATPAK_DEST} httpie"
|
|
]
|
|
},
|
|
{
|
|
"name" : "roster",
|
|
"builddir" : true,
|
|
"buildsystem" : "meson",
|
|
"sources" : [
|
|
{
|
|
"type" : "git",
|
|
"url" : "file:///home/pavelb/GnomeBuilderProjects"
|
|
}
|
|
],
|
|
"config-opts" : [
|
|
"--libdir=lib"
|
|
]
|
|
}
|
|
]
|
|
}
|