Skip to content

Commit

Permalink
Merge pull request #139 from OpenVoiceOS/release-1.0.2a1
Browse files Browse the repository at this point in the history
Release 1.0.2a1
  • Loading branch information
JarbasAl authored Nov 15, 2024
2 parents 0ad2a68 + a1cb40d commit d23d94e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Changelog

## [1.0.1a1](https://github.com/OpenVoiceOS/ovos-bus-client/tree/1.0.1a1) (2024-11-15)
## [1.0.2a1](https://github.com/OpenVoiceOS/ovos-bus-client/tree/1.0.2a1) (2024-11-15)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-bus-client/compare/1.0.0...1.0.1a1)
[Full Changelog](https://github.com/OpenVoiceOS/ovos-bus-client/compare/1.0.1...1.0.2a1)

**Merged pull requests:**

- fix: resolve image urls [\#136](https://github.com/OpenVoiceOS/ovos-bus-client/pull/136) ([JarbasAl](https://github.com/JarbasAl))
- fix: image urls [\#138](https://github.com/OpenVoiceOS/ovos-bus-client/pull/138) ([JarbasAl](https://github.com/JarbasAl))



Expand Down
4 changes: 2 additions & 2 deletions ovos_bus_client/apis/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ def show_image(self, url: str, caption: Optional[str] = None,
False: 'Default' always show animations.
"""
url = self._resolve_url(url)
if not os.path.isfile(url):
if not url.startswith("http") and not os.path.isfile(url):
LOG.error(f"Provided image file does not exist! '{url}'")
return
self["image"] = url
Expand Down Expand Up @@ -633,7 +633,7 @@ def show_animated_image(self, url: str, caption: Optional[str] = None,
False: 'Default' always show animations.
"""
url = self._resolve_url(url)
if not os.path.isfile(url):
if not url.startswith("http") and not os.path.isfile(url):
LOG.error(f"Provided image file does not exist! '{url}'")
return
self["image"] = url
Expand Down
4 changes: 2 additions & 2 deletions ovos_bus_client/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 = 1
VERSION_ALPHA = 0
VERSION_BUILD = 2
VERSION_ALPHA = 1
# END_VERSION_BLOCK

0 comments on commit d23d94e

Please sign in to comment.