Skip to content

Commit 625309d

Browse files
authored
Merge pull request #77 from OpenVoiceOS/release-1.3.2a1
Release 1.3.2a1
2 parents 9ff2777 + 429a2f3 commit 625309d

File tree

9 files changed

+26
-19
lines changed

9 files changed

+26
-19
lines changed

.github/workflows/build_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup Python
1414
uses: actions/setup-python@v1
1515
with:
16-
python-version: 3.8
16+
python-version: "3.10"
1717
- name: Install Build Tools
1818
run: |
1919
python -m pip install build wheel

.github/workflows/install_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
max-parallel: 2
1313
matrix:
14-
python-version: [ 3.7, 3.8, 3.9, "3.10" ]
14+
python-version: [3.9, "3.10", "3.11"]
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v2

.github/workflows/publish_stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup Python
2727
uses: actions/setup-python@v1
2828
with:
29-
python-version: 3.8
29+
python-version: "3.10"
3030
- name: Install Build Tools
3131
run: |
3232
python -m pip install build wheel

.github/workflows/release_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: Setup Python
4747
uses: actions/setup-python@v1
4848
with:
49-
python-version: 3.8
49+
python-version: "3.10"
5050
- name: Install Build Tools
5151
run: |
5252
python -m pip install build wheel

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,10 @@ on:
3030
workflow_dispatch:
3131

3232
jobs:
33-
py_build_tests:
34-
uses: neongeckocom/.github/.github/workflows/python_build_tests.yml@master
35-
with:
36-
python_version: "3.8"
37-
3833
unit_tests:
3934
strategy:
4035
matrix:
41-
python-version: [ 3.7, 3.8, 3.9, "3.10", "3.11" ]
36+
python-version: [3.9, "3.10", "3.11"]
4237
runs-on: ubuntu-latest
4338
timeout-minutes: 15
4439
steps:

CHANGELOG.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
# Changelog
22

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

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

77
**Merged pull requests:**
88

9-
- feat:face\_template [\#70](https://github.com/OpenVoiceOS/ovos-gui/pull/70) ([JarbasAl](https://github.com/JarbasAl))
9+
- fix: remove deprecated PIDLock usage [\#76](https://github.com/OpenVoiceOS/ovos-gui/pull/76) ([JarbasAl](https://github.com/JarbasAl))
10+
11+
## [1.3.1a1](https://github.com/OpenVoiceOS/ovos-gui/tree/1.3.1a1) (2025-01-07)
12+
13+
[Full Changelog](https://github.com/OpenVoiceOS/ovos-gui/compare/1.3.0...1.3.1a1)
14+
15+
**Merged pull requests:**
16+
17+
- fix:missing messages to forward [\#74](https://github.com/OpenVoiceOS/ovos-gui/pull/74) ([JarbasAl](https://github.com/JarbasAl))
1018

1119

1220

ovos_gui/__main__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from ovos_config.locale import setup_locale
22
from ovos_utils import wait_for_exit_signal
33
from ovos_utils.log import LOG, init_service_logger
4-
from ovos_utils.process_utils import reset_sigint_handler, PIDLock
54

65
from ovos_gui.service import GUIService
76

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

2019

2120
def main(ready_hook=on_ready, error_hook=on_error, stopping_hook=on_stopping):
22-
PIDLock.init()
23-
reset_sigint_handler()
2421
init_service_logger("gui")
25-
PIDLock("gui")
2622
LOG.debug("GUI websocket created")
2723
try:
2824
setup_locale()

ovos_gui/namespace.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -461,13 +461,21 @@ def _define_message_handlers(self):
461461
def _define_messages_to_forward(self):
462462
"""Messages from the core bus to be forwarded to GUI clients."""
463463
messages_to_forward = [
464+
# Core
465+
"ovos.utterance.handled",
466+
"ovos.utterance.cancelled",
467+
"mycroft.skill.handler.start",
468+
"mycroft.skill.handler.complete",
469+
"complete_intent_failure",
464470
# Audio Service
471+
"speak",
465472
"recognizer_loop:audio_output_start",
466473
"recognizer_loop:audio_output_end",
467474
# Speech Service
468475
"recognizer_loop:sleep",
469476
"recognizer_loop:wake_up",
470477
"mycroft.awoken",
478+
"recognizer_loop:utterance",
471479
"recognizer_loop:wakeword",
472480
"recognizer_loop:recognition_unknown",
473481
"recognizer_loop:record_begin",

ovos_gui/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# START_VERSION_BLOCK
22
VERSION_MAJOR = 1
33
VERSION_MINOR = 3
4-
VERSION_BUILD = 0
5-
VERSION_ALPHA = 0
4+
VERSION_BUILD = 2
5+
VERSION_ALPHA = 1
66
# END_VERSION_BLOCK

0 commit comments

Comments
 (0)