mirror of
https://github.com/processing/processing4.git
synced 2026-02-15 19:35:37 +01:00
Pushing v1.2.2 to the update site. Dependency cleanup and unused code removal.
This commit is contained in:
@@ -2,24 +2,20 @@ Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Processing Plugin User Interface Elements
|
||||
Bundle-SymbolicName: processing.plugin.ui;singleton:=true
|
||||
Bundle-Version: 0.2.1.0
|
||||
Bundle-Version: 0.2.2.0
|
||||
Bundle-Activator: processing.plugin.ui.ProcessingPlugin
|
||||
Bundle-Vendor: Processing.org
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
org.eclipse.core.runtime,
|
||||
org.eclipse.core.filebuffers,
|
||||
org.eclipse.jdt.debug.ui,
|
||||
org.eclipse.jface.text;bundle-version="3.6.0",
|
||||
org.eclipse.ui.editors;bundle-version="3.6.0",
|
||||
org.eclipse.core.resources;bundle-version="3.6.0",
|
||||
processing.plugin.core;bundle-version="0.1.0",
|
||||
processing.plugin.core,
|
||||
org.eclipse.debug.ui,
|
||||
org.eclipse.jdt.launching;bundle-version="3.5.100",
|
||||
org.eclipse.jdt.launching,
|
||||
org.eclipse.ui.ide;bundle-version="3.6.0",
|
||||
org.eclipse.jdt.core;bundle-version="3.6.0",
|
||||
org.eclipse.ui.navigator,
|
||||
org.eclipse.ui.navigator.resources,
|
||||
org.eclipse.jdt.ui;bundle-version="3.6.0"
|
||||
org.eclipse.jdt.ui;bundle-version="3.6.0",
|
||||
org.eclipse.jdt.core,
|
||||
org.eclipse.ui.navigator;bundle-version="3.5.0"
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
||||
Bundle-ActivationPolicy: lazy
|
||||
Import-Package: org.eclipse.ui.actions
|
||||
|
||||
@@ -164,9 +164,8 @@ public class ExportAsAppletWizard extends Wizard implements IExportWizard {
|
||||
} catch (CoreException e) {
|
||||
// This will happen when the copy fails, which we expect if there is no
|
||||
// image file. It isn't worth reporting.
|
||||
File resourceFolder = ProcessingCore.getProcessingCore().getPluginResourceFolder();
|
||||
try {
|
||||
File exportResourcesFolder = new File(resourceFolder, "export");
|
||||
File exportResourcesFolder = new File(ProcessingCore.getProcessingCore().getPluginResourceFolder().getCanonicalPath(), "export");
|
||||
File loadingImageCoreResource = new File(exportResourcesFolder, LOADING_IMAGE);
|
||||
Utilities.copyFile(loadingImageCoreResource, new File(exportFolder.getFullPath().toString(), LOADING_IMAGE));
|
||||
} catch (Exception ex) {
|
||||
|
||||
Reference in New Issue
Block a user