Skip to content

Commit 3f93dda

Browse files
authored
IEP-1727: Update target platform to Eclipse 2026-03 (4.39) (#1415)
* feat: update repo versions in target to align with march eclipse release * fix: rename commons logging and reset unit versions * fix: fixing visual bug in sdkconfig after platform update * fix: further fix in layout data for GTK in sdkconfig editor
1 parent 5862981 commit 3f93dda

2 files changed

Lines changed: 15 additions & 21 deletions

File tree

bundles/com.espressif.idf.sdk.config.ui/src/com/espressif/idf/sdk/config/ui/SDKConfigurationEditor.java

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -251,20 +251,18 @@ private void createDesignPage()
251251
layout.marginWidth = 0;
252252
parent.setLayout(layout);
253253

254-
GridData layoutData = new GridData();
255-
layoutData.grabExcessVerticalSpace = true;
256-
layoutData.verticalAlignment = GridData.FILL;
257-
258254
Group treeComposite = new Group(parent, SWT.V_SCROLL | SWT.TOP);
259255
layout = new GridLayout();
260256
layout.numColumns = 1;
261257
layout.marginWidth = 0;
262258
layout.marginHeight = 2;
263259
treeComposite.setLayout(layout);
260+
GridData layoutData = new GridData(SWT.FILL, SWT.FILL, false, true);
261+
layoutData.widthHint = 250;
264262
treeComposite.setLayoutData(layoutData);
265263

266264
FilteredTree transfersTree = createFilteredTree(treeComposite);
267-
transfersTree.setLayoutData(new GridData(GridData.FILL_BOTH));
265+
transfersTree.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
268266

269267
treeViewer = transfersTree.getViewer();
270268

@@ -275,11 +273,7 @@ private void createDesignPage()
275273
treeViewer.setUseHashlookup(true);
276274

277275
// layout the tree viewer below the text field
278-
layoutData = new GridData();
279-
layoutData.grabExcessHorizontalSpace = true;
280-
layoutData.grabExcessVerticalSpace = true;
281-
layoutData.verticalAlignment = GridData.FILL;
282-
treeViewer.getControl().setLayoutData(layoutData);
276+
treeViewer.getControl().setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
283277

284278
hookListeners();
285279

releng/com.espressif.idf.target/com.espressif.idf.target.target

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<target name="com.espressif.idf.target" sequenceNumber="25">
44
<locations>
55
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
6-
<repository location="https://download.eclipse.org/eclipse/updates/4.38"/>
6+
<repository location="https://download.eclipse.org/eclipse/updates/4.39"/>
77
<unit id="org.eclipse.equinox.sdk.feature.group" version="0.0.0"/>
88
<unit id="org.eclipse.rcp.feature.group" version="0.0.0"/>
99
<unit id="org.eclipse.test.feature.group" version="0.0.0"/>
@@ -17,13 +17,13 @@
1717
<unit id="org.eclipse.pde.feature.group" version="0.0.0"/>
1818
</location>
1919
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
20-
<repository location="https://download.eclipse.org/releases/2025-12/"/>
20+
<repository location="https://download.eclipse.org/releases/2026-03/"/>
2121
<unit id="org.eclipse.cdt.autotools.feature.group" version="0.0.0"/>
2222
<unit id="org.eclipse.cdt.feature.group" version="0.0.0"/>
2323
<unit id="org.eclipse.cdt.sdk.feature.group" version="0.0.0"/>
2424
<unit id="org.eclipse.cdt.cmake.feature.group" version="0.0.0"/>
2525
<unit id="org.eclipse.terminal.feature.feature.group" version="0.0.0"/>
26-
<unit id="org.apache.commons.logging" version="0.0.0"/>
26+
<unit id="org.apache.commons.commons-logging" version="0.0.0"/>
2727
<unit id="org.eclipse.launchbar.feature.group" version="0.0.0"/>
2828
<unit id="org.eclipse.epp.mpc.feature.group" version="0.0.0"/>
2929
</location>
@@ -32,19 +32,19 @@
3232
<unit id="org.antlr.runtime" version="0.0.0"/>
3333
<unit id="org.hamcrest" version="0.0.0"/>
3434
<unit id="org.hamcrest.core" version="0.0.0"/>
35-
<unit id="junit-jupiter-api" version="5.14.1"/>
36-
<unit id="junit-jupiter-params" version="5.14.1"/>
35+
<unit id="junit-jupiter-api" version="0.0.0"/>
36+
<unit id="junit-jupiter-params" version="0.0.0"/>
3737
<unit id="org.apache.log4j" version="0.0.0"/>
3838
<unit id="com.sun.jna" version="0.0.0"/>
3939
<unit id="org.commonmark" version="0.0.0"/> <!-- 0.22.0 -->
40-
<repository location="https://download.eclipse.org/tools/orbit/simrel/orbit-aggregation/2025-12"/>
40+
<repository location="https://download.eclipse.org/tools/orbit/simrel/orbit-aggregation/2026-03"/>
4141
</location>
4242
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
4343
<unit id="org.eclipse.jgit.feature.group" version="0.0.0"/>
4444
<unit id="org.eclipse.egit.feature.group" version="0.0.0"/>
4545
<unit id="slf4j.api" version="0.0.0"/>
4646
<unit id="slf4j.simple" version="0.0.0"/>
47-
<repository location="https://download.eclipse.org/egit/updates-7.0/"/>
47+
<repository location="https://download.eclipse.org/egit/updates-7.6/"/>
4848
</location>
4949
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
5050
<unit id="org.eclipse.swtbot.eclipse.feature.group" version="0.0.0"/>
@@ -64,7 +64,7 @@
6464
<unit id="org.eclipse.embedcdt.packs.feature.group" version="6.4.0.202307251916"/>
6565
</location>
6666
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
67-
<repository location="https://download.eclipse.org/tm4e/releases/0.17.1/"/>
67+
<repository location="https://download.eclipse.org/tm4e/releases/0.17.2/"/>
6868
<unit id="org.eclipse.tm4e.feature.feature.group" version="0.0.0"/>
6969
<unit id="org.eclipse.tm4e.language_pack.feature.feature.group" version="0.0.0"/>
7070
</location>
@@ -73,9 +73,9 @@
7373
<unit id="org.eclipse.justj.openjdk.hotspot.jre.full.feature.group" version="0.0.0"/>
7474
</location>
7575
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
76-
<repository location="https://download.eclipse.org/tools/cdt/releases/cdt-lsp-3.4/cdt-lsp-3.4.0/"/>
76+
<repository location="https://download.eclipse.org/tools/cdt/releases/cdt-lsp-3.5/cdt-lsp-3.5.0/"/>
7777
<unit id="org.eclipse.cdt.lsp.feature.feature.group" version="0.0.0"/>
78-
<unit id="org.yaml.snakeyaml" version="2.5.0"/>
78+
<unit id="org.yaml.snakeyaml" version="0.0.0"/>
7979
</location>
8080
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
8181
<repository location="jar:https://dl.espressif.com/dl/idf-eclipse-plugin/updates/CMakeEd-1.24.1.zip!/"/>
@@ -86,7 +86,7 @@
8686
<unit id="org.eclipse.swtchart.feature.feature.group" version="1.0.0.202412021530"/>
8787
</location>
8888
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
89-
<repository location="https://download.eclipse.org/lsp4e/releases/0.29.5/"/>
89+
<repository location="https://download.eclipse.org/lsp4e/releases/0.30.0/"/>
9090
<unit id="org.eclipse.lsp4e" version="0.0.0"/>
9191
<unit id="org.eclipse.lsp4e.debug" version="0.0.0"/>
9292
<unit id="org.eclipse.lsp4j" version="0.0.0"/>

0 commit comments

Comments
 (0)