mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-01 06:05:24 +02:00
[releng] Fix micro versions for TM 3.2
This commit is contained in:
parent
f171f87986
commit
c3aacbb604
22 changed files with 51 additions and 26 deletions
|
@ -32,6 +32,13 @@
|
|||
<ul>
|
||||
<li>A local terminal connector was added - Thanks to Mirko Raner for this contribution
|
||||
[<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=196337">196337</a>].</li>
|
||||
<li>API: File types can now be specified as "XML", in addition to the existing "binary"
|
||||
and "text" file types. The special property of XML files is that they are transferred
|
||||
in binary mode, but the local character encoding is determined by looking at the XML
|
||||
magic inside the file. The XML filetype association can be configured by the
|
||||
<tt>remoteFileTypes</tt> extension point, or in the Remote Files Preference Page.
|
||||
This feature required new API to be added, for details see
|
||||
[<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=283033">283033</a>].</li>
|
||||
<li>A regression in the Terminal widget was fixed, which made initial output after login
|
||||
invisible above the initial viewport
|
||||
[<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=294327">294327</a>].</li>
|
||||
|
|
|
@ -633,13 +633,13 @@
|
|||
<feature url="features/org.eclipse.rse.core_3.2.0.qualifier.jar" id="org.eclipse.rse.core" version="3.2.0.qualifier">
|
||||
<category name="TM and RSE 3.2"/>
|
||||
</feature>
|
||||
<feature url="features/org.eclipse.rse.dstore_3.1.1.qualifier.jar" id="org.eclipse.rse.dstore" version="3.1.1.qualifier">
|
||||
<feature url="features/org.eclipse.rse.dstore_3.1.100.qualifier.jar" id="org.eclipse.rse.dstore" version="3.1.100.qualifier">
|
||||
<category name="TM and RSE 3.2"/>
|
||||
</feature>
|
||||
<feature url="features/org.eclipse.rse.ftp_3.0.101.qualifier.jar" id="org.eclipse.rse.ftp" version="3.0.101.qualifier">
|
||||
<category name="TM and RSE 3.2"/>
|
||||
</feature>
|
||||
<feature url="features/org.eclipse.rse.local_2.1.101.qualifier.jar" id="org.eclipse.rse.local" version="2.1.101.qualifier">
|
||||
<feature url="features/org.eclipse.rse.local_2.1.200.qualifier.jar" id="org.eclipse.rse.local" version="2.1.200.qualifier">
|
||||
<category name="TM and RSE 3.2"/>
|
||||
</feature>
|
||||
<feature url="features/org.eclipse.rse_3.2.0.qualifier.jar" id="org.eclipse.rse" version="3.2.0.qualifier">
|
||||
|
@ -657,7 +657,7 @@
|
|||
<feature url="features/org.eclipse.rse.examples_3.1.0.qualifier.jar" id="org.eclipse.rse.examples" version="3.1.0.qualifier">
|
||||
<category name="TM and RSE 3.2"/>
|
||||
</feature>
|
||||
<feature url="features/org.eclipse.rse.terminals_1.0.1.qualifier.jar" id="org.eclipse.rse.terminals" version="1.0.1.qualifier">
|
||||
<feature url="features/org.eclipse.rse.terminals_1.0.100.qualifier.jar" id="org.eclipse.rse.terminals" version="1.0.100.qualifier">
|
||||
<category name="TM and RSE 3.2"/>
|
||||
</feature>
|
||||
<feature url="features/org.eclipse.rse.tests_3.1.1.qualifier.jar" id="org.eclipse.rse.tests" version="3.1.1.qualifier">
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.rse.doc.isv; singleton:=true
|
||||
Bundle-Version: 3.1.0.qualifier
|
||||
Bundle-Version: 3.2.0.qualifier
|
||||
Bundle-Localization: plugin
|
||||
Eclipse-LazyStart: false
|
||||
Bundle-Vendor: %providerName
|
||||
|
|
|
@ -1,7 +1,25 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2006, 2009 IBM Corporation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
Initial Contributors:
The following IBM employees contributed to the Remote System Explorer
component that contains this file: David McKnight, Kushal Munir,
Michael Berger, David Dykstal, Phil Coulthard, Don Yantzi, Eric Simpson,
Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
Contributors:
IBM Corporation - initial API and implementation
Martin Oberhuber (Wind River) - [189269] add version range specifiers
-->
<feature
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2006, 2009 IBM Corporation and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Public License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
Initial Contributors:
|
||||
The following IBM employees contributed to the Remote System Explorer
|
||||
component that contains this file: David McKnight, Kushal Munir,
|
||||
Michael Berger, David Dykstal, Phil Coulthard, Don Yantzi, Eric Simpson,
|
||||
Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
|
||||
|
||||
Contributors:
|
||||
IBM Corporation - initial API and implementation
|
||||
Martin Oberhuber (Wind River) - [189269] add version range specifiers
|
||||
-->
|
||||
<feature
|
||||
id="org.eclipse.rse.dstore"
|
||||
label="%featureName"
|
||||
version="3.1.1.qualifier"
|
||||
version="3.1.100.qualifier"
|
||||
provider-name="%providerName"
|
||||
plugin="org.eclipse.rse.services.dstore">
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
<!--
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2005, 2009 IBM Corporation and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Public License v1.0
|
||||
|
@ -8,11 +9,10 @@
|
|||
Contributors:
|
||||
IBM Corporation - initial API and implementation
|
||||
-->
|
||||
|
||||
<feature
|
||||
id="org.eclipse.rse.local"
|
||||
label="%featureName"
|
||||
version="2.1.101.qualifier"
|
||||
version="2.1.200.qualifier"
|
||||
provider-name="%providerName"
|
||||
plugin="org.eclipse.rse.services.local">
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.dstore.core
|
||||
Bundle-Version: 3.1.1.qualifier
|
||||
Bundle-Version: 3.1.100.qualifier
|
||||
Bundle-Activator: org.eclipse.dstore.core.Activator
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.rse.core;singleton:=true
|
||||
Bundle-Version: 3.1.1.qualifier
|
||||
Bundle-Version: 3.1.100.qualifier
|
||||
Bundle-Activator: org.eclipse.rse.core.RSECorePlugin
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.core.runtime,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/********************************************************************************
|
||||
* Copyright (c) 2008,2010 IBM Corporation and others. All rights reserved.
|
||||
* Copyright (c) 2008, 2010 IBM Corporation and others. All rights reserved.
|
||||
* This program and the accompanying materials are made available under the terms
|
||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.rse.dstore.security; singleton:=true
|
||||
Bundle-Version: 3.0.100.qualifier
|
||||
Bundle-Version: 3.0.200.qualifier
|
||||
Bundle-Activator: org.eclipse.rse.internal.dstore.security.UniversalSecurityPlugin
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.rse.efs.ui;singleton:=true
|
||||
Bundle-Version: 2.1.101.qualifier
|
||||
Bundle-Version: 2.1.200.qualifier
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
org.eclipse.core.runtime,
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.rse.efs;singleton:=true
|
||||
Bundle-Version: 2.1.100.qualifier
|
||||
Bundle-Version: 2.1.200.qualifier
|
||||
Bundle-Activator: org.eclipse.rse.internal.efs.Activator
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.core.runtime,
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.rse.files.ui;singleton:=true
|
||||
Bundle-Version: 3.1.1.qualifier
|
||||
Bundle-Version: 3.1.100.qualifier
|
||||
Bundle-Activator: org.eclipse.rse.internal.files.ui.Activator
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.rse.importexport; singleton:=true
|
||||
Bundle-Version: 1.2.1.qualifier
|
||||
Bundle-Version: 1.2.100.qualifier
|
||||
Bundle-Activator: org.eclipse.rse.internal.importexport.RemoteImportExportPlugin
|
||||
Bundle-Localization: plugin
|
||||
Export-Package: org.eclipse.rse.internal.importexport;x-internal:=true,
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.rse.processes.ui;singleton:=true
|
||||
Bundle-Version: 3.0.101.qualifier
|
||||
Bundle-Version: 3.0.200.qualifier
|
||||
Bundle-Activator: org.eclipse.rse.internal.processes.ui.ProcessesPlugin
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.rse.services.dstore
|
||||
Bundle-Version: 3.1.1.qualifier
|
||||
Bundle-Version: 3.1.100.qualifier
|
||||
Bundle-Activator: org.eclipse.rse.internal.services.dstore.Activator
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.core.runtime,
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.rse.services.local;singleton:=true
|
||||
Bundle-Version: 2.1.101.qualifier
|
||||
Bundle-Version: 2.1.200.qualifier
|
||||
Bundle-Activator: org.eclipse.rse.internal.services.local.Activator
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2006, 20010 IBM Corporation and others.
|
||||
* Copyright (c) 2006, 2010 IBM Corporation and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.rse.shells.ui;singleton:=true
|
||||
Bundle-Version: 3.0.100.qualifier
|
||||
Bundle-Version: 3.0.200.qualifier
|
||||
Bundle-Activator: org.eclipse.rse.internal.shells.ui.ShellsUIPlugin
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.rse.subsystems.processes.core;singleton:=true
|
||||
Bundle-Version: 3.1.0.qualifier
|
||||
Bundle-Version: 3.1.100.qualifier
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-Localization: plugin
|
||||
Export-Package:
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.rse.subsystems.shells.core
|
||||
Bundle-Version: 3.1.0.qualifier
|
||||
Bundle-Version: 3.1.100.qualifier
|
||||
Bundle-Activator: org.eclipse.rse.internal.subsystems.shells.core.Activator
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.rse.subsystems.shells.dstore;singleton:=true
|
||||
Bundle-Version: 2.1.100.qualifier
|
||||
Bundle-Version: 2.1.200.qualifier
|
||||
Bundle-Activator: org.eclipse.rse.internal.subsystems.shells.dstore.Activator
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.rse.ui;singleton:=true
|
||||
Bundle-Version: 3.1.1.qualifier
|
||||
Bundle-Version: 3.1.100.qualifier
|
||||
Bundle-Activator: org.eclipse.rse.ui.RSEUIPlugin
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.core.runtime,
|
||||
|
|
Loading…
Add table
Reference in a new issue