xkb
sezanzeb 3 years ago committed by sezanzeb
parent 38503df837
commit e0887b3bd8

@ -1,5 +1,5 @@
Package: key-mapper
Version: 0.8.1
Version: 1.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

@ -28,7 +28,7 @@ or install the latest changes via:
sudo apt install git python3-setuptools
git clone https://github.com/sezanzeb/key-mapper.git
cd key-mapper; ./scripts/build.sh
sudo apt install ./dist/key-mapper-0.8.1.deb
sudo apt install ./dist/key-mapper-1.0.0.deb
```
##### pip

@ -68,7 +68,7 @@ ssh/login into a debian/ubuntu environment
./scripts/build.sh
```
This will generate `key-mapper/deb/key-mapper-0.8.1.deb`
This will generate `key-mapper/deb/key-mapper-1.0.0.deb`
## Badges

@ -143,7 +143,7 @@ configuration files.
The default configuration is stored at `~/.config/key-mapper/config.json`,
which doesn't include any mappings, but rather other parameters that
are interesting for injections. The current default configuration as of 0.8.1
are interesting for injections. The current default configuration as of 1.0.0
looks like, with an example autoload entry:
```json

@ -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/key-mapper-0.8.1.deb || true
dpkg -b build/deb dist/key-mapper-0.8.1.deb
rm dist/key-mapper-1.0.0.deb || true
dpkg -b build/deb dist/key-mapper-1.0.0.deb
}
build_deb &

@ -57,7 +57,7 @@ def get_packages():
setup(
name='key-mapper',
version='0.8.1',
version='1.0.0',
description='A tool to change the mapping of your input device buttons',
author='Sezanzeb',
author_email='proxima@sezanzeb.de',

Loading…
Cancel
Save