Skip to content
This repository was archived by the owner on Apr 20, 2025. It is now read-only.

Commit 8e41552

Browse files
committed
Prepare release 0.8.0
1 parent 3ff0a17 commit 8e41552

File tree

7 files changed

+24
-8
lines changed

7 files changed

+24
-8
lines changed

README.md

+18-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ You can download and install the TUXEDO Keyboard .deb Package from http://deb.tu
100100

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

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

111111
```
112-
pacman -U tuxedo-backlight-control-0.7-1.pkg.tar.xz
112+
pacman -U tuxedo-backlight-control-0.8.0-1.pkg.tar.xz
113113
```
114114
from the folder where you downloaded it.
115115

@@ -161,3 +161,19 @@ unlink /etc/bash_completion.d/backlight
161161
```
162162

163163

164+
#### Maintenance
165+
166+
**Test locally**
167+
168+
The `backlight` utility can be run directly from the repo root as `$PWD/src/usr/share/tuxedo-backlight-control/backlight.py` for quick tests
169+
170+
**Run pylint**
171+
172+
Run `bin/pylint`
173+
174+
**Create a new release**
175+
176+
1. Change all references to <version> (readme, python, help)
177+
2. Run `bin/pack`
178+
3. Create release on GH and attach to generated archives in `dist`
179+

bin/pack

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ else
77
fi
88

99
pkg='tuxedo-backlight-control'
10-
ver='0.7'
10+
ver='0.8.0'
1111
maintainer='Kevin Van Lierde <[email protected]>'
1212
url='https://github.com/webketje/tuxedo-backlight-control'
1313
prerm='../build/DEBIAN/prerm'

build/ARCH/.SRCINFO

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pkgbase = tuxedo-backlight-control-git
22
pkgdesc = GUI utility built on top of TUXEDO Keyboard. Provides a bash CLI (backlight) and a minimal Python UI.
3-
pkgver = 0.7.r14.gde724d7
3+
pkgver = 0.8.0.r1.gde724d7
44
pkgrel = 2
55
url = https://github.com/webketje/tuxedo-backlight-control
66
arch = x86_64

build/ARCH/PKGBUILD

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
_pkgname='tuxedo-backlight-control'
77
pkgname="${_pkgname}-git"
8-
pkgver=0.7.r14.gde724d7
8+
pkgver=0.8.0.r1.gde724d7
99
pkgrel=2
1010
arch=('x86_64')
1111
license=('MIT')

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.6
3+
Version: 0.8.0
44
Maintainer: Kevin Van Lierde <[email protected]>
55
Architecture: all
66
Description: Tuxedo Backlight Ctrl

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class BacklightControl():
1919

2020
DEVICE_PATH = '/sys/devices/platform/tuxedo_keyboard/'
2121
MODULE_PATH = '/sys/module/tuxedo_keyboard'
22-
VERSION = '0.7'
22+
VERSION = '0.8.0'
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.7 - 2020-08-14
2+
TUXEDO Backlight Control <tuxedo-backlight-control> - v0.8.0 - 2022-02-05
33
By Kevin Van Lierde <[email protected]>
44

55
Usage:

0 commit comments

Comments
 (0)