Skip to content

Commit

Permalink
Prepare release 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
webketje committed Feb 5, 2022
1 parent 3ff0a17 commit 8e41552
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 8 deletions.
20 changes: 18 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,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
```
dpkg -i tuxedo-backlight-control_0.7-1_amd64.deb
dpkg -i tuxedo-backlight-control_0.8.0-1_amd64.deb
```
from the folder where you downloaded it.

Expand All @@ -109,7 +109,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.7-1.pkg.tar.xz
pacman -U tuxedo-backlight-control-0.8.0-1.pkg.tar.xz
```
from the folder where you downloaded it.

Expand Down Expand Up @@ -161,3 +161,19 @@ unlink /etc/bash_completion.d/backlight
```


#### Maintenance

**Test locally**

The `backlight` utility can be run directly from the repo root as `$PWD/src/usr/share/tuxedo-backlight-control/backlight.py` for quick tests

**Run pylint**

Run `bin/pylint`

**Create a new release**

1. Change all references to <version> (readme, python, help)
2. Run `bin/pack`
3. Create release on GH and attach to generated archives in `dist`

2 changes: 1 addition & 1 deletion bin/pack
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ else
fi

pkg='tuxedo-backlight-control'
ver='0.7'
ver='0.8.0'
maintainer='Kevin Van Lierde <[email protected]>'
url='https://github.com/webketje/tuxedo-backlight-control'
prerm='../build/DEBIAN/prerm'
Expand Down
2 changes: 1 addition & 1 deletion build/ARCH/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pkgbase = tuxedo-backlight-control-git
pkgdesc = GUI utility built on top of TUXEDO Keyboard. Provides a bash CLI (backlight) and a minimal Python UI.
pkgver = 0.7.r14.gde724d7
pkgver = 0.8.0.r1.gde724d7
pkgrel = 2
url = https://github.com/webketje/tuxedo-backlight-control
arch = x86_64
Expand Down
2 changes: 1 addition & 1 deletion build/ARCH/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

_pkgname='tuxedo-backlight-control'
pkgname="${_pkgname}-git"
pkgver=0.7.r14.gde724d7
pkgver=0.8.0.r1.gde724d7
pkgrel=2
arch=('x86_64')
license=('MIT')
Expand Down
2 changes: 1 addition & 1 deletion build/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Source: tuxedo-backlight-control
Package: tuxedo-backlight-control
Version: 0.6
Version: 0.8.0
Maintainer: Kevin Van Lierde <[email protected]>
Architecture: all
Description: Tuxedo Backlight Ctrl
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class BacklightControl():

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

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.7 - 2020-08-14
TUXEDO Backlight Control <tuxedo-backlight-control> - v0.8.0 - 2022-02-05
By Kevin Van Lierde <[email protected]>

Usage:
Expand Down

0 comments on commit 8e41552

Please sign in to comment.