Dominique Leuenberger 2024-11-11 12:44:02 +00:00 committed by Git OBS Bridge
commit 8e9a8a031c
4 changed files with 23 additions and 7 deletions

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:93f96772eb441d8a6ca4ead481c44c38f358d529241456c1819a004438f5f770
size 13334659

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f2c28affb714c9a72c69e5c2db55109af2c17ac6fa9e87c4fdf0f1670d83acc0
size 13330802

View File

@ -1,3 +1,20 @@
-------------------------------------------------------------------
Sat Nov 09 10:58:48 UTC 2024 - maiku.fabian@gmail.com
- Update to 2.26.11
- Improve detection of Wayland session
(Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/561)
- Support non-ASCII input for m17n-db input methods
(Resolves: https://github.com/mike-fabian/ibus-typing-booster/issues/537)
- Improve “class KeyEvent”: Prepend 'S-' to msymbol
when Shift is pressed and is is a space or not printable
- Show also the languages supported by a font in emoji-picker
(only when -d or --debug is used)
- Fix build on Tumbleweed, in the check section of the spec file
use `export XDG_DATA_DIRS=/tmp:%{_datadir}` instead of just
`export XDG_DATA_DIRS=/tmp`, otherwise enchant2 fails.
- Stop using xvfb-run for make check
-------------------------------------------------------------------
Mon Nov 04 08:52:14 UTC 2024 - maiku.fabian@gmail.com

View File

@ -17,7 +17,7 @@
Name: ibus-typing-booster
Version: 2.26.8
Version: 2.26.11
Release: 0
Summary: An input completion utility
License: GPL-3.0-or-later
@ -47,7 +47,6 @@ BuildRequires: python3-pyenchant
# To avoid requiring Python >= 3.8
BuildRequires: python3-typing_extensions
BuildRequires: update-desktop-files
BuildRequires: xvfb-run
Requires: dbus-1-python3
# Workaround bug with python3-enchant: https://bugzilla.opensuse.org/show_bug.cgi?id=1141993
Requires: enchant-1-backend
@ -153,7 +152,7 @@ mkdir -p /tmp/glib-2.0/schemas/
cp org.freedesktop.ibus.engine.typing-booster.gschema.xml \
/tmp/glib-2.0/schemas/org.freedesktop.ibus.engine.typing-booster.gschema.xml
glib-compile-schemas /tmp/glib-2.0/schemas #&>/dev/null || :
export XDG_DATA_DIRS=/tmp
export XDG_DATA_DIRS=/tmp:%{_datadir} # /usr/share is needed to make enchant2 work!
eval $(dbus-launch --sh-syntax)
dconf dump /
dconf write /org/freedesktop/ibus/engine/typing-booster/offtherecord false
@ -191,7 +190,7 @@ dconf dump /
#i3 -c /tmp/i3config &
#export XDG_SESSION_TYPE=x11
xvfb-run --server-args="-screen 0 1024x768x16" make check && rc=0 || rc=1
make check && rc=0 || rc=1
cat tests/*.log
if [ $rc != 0 ] ; then
exit $rc