mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-03 07:05:24 +02:00
Update plugin version number per API tooling.
Change-Id: I312102ed73b8da22bf780b709899400cb647ab65 Signed-off-by: Greg Watson <g.watson@computer.org>
This commit is contained in:
parent
272ef8b411
commit
a0fe3f1cf2
8 changed files with 16 additions and 6 deletions
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
||||
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
eclipse.preferences.version=1
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
|
||||
org.eclipse.jdt.core.compiler.compliance=1.8
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.source=1.8
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.remote.console;singleton:=true
|
||||
Bundle-Version: 1.1.0.qualifier
|
||||
Bundle-Version: 1.2.0.qualifier
|
||||
Bundle-Activator: org.eclipse.remote.internal.console.Activator
|
||||
Bundle-Localization: plugin
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
|
||||
|
|
|
@ -12,5 +12,5 @@
|
|||
|
||||
<artifactId>org.eclipse.remote.console</artifactId>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
<version>1.2.0-SNAPSHOT</version>
|
||||
</project>
|
||||
|
|
|
@ -2,6 +2,9 @@ package org.eclipse.remote.console;
|
|||
|
||||
import org.eclipse.remote.core.IRemoteConnection;
|
||||
|
||||
/**
|
||||
* @since 1.2
|
||||
*/
|
||||
public interface ITerminalConsole {
|
||||
|
||||
/**
|
||||
|
|
|
@ -31,4 +31,5 @@ public class ConsoleMessages extends NLS {
|
|||
public static String OPENNING_TERMINAL;
|
||||
public static String MAKING_CONNECTION;
|
||||
public static String DISCONNECTING;
|
||||
public static String TerminalConsoleConnector_0;
|
||||
}
|
||||
|
|
|
@ -22,3 +22,4 @@ CONNECTING_TO_TERMINAL = Connecting to Command Shell
|
|||
OPENNING_TERMINAL = Openning Command Shell
|
||||
MAKING_CONNECTION = Making Connection
|
||||
DISCONNECTING = Disconnecting
|
||||
TerminalConsoleConnector_0=Command shell not supported on this connection
|
||||
|
|
|
@ -140,6 +140,11 @@ public class TerminalConsoleConnector {
|
|||
return new Status(IStatus.ERROR, Activator.PLUGIN_ID, e.getLocalizedMessage(), e);
|
||||
}
|
||||
}
|
||||
|
||||
if (remoteProcess == null) {
|
||||
disconnect();
|
||||
return new Status(IStatus.ERROR, Activator.PLUGIN_ID, ConsoleMessages.TerminalConsoleConnector_0);
|
||||
}
|
||||
|
||||
if (width > 0 || height > 0) {
|
||||
IRemoteProcessTerminalService termService = remoteProcess.getService(IRemoteProcessTerminalService.class);
|
||||
|
|
Loading…
Add table
Reference in a new issue