-
Notifications
You must be signed in to change notification settings - Fork 312
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add changelog for 1.9.0 release (#1348)
* Add changelog for 1.9.0 release * add flash monitor redirect in buildFlashMonitor command * add validation for getEnvVarsFromIdfTools * add IDF_PYTHON_ENV_PATH validation * Bugfix/walkthrough documentation (#1354) * Update post-installation step * Collapse all menus except commands * update activation init check settings remove extension settings await use showOnBoarding to show welcome page increase timeout of notifications increase notification timeout disable show info message on check extension setting fix lint rm console log * Use major + minor versions, remove patch version (#1360) * add cmd pwsh idf py autocomplete * add scripts to prettier ignore * update changelog * move scripts to root folder * add bypass execution policy for powershell windows --------- Co-authored-by: Radu <[email protected]>
- Loading branch information
1 parent
d6e300f
commit 02e0850
Showing
9 changed files
with
197 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,8 @@ espressif_icon.png | |
get_serial_list.py | ||
.yarnrc | ||
*.vsix | ||
|
||
export.ps1 | ||
export.bat | ||
|
||
#dirs | ||
.vscode | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
DOSKEY idf.py=python.exe "%IDF_PATH%\tools\idf.py" $* | ||
DOSKEY esptool.py=python.exe "%IDF_PATH%\components\esptool_py\esptool\esptool.py" $* | ||
DOSKEY espefuse.py=python.exe "%IDF_PATH%\components\esptool_py\esptool\espefuse.py" $* | ||
DOSKEY espsecure.py=python.exe "%IDF_PATH%\components\esptool_py\esptool\espsecure.py" $* | ||
DOSKEY otatool.py=python.exe "%IDF_PATH%\components\app_update\otatool.py" $* | ||
DOSKEY parttool.py=python.exe "%IDF_PATH%\components\partition_table\parttool.py" $* | ||
cls |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Define the Invoke-idfpy function | ||
function global:Invoke-idfpy { | ||
& python.exe ` | ||
"$($env:IDF_PATH)\tools\idf.py" @args | ||
} | ||
|
||
function global:esptool.py { | ||
& python.exe ` | ||
"$($env:IDF_PATH)\components\esptool_py\esptool\esptool.py" @args | ||
} | ||
|
||
function global:espefuse.py { | ||
& python.exe ` | ||
"$($env:IDF_PATH)\components\esptool_py\esptool\espefuse.py" @args | ||
} | ||
|
||
function global:espsecure.py { | ||
& python.exe ` | ||
"$($env:IDF_PATH)\components\esptool_py\esptool\espsecure.py" @args | ||
} | ||
|
||
function global:otatool.py { | ||
& python.exe ` | ||
"$($env:IDF_PATH)\components\app_update\otatool.py" @args | ||
} | ||
|
||
function global:parttool.py { | ||
& python.exe ` | ||
"$($env:IDF_PATH)\components\partition_table\parttool.py" @args | ||
} | ||
|
||
# Create an alias for the function | ||
New-Alias -Name idf.py -Value Invoke-idfpy -Force -Scope Global |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.