Skip to content

Commit

Permalink
[script.timers] 3.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Heckie75 committed Aug 2, 2024
1 parent a2cc16a commit 069db8c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
10 changes: 4 additions & 6 deletions script.timers/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="script.timers" name="Timers" version="3.9.2" provider-name="Heckie">
<addon id="script.timers" name="Timers" version="3.9.3" provider-name="Heckie">
<requires>
<import addon="xbmc.python" version="3.0.0" />
</requires>
Expand Down Expand Up @@ -66,6 +66,9 @@
<website>https://github.com/Heckie75/kodi-addon-timers</website>
<source>https://github.com/Heckie75/kodi-addon-timers</source>
<news>
v3.9.3 (2024-08-02)
- Bugfix: Fixed that 'running-high-prio-fading-only-timer' prevents starting other media timers within its period

v3.9.2 (2024-07-21)
- Bugfix: The repeat flag in Timer Addon doesn't work, issue #39

Expand All @@ -90,11 +93,6 @@ v3.6.0 (2023-04-16)
- Fixed resuming of enclosing timers especially combination of concurrent media types like video, audio or slideshow
- Improved notifications and competitive behavior (introduced extra low priority)

v3.5.0 (2023-02-07)
- New feature: priority of timers and competitive behavior
- New feature: System action to put playing device on standby via a CEC peripheral
- Fixed issue so that favourites can be scheduled again

Complete changelog see https://github.com/Heckie75/kodi-addon-timers
</news>
<assets>
Expand Down
2 changes: 1 addition & 1 deletion script.timers/resources/lib/timer/scheduleraction.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def _handleStartingTimers() -> None:
timer.return_vol = self._player.getVolume()

higher_prio_runnings = [running for running in self._runningTimers if running.priority > timer.priority
and running.media_type in get_types_replaced_by_type(timer.media_type)]
and running.is_play_at_start_timer() and running.media_type in get_types_replaced_by_type(timer.media_type)]

if not higher_prio_runnings and timer.is_play_at_start_timer():
self._setTimerToPlayAny(timer)
Expand Down

0 comments on commit 069db8c

Please sign in to comment.