From 0b560f69e016d1f661ac1d85ded628468d61b241 Mon Sep 17 00:00:00 2001 From: Blomios Date: Sat, 20 Jun 2026 00:54:23 +0200 Subject: [PATCH] chore(release): passage en version 2.4.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump de version pour la release intégrant la liaison presets↔applications et la détection du focus/unfocus sur les backends Wayland. Co-Authored-By: Claude Opus 4.8 --- DEBIAN/control | 2 +- inputremapper/installation_info.py | 2 +- pyproject.toml | 2 +- scripts/build-deb.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/DEBIAN/control b/DEBIAN/control index 0f5c5c2..9eb49ad 100644 --- a/DEBIAN/control +++ b/DEBIAN/control @@ -1,5 +1,5 @@ Package: input-remapper -Version: 2.3.0 +Version: 2.4.0 Architecture: all Maintainer: Sezanzeb Depends: build-essential, libpython3-dev, libdbus-1-dev, python3, python3-evdev, python3-dasbus, python3-gi, gettext, python3-cairo, libgtk-3-0, libgtksourceview-4-dev, python3-pydantic, python3-packaging, python3-psutil, python3-xlib diff --git a/inputremapper/installation_info.py b/inputremapper/installation_info.py index f737f08..2fb344d 100644 --- a/inputremapper/installation_info.py +++ b/inputremapper/installation_info.py @@ -24,7 +24,7 @@ These defaults might be overwritten by package maintainers. """ COMMIT_HASH = "unknown" -VERSION = "2.3.0" +VERSION = "2.4.0" # depending on where this file is installed to, make sure to use the proper # prefix path for data. DATA_DIR = "/usr/share/input-remapper" diff --git a/pyproject.toml b/pyproject.toml index d677cf4..1b4dbee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "input-remapper" -version = "2.3.0" +version = "2.4.0" description = "A tool to change the mapping of your input device buttons" authors = [ { name = "Sezanzeb", email = "b8x45ygc9@mozmail.com" }, diff --git a/scripts/build-deb.sh b/scripts/build-deb.sh index d104056..37da3ee 100755 --- a/scripts/build-deb.sh +++ b/scripts/build-deb.sh @@ -11,7 +11,7 @@ build_deb() { find ./build -empty -delete cp ./DEBIAN build/deb -r - dpkg-deb -Z gzip -b build/deb dist/input-remapper-2.3.0.deb + dpkg-deb -Z gzip -b build/deb dist/input-remapper-2.4.0.deb } build_deb