Skip to content

Commit e814cb2

Browse files
authored
Merge pull request #1618 from Sloeber/make_release_4_4_3
upgrade to 4.4.3
2 parents cb66d22 + 8caff30 commit e814cb2

File tree

72 files changed

+493
-377
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+493
-377
lines changed

.github/workflows/maven.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,43 +15,43 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v4
1919
- name: Set up Maven
2020
uses: stCarolas/[email protected]
2121
with:
2222
maven-version: 3.9.6
2323
- name: Set up JDK 17
24-
uses: actions/setup-java@v2
24+
uses: actions/setup-java@v4
2525
with:
2626
java-version: '17'
2727
distribution: 'adopt'
2828
- name: Build Sloeber with Maven
2929
run: mvn --no-transfer-progress verify -Pall,sloeber_release,NOSDK -Dtest=NightlyJenkins -DfailIfNoTests=false
3030

3131
- name: Archive production artifacts
32-
uses: actions/upload-artifact@v3
32+
uses: actions/upload-artifact@v4
3333
with:
3434
name: Repository
3535
path: io.sloeber.updatesite/target/repository
3636
- name: Archive Windows 64 bit
37-
uses: actions/upload-artifact@v3
37+
uses: actions/upload-artifact@v4
3838
with:
39-
name: windows
39+
name: sloeber-ide-sloeber_release-win32.win32.x86_64.zip
4040
path: io.sloeber.product/target/products/sloeber-ide-sloeber_release-win32.win32.x86_64.zip
4141
- name: Archive Linux 64 bit
42-
uses: actions/upload-artifact@v3
42+
uses: actions/upload-artifact@v4
4343
with:
44-
name: linux
44+
name: sloeber-ide-sloeber_release-linux.gtk.x86_64.tar.gz
4545
path: io.sloeber.product/target/products/sloeber-ide-sloeber_release-linux.gtk.x86_64.tar.gz
4646
- name: Archive Mac 64 bit
47-
uses: actions/upload-artifact@v3
47+
uses: actions/upload-artifact@v4
4848
with:
49-
name: macosx
49+
name: sloeber-ide-sloeber_release-macosx.cocoa.x86_64.zip
5050
path: io.sloeber.product/target/products/sloeber-ide-sloeber_release-macosx.cocoa.x86_64.zip
5151
- name: Archive Mac ARM 64 bit
52-
uses: actions/upload-artifact@v3
52+
uses: actions/upload-artifact@v4
5353
with:
54-
name: macosx_arm
54+
name: sloeber-ide-sloeber_release-macosx.cocoa.aarch64.zip
5555
path: io.sloeber.product/target/products/sloeber-ide-sloeber_release-macosx.cocoa.aarch64.zip
5656
- name: Build Sloeber SDK with Maven
5757
run: mvn clean verify -PSDK,win64,latest -DskipTests=true

images_plugin_dev_setup/SVG_Logo/splash.svg

Lines changed: 17 additions & 8 deletions
Loading

io.sloeber.core.nl1/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
33
Bundle-Name: Sloeber core language pack
44
Bundle-SymbolicName: io.sloeber.core.nl1;singleton:=true
55
Bundle-RequiredExecutionEnvironment: JavaSE-17
6-
Bundle-Version: 4.4.2.qualifier
6+
Bundle-Version: 4.4.3.qualifier
77
Fragment-Host: io.sloeber.core
88
Bundle-Vendor: Sloeber.io
99
Automatic-Module-Name: io.sloeber.core.nl1

io.sloeber.core.nl1/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.sloeber.arduino-eclipse-plugin</groupId>
66
<artifactId>io.sloeber.parent</artifactId>
7-
<version>4.4.2-SNAPSHOT</version>
7+
<version>4.4.3-SNAPSHOT</version>
88
<relativePath>../io.sloeber.parent</relativePath>
99
</parent>
1010

io.sloeber.core/META-INF/MANIFEST.MF

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: Arduino eclipse plugin
44
Bundle-SymbolicName: io.sloeber.core;singleton:=true
5-
Bundle-Version: 4.4.2.qualifier
5+
Bundle-Version: 4.4.3.qualifier
66
Bundle-RequiredExecutionEnvironment: JavaSE-17
77
Bundle-Vendor: Sloeber.io
88
Bundle-ActivationPolicy: lazy
@@ -23,7 +23,9 @@ Require-Bundle: org.eclipse.cdt.managedbuilder.core,
2323
org.eclipse.core.variables,
2424
org.apache.commons.commons-io,
2525
org.apache.commons.commons-compress,
26-
com.github.luben.zstd-jni;bundle-version="1.5.5"
26+
com.github.luben.zstd-jni;bundle-version="1.5.5",
27+
slf4j.api;bundle-version="2.0.9",
28+
org.eclipse.ui.intro
2729
Export-Package: cc.arduino.packages;x-internal:=true,
2830
cc.arduino.packages.discoverers;x-internal:=true,
2931
cc.arduino.packages.ssh;x-internal:=true,

io.sloeber.core/build.properties

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,7 @@ bin.includes = .,\
1212
lib/jsch-0.1.55.jar,\
1313
OSGI-INF/l10n/bundle.properties,\
1414
lib/jssc-2.9.4.jar,\
15-
lib/jmdns-3.5.7.jar
15+
lib/jmdns-3.5.7.jar,\
16+
icons/,\
17+
launch/
1618
jars.compile.order = .

0 commit comments

Comments
 (0)