This commit is contained in:
sezanzeb 2021-05-08 20:28:13 +02:00 committed by sezanzeb
parent 38503df837
commit e0887b3bd8
6 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
Package: key-mapper Package: key-mapper
Version: 0.8.1 Version: 1.0.0
Architecture: all Architecture: all
Maintainer: Sezanzeb <proxima@sezanzeb.de> Maintainer: Sezanzeb <proxima@sezanzeb.de>
Depends: build-essential, libpython3-dev, libdbus-1-dev, python3, python3-setuptools, python3-evdev, python3-pydbus, python3-gi Depends: build-essential, libpython3-dev, libdbus-1-dev, python3, python3-setuptools, python3-evdev, python3-pydbus, python3-gi

View File

@ -28,7 +28,7 @@ or install the latest changes via:
sudo apt install git python3-setuptools sudo apt install git python3-setuptools
git clone https://github.com/sezanzeb/key-mapper.git git clone https://github.com/sezanzeb/key-mapper.git
cd key-mapper; ./scripts/build.sh 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 ##### pip

View File

@ -68,7 +68,7 @@ ssh/login into a debian/ubuntu environment
./scripts/build.sh ./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 ## Badges

View File

@ -143,7 +143,7 @@ configuration files.
The default configuration is stored at `~/.config/key-mapper/config.json`, The default configuration is stored at `~/.config/key-mapper/config.json`,
which doesn't include any mappings, but rather other parameters that 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: looks like, with an example autoload entry:
```json ```json

View File

@ -9,8 +9,8 @@ build_deb() {
mv build/deb/usr/local/lib/python3.*/ build/deb/usr/lib/python3/ mv build/deb/usr/local/lib/python3.*/ build/deb/usr/lib/python3/
cp ./DEBIAN build/deb/ -r cp ./DEBIAN build/deb/ -r
mkdir dist -p mkdir dist -p
rm dist/key-mapper-0.8.1.deb || true rm dist/key-mapper-1.0.0.deb || true
dpkg -b build/deb dist/key-mapper-0.8.1.deb dpkg -b build/deb dist/key-mapper-1.0.0.deb
} }
build_deb & build_deb &

View File

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