Skip to content

Commit dc71ae3

Browse files
committed
Bump version to 0.6, update .gitignore
Signed-off-by: Kevin Van Lierde <[email protected]>
1 parent 184b0e1 commit dc71ae3

File tree

7 files changed

+12
-6
lines changed

7 files changed

+12
-6
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
dist/*
2-
__pycache__/
2+
__pycache__/
3+
.vscode/

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ my_color2=654321
5353
The colors added here will be usable both in the CLI, and appear in the color dropdown in the UI.
5454
The values should be valid HEX colors, the keys can only contain alphanumeric characters.
5555

56+
Development of this software is done on Clevo N150-ZU / N151-ZU. Only single color mode is known to work for these the models.
57+
5658
## Requirements
5759

5860
Required packages:

build/ARCH/PKGBUILD

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Contributor: Kevin Van Lierde <[email protected]>
44
pkgname=tuxedo-backlight-control
55
pkgrel=2
6-
pkgver=0.5
6+
pkgver=0.6
77
arch=('x86_64')
88
license=('MIT')
99
url=https://github.com/webketje/tuxedo-backlight-control

build/DEBIAN/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Source: tuxedo-backlight-control
22
Package: tuxedo-backlight-control
3-
Version: 0.5
3+
Version: 0.6
44
Maintainer: Kevin Van Lierde <[email protected]>
55
Architecture: all
66
Description: Tuxedo Backlight Ctrl

pack.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ else
55
fi
66

77
pkg='tuxedo-backlight-control'
8-
ver='0.5'
8+
ver='0.6'
99
maintainer='Kevin Van Lierde <[email protected]>'
1010
url='https://github.com/webketje/tuxedo-backlight-control'
1111
prerm='../build/DEBIAN/prerm'
@@ -26,6 +26,7 @@ fpm -s dir\
2626
-v "$ver"\
2727
--iteration 1\
2828
--maintainer "$maintainer"\
29+
--vendor "webketje"\
2930
--url "$url"\
3031
--description "Tuxedo Backlight Ctrl
3132
$desc"\
@@ -51,6 +52,7 @@ fpm -s dir\
5152
-a any\
5253
--iteration 1\
5354
--maintainer "$maintainer"\
55+
--vendor "webketje"\
5456
--url "$url"\
5557
--description "$desc"\
5658
--category "$category"\
@@ -74,6 +76,7 @@ fpm -s dir\
7476
-a any\
7577
--iteration 1\
7678
--maintainer "$maintainer"\
79+
--vendor "webketje"\
7780
--url "$url"\
7881
--description "$desc"\
7982
--category "$category"\

src/usr/share/tuxedo-backlight-control/backlight.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
class BacklightControl():
2020
DEVICE_PATH = '/sys/devices/platform/tuxedo_keyboard/'
2121
MODULE_PATH = '/sys/module/tuxedo_keyboard'
22-
VERSION = '0.5'
22+
VERSION = '0.6'
2323

2424
modes = (
2525
'color',

src/usr/share/tuxedo-backlight-control/help.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
TUXEDO Backlight Control <tuxedo-backlight-control> - v0.5 - 2019-06-18
2+
TUXEDO Backlight Control <tuxedo-backlight-control> - v0.6 - 2019-11-25
33
By Kevin Van Lierde <[email protected]>
44

55
Usage:

0 commit comments

Comments
 (0)