Skip to content

Commit febe9f2

Browse files
committed
Bump versions to 0.7
1 parent 9b01bcd commit febe9f2

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ backlight <command> [<option>]
2323
Usage:
2424
-h, --help Display this message
2525
26+
-v, --version Display app version
27+
2628
ui Start the TUXEDO Backlight Control UI
2729
2830
off Turn off keyboard backlight
@@ -33,8 +35,8 @@ Usage:
3335
color <color>{1,4} Set the keyboard backlight to a single color, one of:
3436
white, silver, gray, yellow, orange, red, maroon, crimson,
3537
fuchsia, purple, rose, cyan, turquoise, teal, blue, navy,
36-
olive, lime, green,
37-
OR any valid colors defined in /etc/tuxedo-backlight-control/colors.conf
38+
olive, lime, green, OR any valid color_name=hex_value pairs
39+
defined in /etc/tuxedo-backlight-control/colors.conf
3840
3941
Alternatively, set the keyboard to 4 distinct colors,
4042
in the order: left, center, right, extra. Only regions supported
@@ -94,7 +96,7 @@ You can download and install the TUXEDO Keyboard .deb Package from http://deb.tu
9496

9597
Download and double-click the `.deb` package from the [releases](https://github.com/webketje/tuxedo-backlight-control/releases/latest), or run
9698
```
97-
sudo dpkg -i tuxedo-backlight-control_0.5-1_amd64.deb
99+
sudo dpkg -i tuxedo-backlight-control_0.7-1_amd64.deb
98100
```
99101
from the folder where you downloaded it.
100102

@@ -103,7 +105,7 @@ from the folder where you downloaded it.
103105
Download the `.pkg.tar.xz` package from the [releases](https://github.com/webketje/tuxedo-backlight-control/releases/latest), and run
104106

105107
```
106-
pacman -U tuxedo-backlight-control-0.5-1.pkg.tar.xz
108+
pacman -U tuxedo-backlight-control-0.7-1.pkg.tar.xz
107109
```
108110
from the folder where you downloaded it.
109111

pack.sh

+1-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.6'
8+
ver='0.7'
99
maintainer='Kevin Van Lierde <[email protected]>'
1010
url='https://github.com/webketje/tuxedo-backlight-control'
1111
prerm='../build/DEBIAN/prerm'

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

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import os
44
import re
5+
56
from colors import colors
67

78
if os.path.isfile('/etc/tuxedo-backlight-control/colors.conf'):
@@ -18,6 +19,7 @@ class BacklightControl():
1819

1920
DEVICE_PATH = '/sys/devices/platform/tuxedo_keyboard/'
2021
MODULE_PATH = '/sys/module/tuxedo_keyboard'
22+
VERSION = '0.7'
2123

2224
modes = (
2325
'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.6 - 2019-11-25
2+
TUXEDO Backlight Control <tuxedo-backlight-control> - v0.7 - 2020-08-14
33
By Kevin Van Lierde <[email protected]>
44

55
Usage:

0 commit comments

Comments
 (0)