Skip to content

Commit

Permalink
Merge pull request #2075 from ricekab/master
Browse files Browse the repository at this point in the history
Added Blender LTS releases as of 20240223
  • Loading branch information
dafyddj authored Feb 29, 2024
2 parents 80ea3a4 + 3a9492c commit 7d19d46
Showing 1 changed file with 16 additions and 22 deletions.
38 changes: 16 additions & 22 deletions blender.sls
Original file line number Diff line number Diff line change
@@ -1,38 +1,32 @@
# both 32-bit (x86) AND a 64-bit (AMD64) installer available
{% set PROGRAM_FILES = "%ProgramFiles%" %}
{% set PROGRAM_FILES = "%ProgramFiles%" -%}
blender:
'2.78':
full_name: 'Blender'
{% if grains['cpuarch'] == 'AMD64' %}
{% if grains['cpuarch'] == 'AMD64' -%}
installer: 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'
uninstaller: 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows64.msi'
{% else %}
{% else -%}
installer: 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows32.msi'
uninstaller: 'https://ftp.nluug.nl/pub/graphics/blender/release/Blender2.78/blender-2.78-windows32.msi'
{% endif %}
{% endif -%}
install_flags: '/qn /norestart'
uninstall_flags: '/qn /norestart'
msiexec: True
locale: en_US
reboot: False

# 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, patches in [
('3.6', ['4', '3', '2', '1', '0']),
('3.3', ['11', '10', '9', '8', '7', '6', '5', '4', '3', '2', '1', '0']),
{% for version, patches in [
('4.0', ['2', '1', '0']),
('3.6', ['9', '8', '7', '5', '4', '3', '2', '1', '0']),
('3.3', ['16', '15', '14', '12', '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
{% 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'
install_flags: '/qn /norestart'
uninstall_flags: '/qn /norestart'
msiexec: True
{% endfor %}
{% endfor %}
{% endfor %}

0 comments on commit 7d19d46

Please sign in to comment.