Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Changelog

## [0.1.4a2](https://github.com/OpenVoiceOS/ovos-PHAL-plugin-mk1/tree/0.1.4a2) (2025-01-11)
## [0.1.4a3](https://github.com/OpenVoiceOS/ovos-PHAL-plugin-mk1/tree/0.1.4a3) (2025-12-18)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-PHAL-plugin-mk1/compare/V0.1.3...0.1.4a2)
[Full Changelog](https://github.com/OpenVoiceOS/ovos-PHAL-plugin-mk1/compare/0.1.4...0.1.4a3)

**Merged pull requests:**
**Fixed bugs:**

- added validation using ovos-i2c-detection [\#24](https://github.com/OpenVoiceOS/ovos-PHAL-plugin-mk1/pull/24) ([builderjer](https://github.com/builderjer))
- clear\_previous.lower\(\) == "true"\) AttributeError: 'bool' object has no attribute 'lower' [\#25](https://github.com/OpenVoiceOS/ovos-PHAL-plugin-mk1/issues/25)

## [V0.1.3](https://github.com/OpenVoiceOS/ovos-PHAL-plugin-mk1/tree/V0.1.3) (2024-10-23)
**Merged pull requests:**

[Full Changelog](https://github.com/OpenVoiceOS/ovos-PHAL-plugin-mk1/compare/0.1.3...V0.1.3)
- Configure Renovate [\#27](https://github.com/OpenVoiceOS/ovos-PHAL-plugin-mk1/pull/27) ([renovate[bot]](https://github.com/apps/renovate))



Expand Down
2 changes: 1 addition & 1 deletion ovos_PHAL_plugin_mk1/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def validate(config=None):
""" this method is called before loading the plugin.
If it returns False the plugin is not loaded.
This allows a plugin to run platform checks"""
cfg = config or Configuration().get("PHAL", {}).get("ovos-PHAL-plugin-mk1")
cfg = config or Configuration().get("PHAL", {}).get("ovos-PHAL-plugin-mk1", {})
if cfg and cfg.get("enabled") == True:
return True
if is_mark_1():
Expand Down
2 changes: 1 addition & 1 deletion ovos_PHAL_plugin_mk1/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
VERSION_MAJOR = 0
VERSION_MINOR = 1
VERSION_BUILD = 4
VERSION_ALPHA = 2
VERSION_ALPHA = 3
# END_VERSION_BLOCK
6 changes: 6 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
}