blender_test/release/lts
Thomas Dinges c1d360f7fb Fix urls in LTS script.
The urls were missing /release/, leading to 404 links on the LTS download page.
2023-01-18 10:39:50 +01:00
..
create_download_urls.py Fix urls in LTS script. 2023-01-18 10:39:50 +01:00
create_release_notes.py Cleanup: use autopep8 on release/lts 2022-04-20 16:18:42 +10:00
README.md
requirements.txt Blender LTS: Download + Release notes CMS scripts 2020-12-09 09:14:53 +01:00

This folder contains several scripts to smoothen the Blender LTS releases.

create_download_urls.py

This python script is used to generate the download urls which we can copy-paste directly into the CMS of www.blender.org.

Usage: create_download_urls.py --version 2.83.7

Arguments: --version VERSION Version string in the form of {major}.{minor}.{build} (eg 2.83.7)

The resulting html will be printed to the console.

create_release_notes.py

This python script is used to generate the release notes which we can copy-paste directly into the CMS of www.blender.org and stores.

Usage: ./create_release_notes.py --task=T77348 --version=2.83.7

Arguments: --version VERSION Version string in the form of {major}.{minor}.{build} (e.g. 2.83.7) --task TASK Phabricator ticket that is contains the release notes information (e.g. T77348) --format FORMAT Format the result in text, steam, wiki or html

Requirements

For convenience the python modules can be installed using pip

pip3 install -r ./requirements.txt