Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion source/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = '1.1.2'
VERSION = '2.0.0'
LOGO = """
███████╗██╗ ██╗ ██████╗ ██╗ ██╗ ██████╗ ███████╗███████╗
██╔════╝██║ ██║██╔═══██╗██║ ██║██╔═══██╗██╔════╝██╔════╝
Expand Down
4 changes: 2 additions & 2 deletions source/data_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down