From e8e5d939d7b2f19de6ac68df50e0df0a9eefecf3 Mon Sep 17 00:00:00 2001 From: Vladislav Makarychev <99085361+worthyworm@users.noreply.github.com> Date: Sun, 1 Mar 2026 11:55:36 +0300 Subject: [PATCH 1/3] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 47e1969..4da09ea 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ # Showoff - A simple sports stats tracker -![Version](https://img.shields.io/badge/version-1.1.2-blue) +![Version](https://img.shields.io/badge/version-2.0.0-blue) ![Python](https://img.shields.io/badge/python-3.9+-green) ![License](https://img.shields.io/badge/license-MIT-orange) ![made with love](https://img.shields.io/badge/made%20with-%3C3-red) -> **Versions below v1.1.2 are not-supported** +> **Versions below v2.0.0 are temporarily not-supported. Stay tuned for updates!** Showoff is a simple sports self-statistics tracker for players or their coaches, written to be easy to use and to be informational. Currently supports basketball, soccer. @@ -29,9 +29,9 @@ You can run showoff using [binaries for your system](https://github.com/worthywo | Platform | Status | Latest | |----------|-----------------------------|--------------------| -| Windows | Ready ✅ | v1.1.2 | -| Linux | Ready ✅ | v1.1.2 | -| macOS | Ready ✅ | v1.1.2 | +| Windows | Ready ✅ | v2.0.0 | +| Linux | Ready ✅ | v2.0.0 | +| macOS | Ready ✅ | v2.0.0 | 1. Download the latest binary files for your system: - [Latest Release](https://github.com/worthyworm/showoff/releases/latest) From e7620e5906b3a8fcf114172ce4349c0edfa51cf2 Mon Sep 17 00:00:00 2001 From: Vladislav Makarychev <99085361+worthyworm@users.noreply.github.com> Date: Sun, 1 Mar 2026 11:56:06 +0300 Subject: [PATCH 2/3] Update __init__.py --- source/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/__init__.py b/source/__init__.py index 8571e94..a8b4286 100644 --- a/source/__init__.py +++ b/source/__init__.py @@ -1,4 +1,4 @@ -VERSION = '1.1.2' +VERSION = '2.0.0' LOGO = """ ███████╗██╗ ██╗ ██████╗ ██╗ ██╗ ██████╗ ███████╗███████╗ ██╔════╝██║ ██║██╔═══██╗██║ ██║██╔═══██╗██╔════╝██╔════╝ From cf53238bb28d6cc581816202587a25c64ae537f2 Mon Sep 17 00:00:00 2001 From: Vladislav Makarychev <99085361+worthyworm@users.noreply.github.com> Date: Sun, 1 Mar 2026 11:56:51 +0300 Subject: [PATCH 3/3] Update data_handler.py --- source/data_handler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/data_handler.py b/source/data_handler.py index c422b90..c6b499b 100644 --- a/source/data_handler.py +++ b/source/data_handler.py @@ -32,7 +32,7 @@ try: with open('basketball.json', 'r', encoding='utf-8') as f: db = json.load(f) - if tuple(map(int, db['version'].split('.'))) < (1, 1, 2): + if tuple(map(int, db['version'].split('.'))) < (2, 0, 0): print(f'{texts["unsupported_version"]}: {db["version"]}version') input('Enter to continue') sys.exit(1) @@ -52,7 +52,7 @@ try: with open('soccer.json', 'r', encoding='utf-8') as f: db = json.load(f) - if tuple(map(int, db['version'].split('.'))) < (1, 1, 2): + if tuple(map(int, db['version'].split('.'))) < (2, 0, 0): print(f'{texts["unsupported_version"]}: {db["version"]}') input('Enter to continue') sys.exit(1)