meta 0.8.0
sezanzeb 4 years ago
parent a046c08822
commit 12c9ee6f44

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

@ -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.7.1.deb sudo apt install ./dist/key-mapper-0.8.0.deb
``` ```
##### pip ##### pip

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

@ -141,7 +141,7 @@ configuration files.
## Configuration Files ## Configuration Files
The default configuration is stored at `~/.config/key-mapper/config.json`. The default configuration is stored at `~/.config/key-mapper/config.json`.
The current default configuration as of 0.7.1 looks like, with The current default configuration as of 0.8.0 looks like, with
an example autoload entry: an example autoload entry:
```json ```json

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

@ -65,7 +65,7 @@ def get_packages():
setup( setup(
name='key-mapper', name='key-mapper',
version='0.7.1', version='0.8.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',

Loading…
Cancel
Save