Skip to content

Commit

Permalink
Merge pull request #77 from OpenVoiceOS/release-1.3.2a1
Browse files Browse the repository at this point in the history
Release 1.3.2a1
  • Loading branch information
JarbasAl authored Jan 19, 2025
2 parents 9ff2777 + 429a2f3 commit 625309d
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.8
python-version: "3.10"
- name: Install Build Tools
run: |
python -m pip install build wheel
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/install_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
max-parallel: 2
matrix:
python-version: [ 3.7, 3.8, 3.9, "3.10" ]
python-version: [3.9, "3.10", "3.11"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.8
python-version: "3.10"
- name: Install Build Tools
run: |
python -m pip install build wheel
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.8
python-version: "3.10"
- name: Install Build Tools
run: |
python -m pip install build wheel
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,10 @@ on:
workflow_dispatch:

jobs:
py_build_tests:
uses: neongeckocom/.github/.github/workflows/python_build_tests.yml@master
with:
python_version: "3.8"

unit_tests:
strategy:
matrix:
python-version: [ 3.7, 3.8, 3.9, "3.10", "3.11" ]
python-version: [3.9, "3.10", "3.11"]
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
Expand Down
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
# Changelog

## [1.3.0a1](https://github.com/OpenVoiceOS/ovos-gui/tree/1.3.0a1) (2024-12-26)
## [1.3.2a1](https://github.com/OpenVoiceOS/ovos-gui/tree/1.3.2a1) (2025-01-19)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-gui/compare/1.2.0...1.3.0a1)
[Full Changelog](https://github.com/OpenVoiceOS/ovos-gui/compare/1.3.1a1...1.3.2a1)

**Merged pull requests:**

- feat:face\_template [\#70](https://github.com/OpenVoiceOS/ovos-gui/pull/70) ([JarbasAl](https://github.com/JarbasAl))
- fix: remove deprecated PIDLock usage [\#76](https://github.com/OpenVoiceOS/ovos-gui/pull/76) ([JarbasAl](https://github.com/JarbasAl))

## [1.3.1a1](https://github.com/OpenVoiceOS/ovos-gui/tree/1.3.1a1) (2025-01-07)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-gui/compare/1.3.0...1.3.1a1)

**Merged pull requests:**

- fix:missing messages to forward [\#74](https://github.com/OpenVoiceOS/ovos-gui/pull/74) ([JarbasAl](https://github.com/JarbasAl))



Expand Down
4 changes: 0 additions & 4 deletions ovos_gui/__main__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from ovos_config.locale import setup_locale
from ovos_utils import wait_for_exit_signal
from ovos_utils.log import LOG, init_service_logger
from ovos_utils.process_utils import reset_sigint_handler, PIDLock

from ovos_gui.service import GUIService

Expand All @@ -19,10 +18,7 @@ def on_error(e='Unknown'):


def main(ready_hook=on_ready, error_hook=on_error, stopping_hook=on_stopping):
PIDLock.init()
reset_sigint_handler()
init_service_logger("gui")
PIDLock("gui")
LOG.debug("GUI websocket created")
try:
setup_locale()
Expand Down
8 changes: 8 additions & 0 deletions ovos_gui/namespace.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,13 +461,21 @@ def _define_message_handlers(self):
def _define_messages_to_forward(self):
"""Messages from the core bus to be forwarded to GUI clients."""
messages_to_forward = [
# Core
"ovos.utterance.handled",
"ovos.utterance.cancelled",
"mycroft.skill.handler.start",
"mycroft.skill.handler.complete",
"complete_intent_failure",
# Audio Service
"speak",
"recognizer_loop:audio_output_start",
"recognizer_loop:audio_output_end",
# Speech Service
"recognizer_loop:sleep",
"recognizer_loop:wake_up",
"mycroft.awoken",
"recognizer_loop:utterance",
"recognizer_loop:wakeword",
"recognizer_loop:recognition_unknown",
"recognizer_loop:record_begin",
Expand Down
4 changes: 2 additions & 2 deletions ovos_gui/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# START_VERSION_BLOCK
VERSION_MAJOR = 1
VERSION_MINOR = 3
VERSION_BUILD = 0
VERSION_ALPHA = 0
VERSION_BUILD = 2
VERSION_ALPHA = 1
# END_VERSION_BLOCK

0 comments on commit 625309d

Please sign in to comment.