Skip to content
Merged
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
6 changes: 4 additions & 2 deletions source/addonAPIVersion.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,15 @@
"""

CURRENT = (buildVersion.version_year, buildVersion.version_major, buildVersion.version_minor)
BACK_COMPAT_TO = (2019, 3, 0)
BACK_COMPAT_TO = (2021, 1, 0)
"""
As BACK_COMPAT_TO is incremented, the changed / removed parts / or reasoning should be added below.
These only serve to act as a reminder, the changelog should be consulted for a comprehensive listing.
EG: (x, y, z): Large changes to speech.py
Comment thread
feerrenrut marked this conversation as resolved.
---
(0, 0, 0): API version zero, used to signify addons released prior to API version checks.
(2021, 1, 0): wxPython 4.1.1, SayAll / Speech re-arranged, removal of previously deprecated code.
(2019, 3, 0): speech refactor, Python 3
(0, 0, 0): API version zero, used to signify addons released prior to API version checks.
"""

#: Compiled regular expression to match an addon API version string.
Expand Down