We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cd5a1e7 + 1ce8654 commit 44372bfCopy full SHA for 44372bf
algobot/__main__.py
@@ -97,7 +97,8 @@ def __init__(self, parent=None):
97
elif algobot.LATEST_VERSION == UNKNOWN:
98
self.add_to_live_activity_monitor('Failed to fetch latest version metadata.')
99
elif algobot.LATEST_VERSION == algobot.CURRENT_VERSION:
100
- self.add_to_live_activity_monitor('No updates found.')
+ self.add_to_live_activity_monitor(f'No updates found. You are running the latest version: '
101
+ f'{algobot.CURRENT_VERSION}')
102
else:
103
higher_version = compare_versions(algobot.CURRENT_VERSION, algobot.LATEST_VERSION)
104
if higher_version == algobot.LATEST_VERSION:
0 commit comments