Skip to content

Commit

Permalink
Prepare for v0.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dagwieers committed Nov 21, 2019
1 parent 8d6f8fd commit 9c74094
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 7 deletions.
22 changes: 17 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This Kodi screensaver turns your TV, projector or monitor off, so it can actuall

## How does it work ?

It supports the following methods:
It supports the following display methods:

- **CEC (built-in)**
- The screensaver forces the display to go into Standby using internal CEC controls.
Expand All @@ -37,15 +37,22 @@ It supports the following methods:
- **Backlight on Raspberry Pi (kernel)**
- The screensaver turns off the backlight of the display. This only works on Raspberry Pi.

- **HDMI on Raspberry Pi (tvservice)**
- The screensaver turns off the HDMI output using the 'tvservice' utility. This only works on Raspberry Pi, or possible other similar Broadcom chipsets.
- **Backlight on Odroid C2 (kernel)**
- The screensaver turns off the backlight of the display. This only works on Odroid C2.


Optionally it also can put your system to sleep or power it off.
Optionally it also can put your system to sleep or power it off using one of the following methods:

- **Suspend (built-in)**
- **Hibernate (built-in)**
- **Quit (built-in)**
- **Shutdown (built-in)**
- **Reboot (built-in)**
- **Powerdown (built-in)**

Or log off your user or mute audio.

One can press the `HOME` key to deactivate the screensaver, depending on the method used and the state of the display it may turn your display back on.
One can press the `HOME` key to deactivate the screensaver, depending on the method used and the state of the display/system it may turn your display and system back on.


## Related
Expand All @@ -59,6 +66,11 @@ You can report issues at [our GitHub project](https://github.com/dagwieers/scree


## Releases
### v0.10.2 (2019-11-21)
- Create separate entrypoint
- Improve stability
- Add more unit tests

### v0.10.1 (2019-10-30)
- Add sanity tests, unit tests and coverage support
- Use JSON-RPC for all built-ins
Expand Down
9 changes: 7 additions & 2 deletions addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="screensaver.turnoff" name="Turn Off" version="0.10.1" provider-name="dagwieers">
<addon id="screensaver.turnoff" name="Turn Off" version="0.10.2" provider-name="dagwieers">
<requires>
<import addon="xbmc.python" version="2.25.0"/>
</requires>
Expand All @@ -10,14 +10,19 @@
<description lang="en_GB">
The Turn Off screensaver turns your TV, projector or screen off, like any old fashioned screensaver is intended to do.

Next to managing your display, it can also manage your device, log your profile off or mute audio to avoid sounds through your A/V receiver.
Next to managing your display, it can also manage your device power state, log your profile off or mute audio to avoid sounds through your A/V receiver.
</description>
<license>GNU General Public License, v2+</license>
<email>[email protected]</email>
<website>https://kodi.wiki/view/Add-on:Turn_Off</website>
<source>https://github.com/dagwieers/screensaver.turnoff</source>
<forum>https://forum.kodi.tv/showthread.php?tid=331076</forum>
<news>
v0.10.2 (2019-11-21)
- Create separate entrypoint
- Improve stability
- Add more unit tests

v0.10.1 (2019-10-30)
- Add sanity tests, unit tests and coverage support
- Use JSON-RPC for all built-ins
Expand Down

0 comments on commit 9c74094

Please sign in to comment.