Skip to content

Commit

Permalink
SteamAutoFriend v1.3.3
Browse files Browse the repository at this point in the history
- added correct version numbers
  • Loading branch information
pebnn committed Oct 14, 2022
1 parent aa7a4ca commit ca5a2a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SteamAutoFriend.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import zipfile
from chromedriver_version import chromedriver_versions

version = "1.3.2"
version = "1.3.3"
# Disable clutter in console
debug = False
if debug == False:
Expand Down Expand Up @@ -349,7 +349,7 @@ def find_by_css(selector, text=''):
uptime_minutes = getUptime() // 60
uptime_hours = uptime_minutes // 60
uptime = "%02d:%02d" % (uptime_hours, uptime_minutes % 60)
os.system("title SteamAutoFriend v1.3.2 by pebnn - Uptime: " + str(uptime))
os.system("title SteamAutoFriend v1.3.3 by pebnn - Uptime: " + str(uptime))

if count > clear_console and clear_console_enable == True: # Clear console lines after set amount of lines has been printed (clear_console is set in config.yml)
try:
Expand Down

0 comments on commit ca5a2a0

Please sign in to comment.