Skip to content

Commit

Permalink
Bump versions to 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
webketje committed Aug 14, 2020
1 parent 9b01bcd commit febe9f2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ backlight <command> [<option>]
Usage:
-h, --help Display this message
-v, --version Display app version
ui Start the TUXEDO Backlight Control UI
off Turn off keyboard backlight
Expand All @@ -33,8 +35,8 @@ Usage:
color <color>{1,4} Set the keyboard backlight to a single color, one of:
white, silver, gray, yellow, orange, red, maroon, crimson,
fuchsia, purple, rose, cyan, turquoise, teal, blue, navy,
olive, lime, green,
OR any valid colors defined in /etc/tuxedo-backlight-control/colors.conf
olive, lime, green, OR any valid color_name=hex_value pairs
defined in /etc/tuxedo-backlight-control/colors.conf
Alternatively, set the keyboard to 4 distinct colors,
in the order: left, center, right, extra. Only regions supported
Expand Down Expand Up @@ -94,7 +96,7 @@ You can download and install the TUXEDO Keyboard .deb Package from http://deb.tu

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

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

```
pacman -U tuxedo-backlight-control-0.5-1.pkg.tar.xz
pacman -U tuxedo-backlight-control-0.7-1.pkg.tar.xz
```
from the folder where you downloaded it.

Expand Down
2 changes: 1 addition & 1 deletion pack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ else
fi

pkg='tuxedo-backlight-control'
ver='0.6'
ver='0.7'
maintainer='Kevin Van Lierde <[email protected]>'
url='https://github.com/webketje/tuxedo-backlight-control'
prerm='../build/DEBIAN/prerm'
Expand Down
2 changes: 2 additions & 0 deletions src/usr/share/tuxedo-backlight-control/backlight_control.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import os
import re

from colors import colors

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

DEVICE_PATH = '/sys/devices/platform/tuxedo_keyboard/'
MODULE_PATH = '/sys/module/tuxedo_keyboard'
VERSION = '0.7'

modes = (
'color',
Expand Down
2 changes: 1 addition & 1 deletion src/usr/share/tuxedo-backlight-control/help.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

TUXEDO Backlight Control <tuxedo-backlight-control> - v0.6 - 2019-11-25
TUXEDO Backlight Control <tuxedo-backlight-control> - v0.7 - 2020-08-14
By Kevin Van Lierde <[email protected]>

Usage:
Expand Down

0 comments on commit febe9f2

Please sign in to comment.