Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Blender LTS releases as of 20231003 #2052

Merged
merged 1 commit into from
Oct 6, 2023
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
50 changes: 17 additions & 33 deletions blender.sls
Original file line number Diff line number Diff line change
Expand Up @@ -18,37 +18,21 @@ blender:

# Note: Since April/May 2021, installer name has changed slightly (windows64 -> windows-x64).
# Note2: Newer versions of Blender do not provide 32-bit installers anymore.
{% for version, patch in [('3.3', '3'),
('3.3', '2'),
('3.3', '1'),
('3.3', '0'),
('2.93', '14'),
('2.93', '13'),
('2.93', '12'),
('2.93', '11'),
('2.93', '10'),
('2.93', '9'),
('2.93', '8'),
('2.93', '7'),
('2.93', '6'),
('2.93', '5'),
('2.93', '4'),
('2.93', '3'),
('2.93', '2'),
('2.93', '1'),
('2.93', '0'),
('2.83', '18'),
('2.83', '17'),
('2.83', '16'),
('2.83', '15'),
('2.83', '14')] %}
'{{ version }}.{{ patch }}':
full_name: 'blender'
installer: 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender{{version}}/blender-{{version}}.{{patch}}-windows-x64.msi'
uninstaller: 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender{{version}}/blender-{{version}}.{{patch}}-windows-x64.msi'
install_flags: '/qn /norestart'
uninstall_flags: '/qn /norestart'
msiexec: True
locale: en_US
reboot: False
{% for version, patches in [
('3.6', ['4', '3', '2', '1', '0']),
('3.3', ['11', '10', '9', '8', '7', '6', '5', '4', '3', '2', '1', '0']),
('2.93', ['14', '13', '12', '11', '10', '9', '8', '7', '6', '5', '4', '3', '2', '1', '0']),
('2.83', ['18', '17', '16', '15', '14'])
] %}
{% for patch in patches %}
'{{ version }}.{{ patch }}':
full_name: 'blender'
installer: 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender{{version}}/blender-{{version}}.{{patch}}-windows-x64.msi'
uninstaller: 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender{{version}}/blender-{{version}}.{{patch}}-windows-x64.msi'
install_flags: '/qn /norestart'
uninstall_flags: '/qn /norestart'
msiexec: True
locale: en_US
reboot: False
{% endfor %}
{% endfor %}
Loading