From 3bcae6231459867284f77b639eb242398ff25340 Mon Sep 17 00:00:00 2001 From: Schurck Date: Tue, 13 Jul 2021 01:21:15 +0200 Subject: [PATCH] fix version name --- tradoge.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tradoge.py b/tradoge.py index 7b5f3fe..fb3d893 100644 --- a/tradoge.py +++ b/tradoge.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # Developed by Guillaume Schurck : https://github.com/gschurck -# TraDOGE v1.3 +# TraDOGE v1.3.1 import subprocess import sys @@ -106,7 +106,7 @@ def remaining_seconds(self): def check_updates(): response = requests.get("https://api.github.com/repos/gschurck/tradoge/releases/latest") tag_name = response.json()["tag_name"] - if tag_name != 'v1.3': + if tag_name != 'v1.3.1': print(Back.BLUE + 'NEW UPDATE : ' + tag_name + Back.RESET) print(Fore.BLUE + 'Please install new version of TraDOGE ' + tag_name) print('Follow this link : https://github.com/gschurck/tradoge/releases/latest \n' + Fore.RESET)