Skip to content

Commit

Permalink
Merge pull request #28 from OpenVoiceOS/release-0.5.1a1
Browse files Browse the repository at this point in the history
Release 0.5.1a1
  • Loading branch information
JarbasAl authored Oct 18, 2024
2 parents eef777d + 543d629 commit 555027b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Changelog

## [0.5.0a1](https://github.com/OpenVoiceOS/ovos-skill-application-launcher/tree/0.5.0a1) (2024-10-18)
## [0.5.1a1](https://github.com/OpenVoiceOS/ovos-skill-application-launcher/tree/0.5.1a1) (2024-10-18)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-skill-application-launcher/compare/V0.4.0...0.5.0a1)
[Full Changelog](https://github.com/OpenVoiceOS/ovos-skill-application-launcher/compare/V0.5.0...0.5.1a1)

**Merged pull requests:**

- feat:switch\_to\_window [\#25](https://github.com/OpenVoiceOS/ovos-skill-application-launcher/pull/25) ([JarbasAl](https://github.com/JarbasAl))
- fix:wayland compat [\#27](https://github.com/OpenVoiceOS/ovos-skill-application-launcher/pull/27) ([JarbasAl](https://github.com/JarbasAl))

## [V0.4.0](https://github.com/OpenVoiceOS/ovos-skill-application-launcher/tree/V0.4.0) (2024-10-17)
## [V0.5.0](https://github.com/OpenVoiceOS/ovos-skill-application-launcher/tree/V0.5.0) (2024-10-18)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-skill-application-launcher/compare/0.4.0...V0.4.0)
[Full Changelog](https://github.com/OpenVoiceOS/ovos-skill-application-launcher/compare/0.5.0...V0.5.0)



Expand Down
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def close_app(self, app: str) -> bool:

def is_running(self, app: str) -> bool:
""" check if a application is running"""
if self.match_window(app):
if self.wmctrl is not None and self.match_window(app):
return True
for p in self.match_process(app):
return True
Expand Down
4 changes: 2 additions & 2 deletions version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# START_VERSION_BLOCK
VERSION_MAJOR = 0
VERSION_MINOR = 5
VERSION_BUILD = 0
VERSION_ALPHA = 0
VERSION_BUILD = 1
VERSION_ALPHA = 1
# END_VERSION_BLOCK

0 comments on commit 555027b

Please sign in to comment.