Skip to content

Commit d23d94e

Browse files
authored
Merge pull request #139 from OpenVoiceOS/release-1.0.2a1
Release 1.0.2a1
2 parents 0ad2a68 + a1cb40d commit d23d94e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CHANGELOG.md

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

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

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

77
**Merged pull requests:**
88

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

1111

1212

ovos_bus_client/apis/gui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ def show_image(self, url: str, caption: Optional[str] = None,
597597
False: 'Default' always show animations.
598598
"""
599599
url = self._resolve_url(url)
600-
if not os.path.isfile(url):
600+
if not url.startswith("http") and not os.path.isfile(url):
601601
LOG.error(f"Provided image file does not exist! '{url}'")
602602
return
603603
self["image"] = url
@@ -633,7 +633,7 @@ def show_animated_image(self, url: str, caption: Optional[str] = None,
633633
False: 'Default' always show animations.
634634
"""
635635
url = self._resolve_url(url)
636-
if not os.path.isfile(url):
636+
if not url.startswith("http") and not os.path.isfile(url):
637637
LOG.error(f"Provided image file does not exist! '{url}'")
638638
return
639639
self["image"] = url

ovos_bus_client/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 = 0
4-
VERSION_BUILD = 1
5-
VERSION_ALPHA = 0
4+
VERSION_BUILD = 2
5+
VERSION_ALPHA = 1
66
# END_VERSION_BLOCK

0 commit comments

Comments
 (0)