Skip to content

Commit 64b9821

Browse files
committed
Update ServiceStackEclipse to 1.0.1 for new client versions.
1 parent afd1e5b commit 64b9821

File tree

15 files changed

+35
-9
lines changed

15 files changed

+35
-9
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,10 @@ proguard/
2525
# Log Files
2626
*.log
2727
src/ServiceStackIDEA/.idea/workspace.xml
28+
linux.gtk.x86/
29+
linux.gtk.x86_64/
30+
macosx.cocoa.x86/
31+
macosx.cocoa.x86_64
32+
src/ServiceStackEclipse.UpdateSite/repository/
33+
win32.win32.x86/
34+
win32.win32.x86_64/

src/ServiceStackEclipse.Feature/feature.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<feature
33
id="net.servicestack.eclipse.feature"
44
label="ServiceStackEclipse"
5-
version="1.0.0.qualifier"
5+
version="1.0.1.qualifier"
66
provider-name="ServiceStack">
77

88
<description url="http://github.com/ServiceStack/ServiceStack.Java">
@@ -32,7 +32,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&
3232
id="net.servicestack.eclipse"
3333
download-size="0"
3434
install-size="0"
35-
version="1.0.0.qualifier"
35+
version="1.0.1.qualifier"
3636
unpack="false"/>
3737

3838
</feature>

src/ServiceStackEclipse.Feature/product.product

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<?pde version="3.5"?>
33

4-
<product name="ServiceStackEclipse" uid="net.servicestack.eclipse.product" id="net.servicestack.eclipse.ServiceStackEclipse" application="org.eclipse.ui.ide.workbench" version="1.0.0" useFeatures="false" includeLaunchers="true">
4+
<product name="ServiceStackEclipse" uid="net.servicestack.eclipse.product" id="net.servicestack.eclipse.ServiceStackEclipse" application="org.eclipse.ui.ide.workbench" version="1.0.1" useFeatures="false" includeLaunchers="true">
5+
56

67
<configIni use="default">
78
</configIni>
@@ -11,6 +12,13 @@
1112
</vmArgsMac>
1213
</launcherArgs>
1314

15+
<windowImages/>
16+
17+
18+
<license>
19+
<url>http://opensource.org/licenses/BSD-3-Clause</url>
20+
</license>
21+
1422
<plugins>
1523
<plugin id="net.servicestack.eclipse"/>
1624
</plugins>
23 Bytes
Binary file not shown.
1.63 KB
Binary file not shown.
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<site>
33
<feature url="features/net.servicestack.eclipse.feature_1.0.0.201506041950.jar" id="net.servicestack.eclipse.feature" version="1.0.0.201506041950"/>
4+
<feature url="features/net.servicestack.eclipse.feature_1.0.1.201507300911.jar" id="net.servicestack.eclipse.feature" version="1.0.1.201507300911"/>
45
</site>

src/ServiceStackEclipse/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: Eclipse
44
Bundle-SymbolicName: net.servicestack.eclipse;singleton:=true
5-
Bundle-Version: 1.0.0.qualifier
5+
Bundle-Version: 1.0.1.qualifier
66
Bundle-Vendor: ServiceStack
77
Require-Bundle: org.eclipse.ui,
88
org.eclipse.core.resources,

src/ServiceStackEclipse/src/net/servicestack/eclipse/handlers/UpdateCommandState.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package net.servicestack.eclipse.handlers;
22

3-
import java.awt.List;
43
import java.util.HashMap;
54
import java.util.Map;
65

@@ -19,7 +18,7 @@ public void dispose() {
1918
}
2019

2120
@Override
22-
public Map getCurrentState() {
21+
public Map<String, Object> getCurrentState() {
2322
HashMap<String, Object> hashMap = new HashMap<String, Object>();
2423
hashMap.put(ID, ID);
2524
String value = enabled ? "true" : "false";

0 commit comments

Comments
 (0)