Skip to content

Commit 9f93807

Browse files
updated long banner png
1 parent 0440234 commit 9f93807

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

Plugins/Aspose-Cells-Java-for-Eclipse(Maven)/AsposeCellsEclipseFeature/feature.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<feature
33
id="com.aspose.cells.java.maven"
44
label="Aspose.Cells Java for Eclipse (Maven)"
5-
version="1.0.0.0"
5+
version="1.0.0.1"
66
provider-name="http://www.aspose.com">
77

88
<description>
@@ -46,7 +46,7 @@ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRES
4646
id="com.aspose.cells.java.maven.plugin"
4747
download-size="0"
4848
install-size="0"
49-
version="1.0.0.0"
49+
version="1.0.0.1"
5050
unpack="false"/>
5151

5252
</feature>
-19.9 KB
Loading

Plugins/Aspose-Cells-Java-for-Eclipse(Maven)/AsposeCellsEclipsePlugin/src/com/aspose/cells/maven/AsposeMavenProjectWizardPage.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ public void createControl(Composite parent) {
248248

249249
Label lblNewLabel = new Label(container, SWT.NONE);
250250
lblNewLabel.setImage(SWTResourceManager.getImage(Activator.getResourceFilePath("long_banner.png")));
251-
lblNewLabel.setBounds(10, 0, 564, 95);
251+
lblNewLabel.setBounds(10, 0, 500, 80);
252252

253253
Label lblPleaseEnterProject = new Label(container, SWT.NONE);
254254
lblPleaseEnterProject.setFont(SWTResourceManager.getFont("Segoe UI", 9, SWT.BOLD));
@@ -294,15 +294,15 @@ public void modifyText(ModifyEvent e) {
294294
onProjectNameChange();
295295
}
296296
});
297-
txtProjectName.setBounds(118, 116, 370, 21);
297+
txtProjectName.setBounds(118, 116, 319, 21);
298298

299299
txtProjectLocation = new Text(container, SWT.BORDER);
300300
txtProjectLocation.addModifyListener(new ModifyListener() {
301301
public void modifyText(ModifyEvent e) {
302302
onProjectLocationChange();
303303
}
304304
});
305-
txtProjectLocation.setBounds(118, 143, 370, 21);
305+
txtProjectLocation.setBounds(118, 143, 319, 21);
306306

307307
Button btnNewButton = new Button(container, SWT.NONE);
308308
btnNewButton.addSelectionListener(new SelectionAdapter() {
@@ -315,7 +315,7 @@ public void widgetSelected(SelectionEvent e) {
315315
}
316316
}
317317
});
318-
btnNewButton.setBounds(494, 140, 75, 25);
318+
btnNewButton.setBounds(443, 141, 75, 25);
319319
btnNewButton.setText("Browse...");
320320

321321
txtProjectFolder = new Text(container, SWT.BORDER);
@@ -325,43 +325,43 @@ public void modifyText(ModifyEvent e) {
325325
}
326326
});
327327
txtProjectFolder.setEditable(false);
328-
txtProjectFolder.setBounds(118, 170, 370, 21);
328+
txtProjectFolder.setBounds(118, 170, 319, 21);
329329

330330
txtArtifactId = new Text(container, SWT.BORDER);
331331
txtArtifactId.setEnabled(false);
332332
txtArtifactId.setEditable(false);
333-
txtArtifactId.setBounds(118, 212, 370, 21);
333+
txtArtifactId.setBounds(118, 212, 319, 21);
334334

335335
txtGroupId = new Text(container, SWT.BORDER);
336336
txtGroupId.addModifyListener(new ModifyListener() {
337337
public void modifyText(ModifyEvent e) {
338338
onGroupIdChange();
339339
}
340340
});
341-
txtGroupId.setBounds(118, 239, 370, 21);
341+
txtGroupId.setBounds(118, 239, 319, 21);
342342

343343
txtVersion = new Text(container, SWT.BORDER);
344344
txtVersion.addModifyListener(new ModifyListener() {
345345
public void modifyText(ModifyEvent e) {
346346
onVersionChange();
347347
}
348348
});
349-
txtVersion.setBounds(118, 266, 370, 21);
349+
txtVersion.setBounds(118, 266, 319, 21);
350350

351351
txtPackage = new Text(container, SWT.BORDER);
352352
txtPackage.addModifyListener(new ModifyListener() {
353353
public void modifyText(ModifyEvent e) {
354354
onPackageChange();
355355
}
356356
});
357-
txtPackage.setBounds(118, 293, 370, 21);
357+
txtPackage.setBounds(118, 293, 319, 21);
358358

359359
chkDownloadExamples = new Button(container, SWT.CHECK);
360360
chkDownloadExamples.setBounds(5, 325, 492, 16);
361361
chkDownloadExamples.setText("Also Download Code Examples (for using Aspose.Cells for Java)");
362362

363363
Label lblNewLabel_1 = new Label(container, SWT.NONE);
364-
lblNewLabel_1.setBounds(494, 296, 55, 15);
364+
lblNewLabel_1.setBounds(443, 296, 55, 15);
365365
lblNewLabel_1.setText("(Optional)");
366366

367367
initDecorators();

Plugins/Aspose-Cells-Java-for-Eclipse(Maven)/AsposeCellsEclipsePlugin/src/com/aspose/cells/maven/examples/AsposeExampleWizardPage.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ public void modifyText(ModifyEvent e) {
270270
onProjectModify();
271271
}
272272
});
273-
cbProject.setBounds(181, 101, 366, 23);
273+
cbProject.setBounds(181, 101, 323, 23);
274274

275275
examplesTree = new Tree(container, SWT.BORDER);
276276
examplesTree.addSelectionListener(new SelectionAdapter() {
@@ -279,11 +279,11 @@ public void widgetSelected(SelectionEvent e) {
279279
onTreeSelection();
280280
}
281281
});
282-
examplesTree.setBounds(27, 170, 520, 140);
282+
examplesTree.setBounds(10, 170, 494, 206);
283283

284284
Label label = new Label(container, SWT.NONE);
285285
label.setImage(SWTResourceManager.getImage(Activator.getResourceFilePath("long_banner.png")));
286-
label.setBounds(10, 0, 564, 95);
286+
label.setBounds(10, 0, 500, 80);
287287

288288
Label lblProject = new Label(container, SWT.NONE);
289289
lblProject.setBounds(134, 104, 40, 15);
@@ -299,7 +299,7 @@ public void modifyText(ModifyEvent e) {
299299
onVersionModify();
300300
}
301301
});
302-
cbVersion.setBounds(181, 128, 366, 23);
302+
cbVersion.setBounds(181, 128, 323, 23);
303303

304304
initDecorators();
305305
initControls();

Plugins/Aspose-Cells-Java-for-Eclipse(Maven)/AsposeCellsEclipseSite/site.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ With Aspose.Cells for Java developers can export data, format spreadsheets to th
77
Aspose.Cells Maven Project wizard fetch and configures the latest Maven dependency reference of Aspose.Cells for Java from the Aspose Cloud Maven Repository.
88
The wizard also gives you option to download the Code Examples to use Aspose.Cells for Java API.
99
</description>
10-
<feature url="features/com.aspose.cells.java.maven_1.0.0.0.jar" id="com.aspose.cells.java.maven" version="1.0.0.0">
10+
<feature url="features/com.aspose.cells.java.maven_1.0.0.1.jar" id="com.aspose.cells.java.maven" version="1.0.0.1">
1111
<category name="com.aspose.cells.java.maven.category"/>
1212
</feature>
1313
<category-def name="com.aspose.cells.java.maven.category" label="Aspose.Cells Java for Eclipse (Maven)"/>

0 commit comments

Comments
 (0)