Skip to content

Commit

Permalink
Release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
linusg committed Aug 11, 2019
1 parent ac62aa4 commit a0b2b57
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changes
=======

2.0.0
-----

- New, more pythonic API
- Update CLI and GUI
- Support emulator
- Add tests

1.8.1
-----

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# rpi-backlight

[![Travis CI](https://api.travis-ci.org/linusg/rpi-backlight.svg?branch=v2.0.0-alpha)](https://travis-ci.org/linusg/rpi-backlight)
[![Travis CI](https://api.travis-ci.org/linusg/rpi-backlight.svg?branch=master)](https://travis-ci.org/linusg/rpi-backlight)
[![License](https://img.shields.io/github/license/mashape/apistatus.svg)](ttps://github.com/linusg/rpi-backlight/blob/master/LICENSE)
[![PyPI](https://img.shields.io/pypi/v/rpi-backlight.svg)](https://pypi.org/project/rpi-backlight/)
[![Documentation](https://img.shields.io/badge/docs-latest-blue.svg)](https://rpi-backlight.readthedocs.io/en/latest/)
Expand All @@ -9,7 +9,7 @@

> A Python module for controlling power and brightness of the official Raspberry Pi 7" touch display.
![Example](https://raw.githubusercontent.com/linusg/rpi-backlight/v2.0.0-alpha/docs/_static/example.gif)
![Example](https://raw.githubusercontent.com/linusg/rpi-backlight/master/docs/_static/example.gif)

**Note:** _This GIF was created using the old v1 API, so please don't use it as API reference 🙂_

Expand Down Expand Up @@ -104,12 +104,12 @@ For all available options see [docs](https://rpi-backlight.readthedocs.io/en/lat

Open a terminal and run `rpi-backlight-gui`.

![Graphical User Interface](https://raw.githubusercontent.com/linusg/rpi-backlight/v2.0.0-alpha/docs/_static/gui.png)
![Graphical User Interface (2)](https://raw.githubusercontent.com/linusg/rpi-backlight/v2.0.0-alpha/docs/_static/gui2.png)
![Graphical User Interface](https://raw.githubusercontent.com/linusg/rpi-backlight/master/docs/_static/gui.png)
![Graphical User Interface (2)](https://raw.githubusercontent.com/linusg/rpi-backlight/master/docs/_static/gui2.png)

### Adding a shortcut to the LXDE panel

![Panel result](https://raw.githubusercontent.com/linusg/rpi-backlight/v2.0.0-alpha/docs/_static/panel_result.png)
![Panel result](https://raw.githubusercontent.com/linusg/rpi-backlight/master/docs/_static/panel_result.png)

See [docs](https://rpi-backlight.readthedocs.io/en/latest/usage.html#adding-a-shortcut-to-the-lxde-panel).

Expand Down
2 changes: 1 addition & 1 deletion rpi_backlight/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from typing import Any, Callable, Union

__author__ = "Linus Groh"
__version__ = "2.0.0b7"
__version__ = "2.0.0"
__all__ = ["Backlight"]

_BACKLIGHT_SYSFS_PATH = "/sys/class/backlight/rpi_backlight/"
Expand Down

0 comments on commit a0b2b57

Please sign in to comment.