From 6f5cbb5c0e3847c00f2714467df1d4f410b5c82a Mon Sep 17 00:00:00 2001 From: 2press Date: Sun, 24 Nov 2024 21:22:46 +1100 Subject: [PATCH] Update version --- CHANGELOG.md | 38 +++++++++++++++++++++++++------------- inno-setup/scct.iss | 4 ++-- scctool/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 29 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69fd121..b0dedc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -49,7 +49,7 @@ * Add Chinese translation. Thanks to ciwomuli! -## v2.13.3 (2022-11-16) +## v2.13.3 (2022-08-08) ### Fix @@ -130,7 +130,20 @@ * Break "2000 Atmospheres" in mapstats. -## v2.9.2 (2021-01-19) +## v2.9.3 (2021-02-20) + +### Changes + +* Locales updated. + +### Fix + +* Missing meta data of maps will now be updated. + +* Map creator, size and spawn position is now correctly fetched from Liquipedia. + + +## v2.9.2 (2020-11-21) ### New @@ -142,18 +155,10 @@ ### Changes -* Locales updated. - * Dependencies upgraded. -### Fix - -* Missing meta data of maps will now be updated. - -* Map creator, size and spawn position is now correctly fetched from Liquipedia. - -## v2.9.0 (2020-10-25) +## v2.9.1 (2020-10-25) ### New @@ -161,6 +166,15 @@ * Added match grabber for spire.gg solo matches. +### Fix + +* Fixed a bug where Lightshade would be correct to Nightshade when fetch with the match grabber. + + +## v2.9.0 (2020-10-09) + +### New + * Added match grabber for spire.gg team matches. * In 1vs1 mode the intro player names and order can now be directly read from from SCCT instead of SC2. @@ -181,8 +195,6 @@ ### Fix -* Fixed a bug where Lightshade would be correct to Nightshade when fetch with the match grabber. - * File ending of logos are automatically added when missing. * MatchGrabber for RSL will correctly read maps in All-Kill format. diff --git a/inno-setup/scct.iss b/inno-setup/scct.iss index 95e1807..9cdf1b8 100644 --- a/inno-setup/scct.iss +++ b/inno-setup/scct.iss @@ -2,8 +2,8 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "StarCraft Casting Tool" -#define MyAppVersion "2.15.2" -#define MyDataVersion "2.15.0" +#define MyAppVersion "2.16.0" +#define MyDataVersion "2.16.0" #define MyAppPublisher "team pheeniX" #define MyAppURL "https://teampheenix.github.io/StarCraft-Casting-Tool/" #define MyAppExeName "StarCraft-Casting-Tool.exe" diff --git a/scctool/__init__.py b/scctool/__init__.py index 9cfdcad..9c5cce2 100644 --- a/scctool/__init__.py +++ b/scctool/__init__.py @@ -12,7 +12,7 @@ logger = logging.getLogger(__name__) -__version__ = "2.15.2" +__version__ = "2.16.0" __latest_version__ = __version__ __new_version__ = False diff --git a/setup.py b/setup.py index e927604..549732a 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ long_description = f.read() setup(name='StarCraftCastingTool', - version='2.15.2', + version='2.16.0', description=(''), long_description=long_description, long_description_content_type='text/markdown',