Skip to content

Commit

Permalink
Merge pull request #43 from OpenVoiceOS/release-1.0.3a1
Browse files Browse the repository at this point in the history
Release 1.0.3a1
  • Loading branch information
JarbasAl authored Dec 2, 2024
2 parents 6ad4104 + 3e266c4 commit 693b46c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 17 deletions.
14 changes: 5 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
# Changelog

## [1.0.2a1](https://github.com/OpenVoiceOS/ovos-PHAL-plugin-system/tree/1.0.2a1) (2024-11-29)
## [1.0.3a1](https://github.com/OpenVoiceOS/ovos-PHAL-plugin-system/tree/1.0.3a1) (2024-12-02)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-PHAL-plugin-system/compare/V1.0.1...1.0.2a1)

**Closed issues:**

- Can't restart via GUI [\#39](https://github.com/OpenVoiceOS/ovos-PHAL-plugin-system/issues/39)
[Full Changelog](https://github.com/OpenVoiceOS/ovos-PHAL-plugin-system/compare/V1.0.2...1.0.3a1)

**Merged pull requests:**

- fix: gui pages [\#40](https://github.com/OpenVoiceOS/ovos-PHAL-plugin-system/pull/40) ([JarbasAl](https://github.com/JarbasAl))
- fix: remove deprecated backend client [\#42](https://github.com/OpenVoiceOS/ovos-PHAL-plugin-system/pull/42) ([JarbasAl](https://github.com/JarbasAl))

## [V1.0.1](https://github.com/OpenVoiceOS/ovos-PHAL-plugin-system/tree/V1.0.1) (2024-11-06)
## [V1.0.2](https://github.com/OpenVoiceOS/ovos-PHAL-plugin-system/tree/V1.0.2) (2024-11-29)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-PHAL-plugin-system/compare/1.0.1...V1.0.1)
[Full Changelog](https://github.com/OpenVoiceOS/ovos-PHAL-plugin-system/compare/1.0.2...V1.0.2)



Expand Down
6 changes: 0 additions & 6 deletions ovos_PHAL_plugin_system/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from threading import Event

from json_database import JsonStorageXDG, JsonDatabaseXDG
from ovos_backend_client.identity import IdentityManager
from ovos_bus_client.apis.gui import GUIInterface
from ovos_bus_client.message import Message
from ovos_config.config import Configuration, update_mycroft_config
Expand Down Expand Up @@ -105,11 +104,6 @@ def handle_factory_reset_request(self, message):
self.bus.emit(message.forward("system.factory.reset.start"))
self.bus.emit(message.forward("system.factory.reset.ping"))

if os.path.isfile(IdentityManager.OLD_IDENTITY_FILE):
os.remove(IdentityManager.OLD_IDENTITY_FILE)
if os.path.isfile(IdentityManager.IDENTITY_FILE):
os.remove(IdentityManager.IDENTITY_FILE)

wipe_cache = message.data.get("wipe_cache", True)
if wipe_cache:
p = f"{xdg_cache_home()}/{get_xdg_base()}"
Expand Down
4 changes: 2 additions & 2 deletions ovos_PHAL_plugin_system/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# START_VERSION_BLOCK
VERSION_MAJOR = 1
VERSION_MINOR = 0
VERSION_BUILD = 2
VERSION_ALPHA = 0
VERSION_BUILD = 3
VERSION_ALPHA = 1
# END_VERSION_BLOCK

0 comments on commit 693b46c

Please sign in to comment.