Skip to content

Commit

Permalink
version 0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
FriendsOfGalaxy committed Oct 1, 2020
1 parent 0891ad4 commit ddf4bb9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def tick(self):
if not self.owned_games_called or (sys.platform == 'win32' and not self.local_games_called):
return

if self.tick_counter % 60 == 0:
if self.tick_counter % 300 == 0:
if not self.update_owned_games_task or self.update_owned_games_task.done():
self.update_owned_games_task = asyncio.create_task(self.update_owned_games())

Expand Down
5 changes: 4 additions & 1 deletion src/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
__version__ = "0.6.1"
__version__ = "0.6.2"

__changelog__ = {
"0.6.2": '''
- Decrese refreshing owned games ratio to make 5 times less API calls
''',
"0.6.1": '''
- Security update: bump psutil to 5.6.6
''',
Expand Down

0 comments on commit ddf4bb9

Please sign in to comment.