Skip to content

Commit ae91f05

Browse files
authored
Merge pull request #332 from espressif/release-offline5.5-installer
Release offline installer with ESP-IDF v5.5
2 parents 91741e1 + b3af569 commit ae91f05

File tree

4 files changed

+18
-14
lines changed

4 files changed

+18
-14
lines changed

.github/workflows/build-installer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ env:
3030
ESPRESSIF_IDE_VERSION: ${{ inputs.espressif_ide_version }}
3131
ONLINE_INSTALLER_VERSION: ${{ inputs.online_installer_version }}
3232
# Based on this defined supported IDF versions are created installer buttons in index.html from releases.json
33-
SUPPORTED_IDF_VERSIONS: ('5.2', '5.1', '5.0', '5.3', '5.4')
33+
SUPPORTED_IDF_VERSIONS: ('5.2', '5.1', '5.3', '5.4', '5.5')
3434

3535
jobs:
3636
build-installer-online:

scripts/docs_update_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def main():
164164
ide_version = environ.get('ESPRESSIF_IDE_VERSION', '') # e.g. '2.13.69'
165165
online_installer_version = environ.get('ONLINE_INSTALLER_VERSION', '') # e.g. '2.25'
166166

167-
supported_idf_versions = eval(environ.get('SUPPORTED_IDF_VERSIONS', "('5.2', '5.1', '5.0', '5.3')")) # e.g. ('5.2', '4.4', '5.1', '5.0')
167+
supported_idf_versions = eval(environ.get('SUPPORTED_IDF_VERSIONS', "('5.2', '5.1', '5.3', '5.4', '5.5')")) # e.g. ('5.2', '4.4', '5.1', '5.0')
168168
supported_idf_versions = list(supported_idf_versions)
169169

170170
if not idf_version and installer_type != 'online':

src/Resources/download/index.html

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,16 @@ <h2 class="text-center">Open Source IoT Development Framework for ESP32</h2>
215215
</form>
216216
</div>
217217

218+
<div class="download-button">
219+
<form method="get" action="https://dl.espressif.com/dl/idf-installer/esp-idf-tools-setup-offline-5.5.exe">
220+
<button class="button-offline">
221+
<i class="fa fa-download" aria-hidden="true"></i>
222+
<div>ESP-IDF v5.5 - Offline Installer</div>
223+
<div>Windows 10, 11</div>
224+
<div>Size: 1.51 GB</div>
225+
</button>
226+
</form>
227+
</div>
218228

219229
<div class="download-button">
220230
<form method="get" action="https://dl.espressif.com/dl/idf-installer/esp-idf-tools-setup-offline-5.4.2.exe">
@@ -259,18 +269,6 @@ <h2 class="text-center">Open Source IoT Development Framework for ESP32</h2>
259269
</button>
260270
</form>
261271
</div>
262-
263-
<div class="download-button">
264-
<form method="get" action="https://dl.espressif.com/dl/idf-installer/esp-idf-tools-setup-offline-5.0.8.exe">
265-
<button class="button-offline">
266-
<i class="fa fa-download" aria-hidden="true"></i>
267-
<div>ESP-IDF v5.0.8 - Offline Installer</div>
268-
<div>Windows 10, 11</div>
269-
<div>Size: 1 GB</div>
270-
</button>
271-
</form>
272-
</div>
273-
274272

275273
</div>
276274
<div class="instructions">

src/Resources/download/releases.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
[
2+
{
3+
"version": "5.5",
4+
"type": "offline",
5+
"date": "2025-08-01",
6+
"size": "1.56 GB"
7+
},
28
{
39
"version": "5.4.2",
410
"type": "offline",

0 commit comments

Comments
 (0)