Skip to content

Commit

Permalink
Fix running state detection typo
Browse files Browse the repository at this point in the history
  • Loading branch information
UncleGoogle committed Jan 16, 2022
1 parent a718a7a commit c34573d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Version 1.1.1
[Fix]
- running state detection typo introduced in 1.1.0

## Version 1.1.0
[Added]
- support for osu!lazer as a separate game instance #9
Expand Down
2 changes: 1 addition & 1 deletion src/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def is_installed(self) -> bool:
return self._exe is not None and self._exe.exists()

@property
def is_rtlnning(self):
def is_running(self):
if self._proc is None:
return False
if not self._proc.is_running():
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Integration for osu!",
"platform": "egg",
"guid": "79764115-b455-4ff0-be13-a316c7c53dec",
"version": "1.1.0",
"version": "1.1.1",
"description": "Until GOG provide osu id this plugin is shown as Newegg",
"author": "Mesco",
"email": "[email protected]",
Expand Down

0 comments on commit c34573d

Please sign in to comment.