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
9
VERSION_MAJOR = 1
# major changes/breaks at API (e.g incompatibility)
10
VERSION_MINOR = 1
# minor changes/does not break the API (e.g new feature)
11
VERSION_PATCH = 2
# Bug fixes
12
VERSION_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
25
if
VERSION_BUILD == 0:
26
PRERELEASE_BUILD =
False
27
__version__ = f
"{VERSION_MAJOR}.{VERSION_MINOR}.{VERSION_PATCH}"
28
else
:
29
PRERELEASE_BUILD =
True
30
__version__ = f
"{VERSION_MAJOR}.{VERSION_MINOR}.{VERSION_PATCH}.{VERSION_BUILD}"
Source
version.py
Generated on Wed May 21 2025 12:35:17 for YouTubeDownloader by
1.12.0