Skip to content

Commit

Permalink
chore(linux): Build with webkitgtk 4.1 instead of 4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jbicha committed Jan 23, 2024
1 parent c494581 commit 7ea8d96
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/linux/keyman-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ then you will need to:

```bash
sudo apt install python3-lxml python3-magic python3-numpy python3-qrcode python3-pil \
python3-requests python3-requests-cache python3 python3-gi gir1.2-webkit2-4.0 dconf-cli \
python3-requests python3-requests-cache python3 python3-gi gir1.2-webkit2-4.1 dconf-cli \
python3-setuptools python3-pip python3-dbus ibus libglib2.0-bin liblocale-gettext-perl
```

Expand Down
2 changes: 1 addition & 1 deletion docs/settings/linux/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \
libjson-glib-dev libgtk-3-dev libxml2-utils help2man python3-lxml \
python3-magic python3-numpy python3-pil python3-pip python3-qrcode \
python3-requests python3-requests-cache python3 python3-gi dconf-cli \
dconf-editor cargo python3-dbus gir1.2-webkit2-4.0 ibus libglib2.0-bin \
dconf-editor cargo python3-dbus gir1.2-webkit2-4.1 ibus libglib2.0-bin \
liblocale-gettext-perl xvfb xserver-xephyr metacity mutter \
&& sudo add-apt-repository --yes ppa:keymanapp/keyman \
&& sudo apt upgrade --yes
2 changes: 1 addition & 1 deletion linux/keyman-config/keyman_config/downloadkeyboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import gi

gi.require_version('Gtk', '3.0')
gi.require_version('WebKit2', '4.0')
gi.require_version('WebKit2', '4.1')

from gi.repository import Gtk, WebKit2

Expand Down
2 changes: 1 addition & 1 deletion linux/keyman-config/keyman_config/install_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import gi

gi.require_version('Gtk', '3.0')
gi.require_version('WebKit2', '4.0')
gi.require_version('WebKit2', '4.1')

from pkg_resources import parse_version

Expand Down
2 changes: 1 addition & 1 deletion linux/keyman-config/keyman_config/keyboard_options_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import gi

gi.require_version('Gtk', '3.0')
gi.require_version('WebKit2', '4.0')
gi.require_version('WebKit2', '4.1')

from gi.repository import Gtk, WebKit2

Expand Down
2 changes: 1 addition & 1 deletion linux/keyman-config/keyman_config/welcome.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import gi

gi.require_version('Gtk', '3.0')
gi.require_version('WebKit2', '4.0')
gi.require_version('WebKit2', '4.1')
from gi.repository import Gtk, WebKit2

from keyman_config import _
Expand Down

0 comments on commit 7ea8d96

Please sign in to comment.