YouTubeDownloader v1.1.2
YouTube content downloader
Loading...
Searching...
No Matches
version.py
Go to the documentation of this file.
1"""!
2********************************************************************************
3@file version.py
4@brief Version and general information
5********************************************************************************
6"""
7
8# Version
9VERSION_MAJOR = 1 # major changes/breaks at API (e.g incompatibility)
10VERSION_MINOR = 1 # minor changes/does not break the API (e.g new feature)
11VERSION_PATCH = 2 # Bug fixes
12VERSION_BUILD = 0 # build number (if available)
13
14
15__title__ = "YouTubeDownloader"
16__description__ = "YouTube content downloader"
17__author__ = "Timo Unger"
18__owner__ = "timounger"
19__repo__ = "YouTubeDownloader"
20__copyright__ = f"Copyright © 2021-2025 {__author__}"
21__license__ = "GNU General Public License"
22__home__ = f"https://{__owner__}.github.io/{__repo__}"
23
24
25if VERSION_BUILD == 0:
26 PRERELEASE_BUILD = False
27 __version__ = f"{VERSION_MAJOR}.{VERSION_MINOR}.{VERSION_PATCH}"
28else:
29 PRERELEASE_BUILD = True
30 __version__ = f"{VERSION_MAJOR}.{VERSION_MINOR}.{VERSION_PATCH}.{VERSION_BUILD}"