Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
3 changes: 2 additions & 1 deletion bundles/com.espressif.idf.ui/OSGI-INF/l10n/bundle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,5 @@ command.name.PartitionTableEditor = ESP-IDF: Partition Table Editor
command.label.nsvTableEditor = ESP-IDF: NVS Table Editor
command.name.nvsTableEditor = ESP-IDF: NVS Table Editor
command.tooltip.nvsTableEditor = NVS Editor can help you to easily edit NVS CSV, generate encrypted and non-encrypted partitions through GUI, without interacting directly with the csv files.
build_hints.name = Build Hints
build_hints.name = Build Hints
command.label.SbomCommandLabel = ESP-IDF: SBOM Tool
19 changes: 19 additions & 0 deletions bundles/com.espressif.idf.ui/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,21 @@
</iterate>
</visibleWhen>
</command>
<command
commandId="com.espressif.idf.ui.sbom"
label="%command.label.SbomCommandLabel"
style="push">
<visibleWhen
checkEnabled="false">
<iterate
ifEmpty="false"
operator="or">
<instanceof
value="org.eclipse.core.resources.IResource">
</instanceof>
</iterate>
</visibleWhen>
</command>
</menuContribution>
</extension>
<extension
Expand Down Expand Up @@ -568,6 +583,10 @@
class="com.espressif.idf.ui.nvs.handlers.NvsEditorHandler"
commandId="com.espressif.idf.ui.nvsEditorCommand">
</handler>
<handler
class="com.espressif.idf.ui.handlers.SbomCommandHandler"
commandId="com.espressif.idf.ui.sbom">
</handler>
</extension>
<extension
point="org.eclipse.ui.commands">
Expand Down
Loading