Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
dist
esp_idf_docs_index_lang_*.json
esp_idf_versions_cache.json
local-utils
out
node_modules
Expand Down
18 changes: 9 additions & 9 deletions idf_versions.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
v5.1-rc2
v5.0.2
v4.4.5
v4.3.5
v4.2.4
v5.5-rc1
v5.4.2
v5.3.3
v5.2.5
v5.1.6
release/v5.5
release/v5.4
release/v5.3
release/v5.2
release/v5.1
release/v5.0
release/v4.4
release/v4.3
release/v4.2
master
4 changes: 0 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2456,7 +2456,6 @@
"@types/jsonic": "^0.3.0",
"@types/marked": "^4.0.2",
"@types/mocha": "^9.1.0",
"@types/nock": "^9.3.1",
"@types/node": "^20.7.0",
"@types/plotly.js-dist-min": "^2.3.2",
"@types/sanitize-html": "^2.6.2",
Expand Down Expand Up @@ -2486,7 +2485,6 @@
"jsonic": "^1.0.1",
"mocha": "^9.2.0",
"mocha-junit-reporter": "^1.23.3",
"nock": "^10.0.6",
"ovsx": "^0.10.2",
"prettier": "2.0.2",
"pretty-quick": "^2.0.1",
Expand Down Expand Up @@ -2518,9 +2516,7 @@
"bignumber.js": "^9.0.1",
"del": "^4.1.1",
"es6-promisify": "^6.0.0",
"follow-redirects": "^1.15.6",
"fs-extra": "^8.1.0",
"https-proxy-agent": "^3.0.0",
"interactjs": "^1.9.18",
"marked": "^4.0.12",
"maska": "^2.1.10",
Expand Down
9 changes: 9 additions & 0 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,16 +98,25 @@ export namespace ESP {
export const VERSION = "2.39.2";
export const IDF_EMBED_GIT_URL = `https://dl.espressif.com/dl/idf-git/idf-git-${VERSION}-win64.zip`;
export const GITHUB_EMBED_GIT_URL = `https://github.com/git-for-windows/git/releases/download/v${VERSION}.windows.1/MinGit-${VERSION}-64-bit.zip`;
// File sizes in bytes
export const IDF_EMBED_GIT_SIZE = 29211171; // ~27.8 MB
export const GITHUB_EMBED_GIT_SIZE = 29211171; // ~27.8 MB (from GitHub Releases API)
}
export namespace OLD_IDF_EMBED_PYTHON {
export const VERSION = "3.8.7";
export const IDF_EMBED_PYTHON_URL = `https://dl.espressif.com/dl/idf-python/idf-python-${VERSION}-embed-win64.zip`;
export const GITHUB_EMBED_PYTHON_URL = `https://github.com/espressif/idf-python/releases/download/v${VERSION}/idf-python-${VERSION}-embed-win64.zip`;
// File sizes in bytes
export const IDF_EMBED_PYTHON_SIZE = 20086226; // ~19.1 MB
export const GITHUB_EMBED_PYTHON_SIZE = 21471135; // ~20.5 MB (from GitHub Releases API)
}
export namespace IDF_EMBED_PYTHON {
export const VERSION = "3.11.2";
export const IDF_EMBED_PYTHON_URL = `https://dl.espressif.com/dl/idf-python/idf-python-${VERSION}-embed-win64.zip`;
export const GITHUB_EMBED_PYTHON_URL = `https://github.com/espressif/idf-python/releases/download/v${VERSION}/idf-python-${VERSION}-embed-win64.zip`;
// File sizes in bytes
export const IDF_EMBED_PYTHON_SIZE = 14106455; // ~13.4 MB
export const GITHUB_EMBED_PYTHON_SIZE = 14106455; // ~13.4 MB (from GitHub Releases API)
}
export const GithubRepository =
"https://github.com/espressif/vscode-esp-idf-extension";
Expand Down
Loading