Skip to content

Commit

Permalink
Merge pull request #51 from OpenVoiceOS/release-1.1.3a1
Browse files Browse the repository at this point in the history
Release 1.1.3a1
  • Loading branch information
JarbasAl authored Dec 19, 2024
2 parents 7792511 + af7e28b commit 7f80ff3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 21 deletions.
22 changes: 3 additions & 19 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,12 @@
# Changelog

## [1.1.2a1](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/tree/1.1.2a1) (2024-12-19)
## [1.1.3a1](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/tree/1.1.3a1) (2024-12-19)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/compare/1.1.1a1...1.1.2a1)
[Full Changelog](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/compare/1.1.2...1.1.3a1)

**Merged pull requests:**

- fix:dont\_allow\_load\_game [\#48](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/pull/48) ([JarbasAl](https://github.com/JarbasAl))

## [1.1.1a1](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/tree/1.1.1a1) (2024-12-19)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/compare/1.1.0a1...1.1.1a1)

**Merged pull requests:**

- fix:improve\_media\_clf [\#46](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/pull/46) ([JarbasAl](https://github.com/JarbasAl))

## [1.1.0a1](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/tree/1.1.0a1) (2024-12-18)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/compare/1.0.11...1.1.0a1)

**Merged pull requests:**

- feat: save/load game intent [\#44](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/pull/44) ([JarbasAl](https://github.com/JarbasAl))
- fix: active skills in session [\#50](https://github.com/OpenVoiceOS/ovos-ocp-pipeline-plugin/pull/50) ([JarbasAl](https://github.com/JarbasAl))



Expand Down
4 changes: 4 additions & 0 deletions ocp_pipeline/opm.py
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,7 @@ def handle_play_intent(self, message: Message):
query = message.data["query"]
media_type = message.data["media_type"]
skills = message.data.get("skills", [])
sess = SessionManager.get(message)

# search common play skills
lang = standardize_lang_tag(lang)
Expand Down Expand Up @@ -610,6 +611,9 @@ def handle_play_intent(self, message: Message):
player = self.get_player(message)
player.skill_id = best.skill_id
self.update_player_proxy(player)
# add active skill to session
sess.activate_skill(best.skill_id)
message.context["session"] = sess.serialize()
if not player.ocp_available:
self.legacy_play(results, query, message=message)
else:
Expand Down
4 changes: 2 additions & 2 deletions ocp_pipeline/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 = 2
VERSION_ALPHA = 0
VERSION_BUILD = 3
VERSION_ALPHA = 1
# END_VERSION_BLOCK

0 comments on commit 7f80ff3

Please sign in to comment.