Skip to content

Commit 7edc7e9

Browse files
committed
* Initial commit
1 parent 4e5016e commit 7edc7e9

File tree

289 files changed

+1098
-1111
lines changed

Some content is hidden

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

289 files changed

+1098
-1111
lines changed

Eclipse update site/WebContent/fragments/faq/troubleshooting.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ <h2>Trouble shooting</h2>
4949
The error view gives you an overview of errors and warnings that happened in Eclipse and or its plugins.
5050
To show the errors window: select Window-&gt;show view -&gt; other-&gt;select general tab-&gt;error log.
5151
Look at the plugin column to see which plugin logged the warning.
52-
I can only tell you more about the errors and warnings generated by it.baeyens.* plugins.
52+
I can only tell you more about the errors and warnings generated by io.sloeber.* plugins.
5353

5454
<br><br>A final and most time consuming way to find the problem is to download the code from github. You can then compile and debug the code.<a name="spaces"></a>
5555
</accordion-group>

build_then_launch.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

3-
file_x86="./it.baeyens.arduino.product/target/products/it.baeyens.arduino.product/linux/gtk/x86/opt/sloeber/sloeber-ide"
4-
file_x86_64="./it.baeyens.arduino.product/target/products/it.baeyens.arduino.product/linux/gtk/x86_64/opt/sloeber/sloeber-ide"
3+
file_x86="./io.sloeber.product/target/products/io.sloeber.product/linux/gtk/x86/opt/sloeber/sloeber-ide"
4+
file_x86_64="./io.sloeber.product/target/products/io.sloeber.product/linux/gtk/x86_64/opt/sloeber/sloeber-ide"
55
file=""
66

77
echo "Trying to build and then launch the Arduino Eclipse IDE"

config.xml

+7-7
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,9 @@ exit 0</command>
120120
</jenkins.plugins.publish__over__ftp.BapFtpTransfer>
121121
<jenkins.plugins.publish__over__ftp.BapFtpTransfer>
122122
<remoteDirectory>nightly</remoteDirectory>
123-
<sourceFiles>it.baeyens.arduino.updatesite/target/repository/</sourceFiles>
123+
<sourceFiles>io.sloeber.updatesite/target/repository/</sourceFiles>
124124
<excludes></excludes>
125-
<removePrefix>it.baeyens.arduino.updatesite/target/repository</removePrefix>
125+
<removePrefix>io.sloeber.updatesite/target/repository</removePrefix>
126126
<remoteDirectorySDF>false</remoteDirectorySDF>
127127
<flatten>false</flatten>
128128
<cleanRemote>false</cleanRemote>
@@ -161,15 +161,15 @@ exit 0</command>
161161
<hudson.tasks.Shell>
162162
<command>#!/bin/ash
163163
BUILD_TIMESTAMP=`date +&apos;%Y-%m-%d_%H-%M-%S&apos;`
164-
cd &quot;${WORKSPACE}/it.baeyens.arduino.product/target/products/it.baeyens.arduino.product/linux/gtk/x86/opt&quot;
164+
cd &quot;${WORKSPACE}/io.sloeber.product/target/products/io.sloeber.product/linux/gtk/x86/opt&quot;
165165
tar -zcvf &quot;${WORKSPACE}/linux32.${BUILD_TIMESTAMP}.tar.gz&quot; eclipseArduino
166-
cd &quot;${WORKSPACE}/it.baeyens.arduino.product/target/products/it.baeyens.arduino.product/linux/gtk/x86_64/opt&quot;
166+
cd &quot;${WORKSPACE}/io.sloeber.product/target/products/io.sloeber.product/linux/gtk/x86_64/opt&quot;
167167
tar -zcvf &quot;${WORKSPACE}/linux64.${BUILD_TIMESTAMP}.tar.gz&quot; eclipseArduino
168-
cd &quot;${WORKSPACE}/it.baeyens.arduino.product/target/products/it.baeyens.arduino.product/win32/win32/x86_64&quot;
168+
cd &quot;${WORKSPACE}/io.sloeber.product/target/products/io.sloeber.product/win32/win32/x86_64&quot;
169169
tar -zcvf &quot;${WORKSPACE}/win64.${BUILD_TIMESTAMP}.tar.gz&quot; eclipseArduino
170-
cd &quot;${WORKSPACE}/it.baeyens.arduino.product/target/products/it.baeyens.arduino.product/win32/win32/x86&quot;
170+
cd &quot;${WORKSPACE}/io.sloeber.product/target/products/io.sloeber.product/win32/win32/x86&quot;
171171
tar -zcvf &quot;${WORKSPACE}/win32.${BUILD_TIMESTAMP}.tar.gz&quot; eclipseArduino
172-
cd &quot;${WORKSPACE}/it.baeyens.arduino.product/target/products/it.baeyens.arduino.product/macosx/cocoa/x86_64&quot;
172+
cd &quot;${WORKSPACE}/io.sloeber.product/target/products/io.sloeber.product/macosx/cocoa/x86_64&quot;
173173
tar -zcvf &quot;${WORKSPACE}/mac64.${BUILD_TIMESTAMP}.tar.gz&quot; eclipseArduino
174174
exit 0
175175

it.baeyens.cdt.refactor/.project renamed to io.sloeber.application/.project

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<projectDescription>
3-
<name>it.baeyens.cdt.refactor</name>
3+
<name>io.sloeber.application</name>
44
<comment></comment>
55
<projects>
66
</projects>
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: Application
4-
Bundle-SymbolicName: it.baeyens.arduino.application;singleton:=true
4+
Bundle-SymbolicName: io.sloeber.application;singleton:=true
55
Bundle-Version: 3.1.0.qualifier
66
Require-Bundle: org.eclipse.core.runtime,
77
org.eclipse.ui,
8-
it.baeyens.arduino.monitor,
8+
io.sloeber.monitor,
99
org.eclipse.ui.intro,
10-
it.baeyens.cdt.refactor
10+
io.sloeber.cdt.refactor
1111
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Original file line numberDiff line numberDiff line change
@@ -1,144 +1,144 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<?eclipse version="3.4"?>
3-
<plugin>
4-
5-
<extension
6-
id="application"
7-
point="org.eclipse.core.runtime.applications">
8-
<application
9-
cardinality="*"
10-
visible="true">
11-
<run
12-
class="it.baeyens.arduino.application.Application">
13-
</run>
14-
</application>
15-
</extension>
16-
<extension
17-
point="org.eclipse.ui.perspectives">
18-
<perspective
19-
class="it.baeyens.arduino.application.Perspective"
20-
icon="icons/logo_16.png"
21-
id="it.baeyens.arduino.application.perspective"
22-
name="Arduino">
23-
</perspective>
24-
</extension>
25-
<extension
26-
point="org.eclipse.ui.perspectiveExtensions">
27-
<perspectiveExtension
28-
targetID="it.baeyens.arduino.application.perspective">
29-
<view
30-
id="org.eclipse.ui.navigator.ProjectExplorer"
31-
minimized="false"
32-
ratio="0.25"
33-
relationship="left"
34-
relative="org.eclipse.ui.editorss">
35-
</view>
36-
<view
37-
id="org.eclipse.ui.views.PropertySheet"
38-
minimized="false"
39-
ratio="0.75"
40-
relationship="bottom"
41-
relative="org.eclipse.ui.editorss">
42-
</view>
43-
<view
44-
id="org.eclipse.ui.views.ProblemView"
45-
minimized="false"
46-
relationship="stack"
47-
relative="org.eclipse.ui.views.PropertySheet">
48-
</view>
49-
<view
50-
id="it.baeyens.arduino.monitor.views.SerialMonitor"
51-
minimized="false"
52-
relationship="stack"
53-
relative="org.eclipse.ui.views.ProblemView">
54-
</view>
55-
<view
56-
id="org.eclipse.ui.console.ConsoleView"
57-
minimized="false"
58-
relationship="stack"
59-
relative="org.eclipse.ui.views.ProblemView">
60-
</view>
61-
<view
62-
id="org.eclipse.ui.views.ContentOutline"
63-
minimized="false"
64-
ratio="0.75"
65-
relationship="right"
66-
relative="org.eclipse.ui.editorss">
67-
</view>
68-
<view
69-
id="it.baeyens.arduino.monitor.views.ScopeView"
70-
minimized="false"
71-
relationship="stack"
72-
relative="org.eclipse.ui.views.ProblemView">
73-
</view>
74-
</perspectiveExtension>
75-
</extension>
76-
<extension
77-
point="org.eclipse.ui.intro">
78-
<intro
79-
class="org.eclipse.ui.intro.config.CustomizableIntroPart"
80-
id="it.baeyens.arduino.application.intro">
81-
</intro>
82-
<introProductBinding
83-
introId="it.baeyens.arduino.application.intro"
84-
productId="it.baeyens.arduino.application.product">
85-
</introProductBinding>
86-
</extension>
87-
<extension
88-
point="org.eclipse.ui.intro.config">
89-
<config
90-
content="introContent.xml"
91-
id="it.baeyens.arduino.application.introConfigId"
92-
introId="it.baeyens.arduino.application.intro">
93-
<presentation
94-
home-page-id="root">
95-
<implementation
96-
kind="html"
97-
os="win32,linux,macosx"
98-
style="content/shared.css">
99-
</implementation>
100-
</presentation>
101-
</config>
102-
</extension>
103-
<extension
104-
id="product"
105-
point="org.eclipse.core.runtime.products">
106-
<product
107-
application="org.eclipse.ui.ide.workbench"
108-
name="Sloeber, the Eclipse Arduino IDE">
109-
<property
110-
name="windowImages"
111-
value="icons/logo_16.png,icons/logo_32.png,icons/logo_48.png,icons/logo_256.png">
112-
</property>
113-
<property
114-
name="aboutText"
115-
value="Sloeber, the Eclipse IDE for Arduino Developers&#x0A;&#x0A;Info: http://eclipse.baeyens.it/&#x0A;Source: https://github.com/jantje/arduino-eclipse-plugin&#x0A;Binaries: http://eclipse.baeyens.it/download.php&#x0A;&#x0A;Contributors (github users): jantje, brodykenrick, wimjongman, neuweiler, &#x0A;darcade, amorellgarcia, MarceloLimori&#x0A;&#x0A;https://github.com/jantje/arduino-eclipse-plugin/graphs/contributors">
116-
</property>
117-
<property
118-
name="aboutImage"
119-
value="icons/eclipse_lg.png">
120-
</property>
121-
<property
122-
name="startupForegroundColor"
123-
value="C8D5EA">
124-
</property>
125-
<property
126-
name="startupProgressRect"
127-
value="97,370,100,4">
128-
</property>
129-
<property
130-
name="startupMessageRect"
131-
value="400,370,441,20">
132-
</property>
133-
<property
134-
name="appName"
135-
value="Sloeber, the Eclipse Arduino IDE">
136-
</property>
137-
<property
138-
name="preferenceCustomization"
139-
value="plugin_customization.ini">
140-
</property>
141-
</product>
142-
</extension>
143-
144-
</plugin>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<?eclipse version="3.4"?>
3+
<plugin>
4+
5+
<extension
6+
id="application"
7+
point="org.eclipse.core.runtime.applications">
8+
<application
9+
cardinality="*"
10+
visible="true">
11+
<run
12+
class="io.sloeber.application.Application">
13+
</run>
14+
</application>
15+
</extension>
16+
<extension
17+
point="org.eclipse.ui.perspectives">
18+
<perspective
19+
class="io.sloeber.application.Perspective"
20+
icon="icons/logo_16.png"
21+
id="io.sloeber.application.perspective"
22+
name="Sloeber">
23+
</perspective>
24+
</extension>
25+
<extension
26+
point="org.eclipse.ui.perspectiveExtensions">
27+
<perspectiveExtension
28+
targetID="io.sloeber.application.perspective">
29+
<view
30+
id="org.eclipse.ui.navigator.ProjectExplorer"
31+
minimized="false"
32+
ratio="0.25"
33+
relationship="left"
34+
relative="org.eclipse.ui.editorss">
35+
</view>
36+
<view
37+
id="org.eclipse.ui.views.PropertySheet"
38+
minimized="false"
39+
ratio="0.75"
40+
relationship="bottom"
41+
relative="org.eclipse.ui.editorss">
42+
</view>
43+
<view
44+
id="org.eclipse.ui.views.ProblemView"
45+
minimized="false"
46+
relationship="stack"
47+
relative="org.eclipse.ui.views.PropertySheet">
48+
</view>
49+
<view
50+
id="io.sloeber.monitor.views.SerialMonitor"
51+
minimized="false"
52+
relationship="stack"
53+
relative="org.eclipse.ui.views.ProblemView">
54+
</view>
55+
<view
56+
id="org.eclipse.ui.console.ConsoleView"
57+
minimized="false"
58+
relationship="stack"
59+
relative="org.eclipse.ui.views.ProblemView">
60+
</view>
61+
<view
62+
id="org.eclipse.ui.views.ContentOutline"
63+
minimized="false"
64+
ratio="0.75"
65+
relationship="right"
66+
relative="org.eclipse.ui.editorss">
67+
</view>
68+
<view
69+
id="io.sloeber.monitor.views.ScopeView"
70+
minimized="false"
71+
relationship="stack"
72+
relative="org.eclipse.ui.views.ProblemView">
73+
</view>
74+
</perspectiveExtension>
75+
</extension>
76+
<extension
77+
point="org.eclipse.ui.intro">
78+
<intro
79+
class="org.eclipse.ui.intro.config.CustomizableIntroPart"
80+
id="io.sloeber.application.intro">
81+
</intro>
82+
<introProductBinding
83+
introId="io.sloeber.application.intro"
84+
productId="io.sloeber.application.product">
85+
</introProductBinding>
86+
</extension>
87+
<extension
88+
point="org.eclipse.ui.intro.config">
89+
<config
90+
content="introContent.xml"
91+
id="io.sloeber.application.introConfigId"
92+
introId="io.sloeber.application.intro">
93+
<presentation
94+
home-page-id="root">
95+
<implementation
96+
kind="html"
97+
os="win32,linux,macosx"
98+
style="content/shared.css">
99+
</implementation>
100+
</presentation>
101+
</config>
102+
</extension>
103+
<extension
104+
id="product"
105+
point="org.eclipse.core.runtime.products">
106+
<product
107+
application="org.eclipse.ui.ide.workbench"
108+
name="Sloeber, the Eclipse Arduino IDE">
109+
<property
110+
name="windowImages"
111+
value="icons/logo_16.png,icons/logo_32.png,icons/logo_48.png,icons/logo_256.png">
112+
</property>
113+
<property
114+
name="aboutText"
115+
value="Sloeber, the Eclipse IDE for Arduino Developers&#x0A;&#x0A;Info: http://eclipse.baeyens.it/&#x0A;Source: https://github.com/jantje/arduino-eclipse-plugin&#x0A;Binaries: http://eclipse.baeyens.it/download.php&#x0A;&#x0A;Contributors (github users): jantje, brodykenrick, wimjongman, neuweiler, &#x0A;darcade, amorellgarcia, MarceloLimori&#x0A;&#x0A;https://github.com/jantje/arduino-eclipse-plugin/graphs/contributors">
116+
</property>
117+
<property
118+
name="aboutImage"
119+
value="icons/eclipse_lg.png">
120+
</property>
121+
<property
122+
name="startupForegroundColor"
123+
value="C8D5EA">
124+
</property>
125+
<property
126+
name="startupProgressRect"
127+
value="97,370,100,4">
128+
</property>
129+
<property
130+
name="startupMessageRect"
131+
value="400,370,441,20">
132+
</property>
133+
<property
134+
name="appName"
135+
value="Sloeber, the Eclipse Arduino IDE">
136+
</property>
137+
<property
138+
name="preferenceCustomization"
139+
value="plugin_customization.ini">
140+
</property>
141+
</product>
142+
</extension>
143+
144+
</plugin>

it.baeyens.cdt.refactor/pom.xml renamed to io.sloeber.application/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
<modelVersion>4.0.0</modelVersion>
44
<parent>
55
<groupId>com.github.brodykenrick.arduino-eclipse-plugin</groupId>
6-
<artifactId>it.baeyens.arduino.parent</artifactId>
6+
<artifactId>io.sloeber.parent</artifactId>
77
<version>3.1.0-SNAPSHOT</version>
8-
<relativePath>../it.baeyens.arduino.parent</relativePath>
8+
<relativePath>../io.sloeber.parent</relativePath>
99
</parent>
1010
<groupId>com.github.brodykenrick.arduino-eclipse-plugin</groupId>
11-
<artifactId>it.baeyens.cdt.refactor</artifactId>
11+
<artifactId>io.sloeber.application</artifactId>
1212
<version>3.1.0-SNAPSHOT</version>
1313
<packaging>eclipse-plugin</packaging>
1414
</project>

it.baeyens.arduino.application/src/it/baeyens/arduino/application/Application.java renamed to io.sloeber.application/src/io/sloeber/application/Application.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package it.baeyens.arduino.application;
1+
package io.sloeber.application;
22

33
import org.eclipse.equinox.app.IApplication;
44
import org.eclipse.equinox.app.IApplicationContext;
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package it.baeyens.arduino.application;
1+
package io.sloeber.application;
22

33
import org.eclipse.jface.action.IMenuManager;
44
import org.eclipse.ui.IWorkbenchWindow;

0 commit comments

Comments
 (0)