pull/669/head 2.0.0
sezanzeb 1 year ago
parent 6b4b85357f
commit 9e04df79ca

@ -1,5 +1,5 @@
Package: input-remapper
Version: 2.0.0-rc
Version: 2.0.0
Architecture: all
Maintainer: Sezanzeb <proxima@sezanzeb.de>
Depends: build-essential, libpython3-dev, libdbus-1-dev, python3, python3-setuptools, python3-evdev, python3-pydbus, python3-gi, gettext, python3-cairo, libgtk-3-0, libgtksourceview-4-dev, python3-pydantic

@ -38,7 +38,7 @@ or install the latest changes via:
sudo apt install git python3-setuptools gettext
git clone https://github.com/sezanzeb/input-remapper.git
cd input-remapper && ./scripts/build.sh
sudo apt install -f ./dist/input-remapper-2.0.0-rc.deb
sudo apt install -f ./dist/input-remapper-2.0.0.deb
```
input-remapper is available in [Debian](https://tracker.debian.org/pkg/input-remapper)

@ -244,7 +244,7 @@ logging.getLogger("asyncio").setLevel(logging.WARNING)
# using pkg_resources to figure out the version fails in many cases,
# so we hardcode it instead
VERSION = "2.0.0-rc"
VERSION = "2.0.0"
EVDEV_VERSION = None
try:
EVDEV_VERSION = pkg_resources.require("evdev")[0].version

@ -98,7 +98,7 @@ ssh/login into a debian/ubuntu environment
scripts/build.sh
```
This will generate `input-remapper/deb/input-remapper-2.0.0-rc.deb`
This will generate `input-remapper/deb/input-remapper-2.0.0.deb`
Badges
------

@ -9,8 +9,8 @@ build_deb() {
mv build/deb/usr/local/lib/python3.*/ build/deb/usr/lib/python3/
cp ./DEBIAN build/deb/ -r
mkdir dist -p
rm dist/input-remapper-2.0.0-rc.deb || true
dpkg-deb -Z gzip -b build/deb dist/input-remapper-2.0.0-rc.deb
rm dist/input-remapper-2.0.0.deb || true
dpkg-deb -Z gzip -b build/deb dist/input-remapper-2.0.0.deb
}
build_deb &

@ -102,7 +102,7 @@ for po_file in glob.glob(PO_FILES):
setup(
name="input-remapper",
version="2.0.0-rc",
version="2.0.0",
description="A tool to change the mapping of your input device buttons",
author="Sezanzeb",
author_email="proxima@sezanzeb.de",

Loading…
Cancel
Save