Skip to content

Commit

Permalink
Merge pull request #156 from OpenVoiceOS/release-1.1.7a1
Browse files Browse the repository at this point in the history
Release 1.1.7a1
  • Loading branch information
JarbasAl authored Nov 16, 2024
2 parents 0e179c5 + fe561ad commit 44c0ab9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 13 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Changelog

## [1.1.6a1](https://github.com/OpenVoiceOS/ovos-ocp-audio-plugin/tree/1.1.6a1) (2024-11-15)
## [1.1.7a1](https://github.com/OpenVoiceOS/ovos-ocp-audio-plugin/tree/1.1.7a1) (2024-11-16)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-ocp-audio-plugin/compare/V1.1.5...1.1.6a1)
[Full Changelog](https://github.com/OpenVoiceOS/ovos-ocp-audio-plugin/compare/V1.1.6...1.1.7a1)

**Merged pull requests:**

- fix:homescreen app [\#152](https://github.com/OpenVoiceOS/ovos-ocp-audio-plugin/pull/152) ([JarbasAl](https://github.com/JarbasAl))
- fix: featured media [\#155](https://github.com/OpenVoiceOS/ovos-ocp-audio-plugin/pull/155) ([JarbasAl](https://github.com/JarbasAl))

## [V1.1.5](https://github.com/OpenVoiceOS/ovos-ocp-audio-plugin/tree/V1.1.5) (2024-11-06)
## [V1.1.6](https://github.com/OpenVoiceOS/ovos-ocp-audio-plugin/tree/V1.1.6) (2024-11-15)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-ocp-audio-plugin/compare/1.1.5...V1.1.5)
[Full Changelog](https://github.com/OpenVoiceOS/ovos-ocp-audio-plugin/compare/1.1.6...V1.1.6)



Expand Down
7 changes: 3 additions & 4 deletions ovos_plugin_common_play/ocp/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@
from ovos_config import Configuration
from ovos_utils.events import EventSchedulerInterface
from ovos_utils.log import LOG
from ovos_workshop.backwards_compat import (MediaType, Playlist, MediaEntry, PlayerState, LoopState,
PlaybackType, PluginStream, dict2entry)

from ovos_utils.ocp import MediaState, TrackState, PlaybackType, MediaType, Playlist, PluginStream, PlayerState, LoopState, dict2entry
from ovos_plugin_common_play.ocp.constants import OCP_ID
from ovos_plugin_common_play.ocp.utils import is_qtav_available

Expand Down Expand Up @@ -388,7 +386,8 @@ def handle_play_skill_featured_media(self, message):
playlist = message.data["playlist"]

self.player.playlist.clear()
self.player.media.replace(playlist)
self.player.media.search_playlist.replace(playlist)
self.update_search_results()

self.manage_display("disambiguation")

Expand Down
3 changes: 1 addition & 2 deletions ovos_plugin_common_play/ocp/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@

from ovos_bus_client.message import Message
from ovos_utils.log import LOG
from ovos_utils.ocp import MediaType
from ovos_utils.ocp import MediaType, Playlist

from ovos_plugin_common_play.ocp.base import OCPAbstractComponent
from ovos_plugin_common_play.ocp.media import Playlist


class OCPSearch(OCPAbstractComponent):
Expand Down
4 changes: 2 additions & 2 deletions ovos_plugin_common_play/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# START_VERSION_BLOCK
VERSION_MAJOR = 1
VERSION_MINOR = 1
VERSION_BUILD = 6
VERSION_ALPHA = 0
VERSION_BUILD = 7
VERSION_ALPHA = 1
# END_VERSION_BLOCK

0 comments on commit 44c0ab9

Please sign in to comment.