Skip to content

Commit c7ebdb5

Browse files
committed
require gtk 4.22.1 in preparation for GtkSvg stuff
1 parent d6797b1 commit c7ebdb5

2 files changed

Lines changed: 19 additions & 19 deletions

File tree

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -83,24 +83,24 @@ bazaar
8383
```
8484

8585
You will need the following dependencies installed, along with a C compiler, meson, and ninja:
86-
| Dep Name | `pkg-config` Name | Min Version | Justification |
87-
|-------------------------------------------------------------------|-------------------|------------------------|-----------------------------------------------------|
88-
| [gtk4](https://gitlab.gnome.org/GNOME/gtk/) | `gtk4` | enforced by libadwaita | GUI |
89-
| [libadwaita](https://gitlab.gnome.org/GNOME/libadwaita) | `libadwaita-1` | `1.8` | GNOME styling |
90-
| [libdex](https://gitlab.gnome.org/GNOME/libdex) | `libdex-1` | `1.0` | Async helpers |
91-
| [flatpak](https://github.com/flatpak/flatpak) | `flatpak` | `1.9` | Flatpak installation management |
92-
| [appstream](https://github.com/ximion/appstream) | `appstream` | `1.0` | Interpret application metadata |
93-
| [xmlb](https://github.com/hughsie/libxmlb) | `xmlb` | `0.3.4` | Handle binary xml appstream bundles/Parse plain xml |
94-
| [glycin](https://gitlab.gnome.org/GNOME/glycin) | `glycin-2` | `2.0` | Decode image URIs |
95-
| [glycin-gtk4](https://gitlab.gnome.org/GNOME/glycin) | `glycin-gtk4-2` | `2.0` | Convert glycin frames to texture representations |
96-
| [libyaml](https://github.com/yaml/libyaml) | `yaml-0.1` | `0.2.5` | Parse YAML configs |
97-
| [libsoup](https://gitlab.gnome.org/GNOME/libsoup) | `libsoup-3.0` | `3.6.0` | HTTP operations |
98-
| [json-glib](https://gitlab.gnome.org/GNOME/json-glib) | `json-glib-1.0` | `1.10.0` | Parse some HTTP replies |
99-
| [md4c](https://github.com/mity/md4c) | `md4c` | `0.5.1` | Parse markdown (.md) |
100-
| [webkitgtk](https://webkitgtk.org/) | `webkitgtk-6.0` | `2.50.2` | Render web views |
101-
| [libsecret](https://gitlab.gnome.org/GNOME/libsecret) | `libsecret-1` | `0.20` | Store Flathub account information |
102-
| [libproxy](https://github.com/libproxy/libproxy) | `libproxy-1.0` | `0.5` | Parse proxies for networking operations |
103-
| [malcontent](https://gitlab.freedesktop.org/pwithnall/malcontent) | `malcontent-0` | `0.12.0` | Adhere to system parental controls settings |
86+
| Dep Name | `pkg-config` Name | Min Version | Justification |
87+
|-------------------------------------------------------------------|-------------------|-------------|-----------------------------------------------------|
88+
| [gtk4](https://gitlab.gnome.org/GNOME/gtk/) | `gtk4` | `4.22.1` | GUI |
89+
| [libadwaita](https://gitlab.gnome.org/GNOME/libadwaita) | `libadwaita-1` | `1.8` | GNOME styling |
90+
| [libdex](https://gitlab.gnome.org/GNOME/libdex) | `libdex-1` | `1.0` | Async helpers |
91+
| [flatpak](https://github.com/flatpak/flatpak) | `flatpak` | `1.9` | Flatpak installation management |
92+
| [appstream](https://github.com/ximion/appstream) | `appstream` | `1.0` | Interpret application metadata |
93+
| [xmlb](https://github.com/hughsie/libxmlb) | `xmlb` | `0.3.4` | Handle binary xml appstream bundles/Parse plain xml |
94+
| [glycin](https://gitlab.gnome.org/GNOME/glycin) | `glycin-2` | `2.0` | Decode image URIs |
95+
| [glycin-gtk4](https://gitlab.gnome.org/GNOME/glycin) | `glycin-gtk4-2` | `2.0` | Convert glycin frames to texture representations |
96+
| [libyaml](https://github.com/yaml/libyaml) | `yaml-0.1` | `0.2.5` | Parse YAML configs |
97+
| [libsoup](https://gitlab.gnome.org/GNOME/libsoup) | `libsoup-3.0` | `3.6.0` | HTTP operations |
98+
| [json-glib](https://gitlab.gnome.org/GNOME/json-glib) | `json-glib-1.0` | `1.10.0` | Parse some HTTP replies |
99+
| [md4c](https://github.com/mity/md4c) | `md4c` | `0.5.1` | Parse markdown (.md) |
100+
| [webkitgtk](https://webkitgtk.org/) | `webkitgtk-6.0` | `2.50.2` | Render web views |
101+
| [libsecret](https://gitlab.gnome.org/GNOME/libsecret) | `libsecret-1` | `0.20` | Store Flathub account information |
102+
| [libproxy](https://github.com/libproxy/libproxy) | `libproxy-1.0` | `0.5` | Parse proxies for networking operations |
103+
| [malcontent](https://gitlab.freedesktop.org/pwithnall/malcontent) | `malcontent-0` | `0.12.0` | Adhere to system parental controls settings |
104104

105105
#### Code of Conduct
106106

src/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
math = cc.find_library('m', required: false)
22
xmllint = find_program('xmllint', required: true)
33

4-
gtk_dep = dependency('gtk4')
4+
gtk_dep = dependency('gtk4', version: '>= 4.22.1')
55
libadwaita_dep = dependency('libadwaita-1', version: '>= 1.8')
66
libdex_dep = dependency('libdex-1', version: '>= 1.0.0')
77
flatpak_dep = dependency('flatpak', version: '>= 1.9')

0 commit comments

Comments
 (0)