Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Bakker <jeroen@blender.org>2020-10-28 12:14:09 +0300
committerJeroen Bakker <jeroen@blender.org>2020-12-09 11:14:53 +0300
commit3a23f18e02ebe09414a04c399a7294c8e719a72a (patch)
tree45f0e6b51edcce50c3720897fe447b7008716c1f /release/lts/README.md
parentabddd7d5f91a6b00617d4eac8616d54490d45e8d (diff)
Blender LTS: Download + Release notes CMS scripts
This patch contains 2 scripts that will help with 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 ============ * Python 3.8 or later * Python phabricator client version 0.7.0 https://pypi.org/project/phabricator/ For convenience the python modules can be installed using pip. pip3 install -r ./requirements.txt Differential Revision: https://developer.blender.org/D9055
Diffstat (limited to 'release/lts/README.md')
-rw-r--r--release/lts/README.md41
1 files changed, 41 insertions, 0 deletions
diff --git a/release/lts/README.md b/release/lts/README.md
new file mode 100644
index 00000000000..8f7b6f0b87a
--- /dev/null
+++ b/release/lts/README.md
@@ -0,0 +1,41 @@
+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
+============
+
+* Python 3.8 or later
+* Python phabricator client version 0.7.0
+ https://pypi.org/project/phabricator/
+
+For convenience the python modules can be installed using pip
+
+ pip3 install -r ./requirements.txt \ No newline at end of file