From 635af20902154d2c6c60949e0e48230823126c11 Mon Sep 17 00:00:00 2001 From: Alex Rukhlin Date: Fri, 1 Sep 2017 16:28:41 -0400 Subject: [PATCH 1/3] Replace the browser based work item editor with an External Web Browser #1071965 --- source/com.microsoft.tfs.client.common.ui/plugin.xml | 2 ++ .../client/common/ui/helpers/WorkItemEditorHelper.java | 2 +- .../com.microsoft.tfs.client.eclipse.target/4.7.target | 10 +++++----- .../com.microsoft.tfs.client.eclipse.target/4.8.target | 2 -- 4 files changed, 8 insertions(+), 8 deletions(-) delete mode 100644 source/com.microsoft.tfs.client.eclipse.target/4.8.target diff --git a/source/com.microsoft.tfs.client.common.ui/plugin.xml b/source/com.microsoft.tfs.client.common.ui/plugin.xml index 0d56acef4..5e9b71e63 100644 --- a/source/com.microsoft.tfs.client.common.ui/plugin.xml +++ b/source/com.microsoft.tfs.client.common.ui/plugin.xml @@ -911,10 +911,12 @@ displayName="%extension.workItemEditor.teamWebAccess" id="com.microsoft.tfs.client.common.ui.teamwebaccess"> + diff --git a/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/helpers/WorkItemEditorHelper.java b/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/helpers/WorkItemEditorHelper.java index fa03aa60f..9a3684e97 100644 --- a/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/helpers/WorkItemEditorHelper.java +++ b/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/helpers/WorkItemEditorHelper.java @@ -257,7 +257,7 @@ private static String getPreferredWorkItemEditorID() { } // Default to embedded Web Access editor - return EMBEDDED_WEB_ACCESS_EDITOR_ID; + return EXTERNAL_WEB_ACCESS_EDITOR_ID; } /** diff --git a/source/com.microsoft.tfs.client.eclipse.target/4.7.target b/source/com.microsoft.tfs.client.eclipse.target/4.7.target index 81aa8dbf2..7a8d23ff1 100644 --- a/source/com.microsoft.tfs.client.eclipse.target/4.7.target +++ b/source/com.microsoft.tfs.client.eclipse.target/4.7.target @@ -1,16 +1,16 @@ - + - - - - + + + + diff --git a/source/com.microsoft.tfs.client.eclipse.target/4.8.target b/source/com.microsoft.tfs.client.eclipse.target/4.8.target deleted file mode 100644 index 6485e454c..000000000 --- a/source/com.microsoft.tfs.client.eclipse.target/4.8.target +++ /dev/null @@ -1,2 +0,0 @@ - - From cb84ae9bd707523d635655e676732c5ec083750c Mon Sep 17 00:00:00 2001 From: Alex Rukhlin Date: Tue, 5 Sep 2017 10:10:09 -0400 Subject: [PATCH 2/3] Remove "Open With..." ane editor preferences for work items --- .../ui/helpers/WorkItemEditorHelper.java | 19 ++++++++--- .../ui/prefs/UIPreferenceInitializer.java | 2 +- .../common/ui/prefs/WITPreferencePage.java | 34 ++++++++++++------- .../ui/wit/form/WorkItemLinksControl.java | 10 +++--- .../ui/wit/results/QueryResultsControl.java | 9 ++--- 5 files changed, 47 insertions(+), 27 deletions(-) diff --git a/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/helpers/WorkItemEditorHelper.java b/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/helpers/WorkItemEditorHelper.java index 9a3684e97..5e8de6610 100644 --- a/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/helpers/WorkItemEditorHelper.java +++ b/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/helpers/WorkItemEditorHelper.java @@ -15,7 +15,6 @@ import org.eclipse.core.runtime.IExtensionRegistry; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.Platform; -import org.eclipse.jface.preference.IPreferenceStore; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; import org.eclipse.ui.IEditorInput; @@ -29,13 +28,11 @@ import com.microsoft.tfs.client.common.framework.command.ICommandExecutor; import com.microsoft.tfs.client.common.server.TFSServer; import com.microsoft.tfs.client.common.ui.Messages; -import com.microsoft.tfs.client.common.ui.TFSCommonUIClientPlugin; import com.microsoft.tfs.client.common.ui.browser.BrowserFacade; import com.microsoft.tfs.client.common.ui.browser.BrowserFacade.LaunchMode; import com.microsoft.tfs.client.common.ui.framework.command.UICommandExecutorFactory; import com.microsoft.tfs.client.common.ui.framework.helper.MessageBoxHelpers; import com.microsoft.tfs.client.common.ui.framework.helper.ShellUtils; -import com.microsoft.tfs.client.common.ui.prefs.UIPreferenceConstants; import com.microsoft.tfs.client.common.ui.teamexplorer.helpers.WorkItemHelpers; import com.microsoft.tfs.client.common.ui.webaccessintegration.editors.WebAccessWorkItemEditorInput; import com.microsoft.tfs.client.common.ui.wit.form.WorkItemEditorInfo; @@ -238,9 +235,21 @@ public static void openEditor(final TFSServer server, final WorkItem workItem, f * editor if the preferred editor is no longer contributed. */ private static String getPreferredWorkItemEditorID() { + // Find the preferred work item editor. - final IPreferenceStore preferences = TFSCommonUIClientPlugin.getDefault().getPreferenceStore(); - final String prefValue = preferences.getString(UIPreferenceConstants.WORK_ITEM_EDITOR_ID); + + /* @formatter:off + * + * We decided to always use the External Web Browser Editor for work items. + * S123 09/05/2017 + * + * final IPreferenceStore preferences = TFSCommonUIClientPlugin.getDefault().getPreferenceStore(); + * final String prefValue = preferences.getString(UIPreferenceConstants.WORK_ITEM_EDITOR_ID); + * + * @formatter:on + */ + + final String prefValue = EXTERNAL_WEB_ACCESS_EDITOR_ID; // Check that the preferred work item editor still exists. final IExtensionRegistry registry = Platform.getExtensionRegistry(); diff --git a/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/prefs/UIPreferenceInitializer.java b/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/prefs/UIPreferenceInitializer.java index 5ddd72caf..7cc02d952 100644 --- a/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/prefs/UIPreferenceInitializer.java +++ b/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/prefs/UIPreferenceInitializer.java @@ -48,7 +48,7 @@ public void initializeDefaultPreferences() { prefs.setDefault(UIPreferenceConstants.GATED_CONFIRMATION_PRESERVE_PENDING_CHANGES, true); - prefs.setDefault(UIPreferenceConstants.WORK_ITEM_EDITOR_ID, WorkItemEditorHelper.EMBEDDED_WEB_ACCESS_EDITOR_ID); + prefs.setDefault(UIPreferenceConstants.WORK_ITEM_EDITOR_ID, WorkItemEditorHelper.EXTERNAL_WEB_ACCESS_EDITOR_ID); prefs.setDefault(UIPreferenceConstants.DETECT_LOCAL_CHANGES_ON_MANUAL_RECONNECT, true); prefs.setDefault(UIPreferenceConstants.DETECT_LOCAL_CHANGES_ON_AUTOMATIC_RECONNECT, true); diff --git a/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/prefs/WITPreferencePage.java b/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/prefs/WITPreferencePage.java index 9eea92fd1..5a84287fa 100644 --- a/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/prefs/WITPreferencePage.java +++ b/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/prefs/WITPreferencePage.java @@ -40,22 +40,32 @@ protected void createFieldEditors() { { Messages.getString("WITPreferencePage.LaunchBrowserWithAttachment"), //$NON-NLS-1$ UIPreferenceConstants.WIT_DOUBLE_CLICK_FILE_ATTACHMENT_LAUNCH_BROWSER - }, { - Messages.getString("WITPreferencePage.DownloadAttachmentToTemp"), //$NON-NLS-1$ - UIPreferenceConstants.WIT_DOUBLE_CLICK_FILE_ATTACHMENT_LAUNCH_LOCAL - } - }, getFieldEditorParent(), true); - - workItemEditorPrefsEditor = new RadioGroupFieldEditor( - UIPreferenceConstants.WORK_ITEM_EDITOR_ID, - Messages.getString("WITPreferencePage.WorkItemEditorGroupLabel"), //$NON-NLS-1$ - 1, - getWorkItemEditors(), + }, { + Messages.getString("WITPreferencePage.DownloadAttachmentToTemp"), //$NON-NLS-1$ + UIPreferenceConstants.WIT_DOUBLE_CLICK_FILE_ATTACHMENT_LAUNCH_LOCAL + } + }, getFieldEditorParent(), true); addField(openFileAttachmentPrefsEditor); - addField(workItemEditorPrefsEditor); + + /*@formatter:off + * + * We decided to always use the External Web Browser Editor for work items. + * S123 09/05/2017 + * + * workItemEditorPrefsEditor = new RadioGroupFieldEditor( + * UIPreferenceConstants.WORK_ITEM_EDITOR_ID, + * Messages.getString("WITPreferencePage.WorkItemEditorGroupLabel"), //$NON-NLS-1$ + * 1, + * getWorkItemEditors(), + * getFieldEditorParent(), + * true); + * addField(workItemEditorPrefsEditor); + * + * @formatter:on + */ /* * Get the controls back out of the field editor to set automation IDs. diff --git a/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/wit/form/WorkItemLinksControl.java b/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/wit/form/WorkItemLinksControl.java index 0a19c6f8e..2c9f49a94 100644 --- a/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/wit/form/WorkItemLinksControl.java +++ b/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/wit/form/WorkItemLinksControl.java @@ -365,7 +365,7 @@ public void run() { openAction.setText(Messages.getString("WorkItemLinksControl.OpenActionText")); //$NON-NLS-1$ final List editors = WorkItemEditorHelper.getWorkItemEditors(); - if (editors != null && editors.size() > 0) { + if (editors != null && editors.size() > 1) { int count = 0; openWithActions = new OpenWorkItemWithAction[editors.size()]; @@ -859,7 +859,7 @@ private boolean isSelectedLinkOpenable() { protected void createButtons(final Composite parent) { newButton = createButton(parent, Messages.getString("WorkItemLinksControl.NewButtonText"), new SelectionAdapter() //$NON-NLS-1$ - { + { @Override public void widgetSelected(final SelectionEvent e) { performNew(); @@ -870,7 +870,7 @@ public void widgetSelected(final SelectionEvent e) { addButton = createButton(parent, Messages.getString("WorkItemLinksControl.AddLinkButtonText"), new SelectionAdapter() //$NON-NLS-1$ - { + { @Override public void widgetSelected(final SelectionEvent e) { performAdd(); @@ -880,7 +880,7 @@ public void widgetSelected(final SelectionEvent e) { openButton = createButton(parent, Messages.getString("WorkItemLinksControl.OpenButtonText"), new SelectionAdapter() //$NON-NLS-1$ - { + { @Override public void widgetSelected(final SelectionEvent e) { performOpen(); @@ -890,7 +890,7 @@ public void widgetSelected(final SelectionEvent e) { deleteButton = createButton(parent, Messages.getString("WorkItemLinksControl.DeleteButtonText"), new SelectionAdapter() //$NON-NLS-1$ - { + { @Override public void widgetSelected(final SelectionEvent e) { performDelete(); diff --git a/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/wit/results/QueryResultsControl.java b/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/wit/results/QueryResultsControl.java index bb044fe59..eb72df8b6 100644 --- a/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/wit/results/QueryResultsControl.java +++ b/source/com.microsoft.tfs.client.common.ui/src/com/microsoft/tfs/client/common/ui/wit/results/QueryResultsControl.java @@ -321,7 +321,7 @@ public void run() { openAction.setText(Messages.getString("QueryResultsControl.OpenActionText")); //$NON-NLS-1$ final List editors = WorkItemEditorHelper.getWorkItemEditors(); - if (editors != null && editors.size() > 0) { + if (editors != null && editors.size() > 1) { int count = 0; openWithActions = new OpenWorkItemWithAction[editors.size()]; @@ -854,9 +854,10 @@ protected Object getTransferData( cellData = "" + cellData + ""; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ } - sb.append(""); //$NON-NLS-1$ + sb.append( + ""); //$NON-NLS-1$ sb.append("

"); //$NON-NLS-1$ sb.append(cellData); sb.append("

"); //$NON-NLS-1$ From 9eec40cadc016ee6d5cfd14c6c4cd59b00472d48 Mon Sep 17 00:00:00 2001 From: Alex Rukhlin Date: Tue, 5 Sep 2017 10:39:14 -0400 Subject: [PATCH 3/3] To version 14.123.1 --- build/build-1-config.xml | 4 ++-- build/category.xml | 14 +++++++------- build/product_version.properties | 4 ++-- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../feature.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../feature.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../content/InstallTEE.htm | 10 +++++----- .../content/InstallTEE_LP.htm | 4 ++-- .../feature.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../com.microsoft.tfs.client.eclipse.ui/about.ini | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../com.microsoft.tfs.console/META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../com.microsoft.tfs.core.ws/META-INF/MANIFEST.MF | 2 +- source/com.microsoft.tfs.core/META-INF/MANIFEST.MF | 2 +- source/com.microsoft.tfs.core/about.html | 2 +- .../src/com.microsoft.tfs.core-version.properties | 2 +- source/com.microsoft.tfs.jni/META-INF/MANIFEST.MF | 2 +- .../com.microsoft.tfs.logging/META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../.classpath-sdk | 2 +- .../build.xml | 2 +- .../readme.txt | 4 ++-- .../.classpath-sdk | 2 +- .../build.xml | 2 +- .../readme.txt | 4 ++-- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- source/com.microsoft.tfs.sdk/readme.html | 6 +++--- source/com.microsoft.tfs.sdk/redist/redist.txt | 2 +- source/com.microsoft.tfs.util/META-INF/MANIFEST.MF | 2 +- 47 files changed, 64 insertions(+), 64 deletions(-) diff --git a/build/build-1-config.xml b/build/build-1-config.xml index efe47d776..8bb2e1a09 100644 --- a/build/build-1-config.xml +++ b/build/build-1-config.xml @@ -29,8 +29,8 @@ number.version.minor ("0") number.version.service ("2") number.version.build ("1234XYZ") - string.version.1-2-3 ("14.123.0") - string.version.1-2-3-4 ("14.123.0.1234XYZ") + string.version.1-2-3 ("14.123.1") + string.version.1-2-3-4 ("14.123.1.1234XYZ") --> diff --git a/build/category.xml b/build/category.xml index be36acdcf..673cd60b7 100644 --- a/build/category.xml +++ b/build/category.xml @@ -1,24 +1,24 @@ - + - + - + - + - + - + - + diff --git a/build/product_version.properties b/build/product_version.properties index a9c8848db..733a97be4 100644 --- a/build/product_version.properties +++ b/build/product_version.properties @@ -1,7 +1,7 @@ -# This comment contains the full version number (14.123.0) so this file gets +# This comment contains the full version number (14.123.1) so this file gets # picked up when doing workspace searches for the version number string. number.version.major=14 number.version.minor=123 -number.version.service=0 +number.version.service=1 # number.version.build gets defined at build time. \ No newline at end of file diff --git a/source/com.microsoft.tfs.checkinpolicies.build/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.checkinpolicies.build/META-INF/MANIFEST.MF index 89c2267df..589a61179 100644 --- a/source/com.microsoft.tfs.checkinpolicies.build/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.checkinpolicies.build/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.checkinpolicies.build; singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Activator: com.microsoft.tfs.checkinpolicies.build.TFSBuildCheckinPolicyPlugin Bundle-Vendor: %Bundle-Vendor Bundle-Localization: plugin diff --git a/source/com.microsoft.tfs.checkinpolicies.checkforcomments/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.checkinpolicies.checkforcomments/META-INF/MANIFEST.MF index 1351bb3e2..31522843d 100644 --- a/source/com.microsoft.tfs.checkinpolicies.checkforcomments/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.checkinpolicies.checkforcomments/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.checkinpolicies.checkforcomments; singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Vendor: %Bundle-Vendor Bundle-Localization: plugin Export-Package: com.microsoft.tfs.checkinpolicies.checkforcomments diff --git a/source/com.microsoft.tfs.checkinpolicies.forbiddenpatterns/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.checkinpolicies.forbiddenpatterns/META-INF/MANIFEST.MF index a122b012a..f38af7216 100644 --- a/source/com.microsoft.tfs.checkinpolicies.forbiddenpatterns/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.checkinpolicies.forbiddenpatterns/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.checkinpolicies.forbiddenpatterns; singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Vendor: %Bundle-Vendor Bundle-Localization: plugin Export-Package: com.microsoft.tfs.checkinpolicies.forbiddenpatterns, diff --git a/source/com.microsoft.tfs.checkinpolicies.workitempolicy/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.checkinpolicies.workitempolicy/META-INF/MANIFEST.MF index 39b700e4b..fbd35a68d 100644 --- a/source/com.microsoft.tfs.checkinpolicies.workitempolicy/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.checkinpolicies.workitempolicy/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.checkinpolicies.workitempolicy; singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Vendor: %Bundle-Vendor Bundle-Localization: plugin Require-Bundle: org.eclipse.ui, diff --git a/source/com.microsoft.tfs.checkinpolicies.workitemquerypolicy/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.checkinpolicies.workitemquerypolicy/META-INF/MANIFEST.MF index c5e57c035..0451242d3 100644 --- a/source/com.microsoft.tfs.checkinpolicies.workitemquerypolicy/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.checkinpolicies.workitemquerypolicy/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.checkinpolicies.workitemquerypolicy; singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Vendor: %Bundle-Vendor Bundle-Localization: plugin Export-Package: com.microsoft.tfs.checkinpolicies.workitemquerypolicy, diff --git a/source/com.microsoft.tfs.checkinpolicies/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.checkinpolicies/META-INF/MANIFEST.MF index c4e70b5de..f1ebe408e 100644 --- a/source/com.microsoft.tfs.checkinpolicies/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.checkinpolicies/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.checkinpolicies; singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Activator: com.microsoft.tfs.checkinpolicies.TFSCheckinPoliciesPlugin Bundle-Vendor: %Bundle-Vendor Bundle-Localization: plugin diff --git a/source/com.microsoft.tfs.client.clc.feature/feature.xml b/source/com.microsoft.tfs.client.clc.feature/feature.xml index ffdeda9e2..6bd086b6f 100644 --- a/source/com.microsoft.tfs.client.clc.feature/feature.xml +++ b/source/com.microsoft.tfs.client.clc.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/source/com.microsoft.tfs.client.clc/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.client.clc/META-INF/MANIFEST.MF index 81c7a4ed1..cc7533d9d 100644 --- a/source/com.microsoft.tfs.client.clc/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.client.clc/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.client.clc -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Vendor: %Bundle-Vendor Bundle-Localization: plugin Require-Bundle: com.microsoft.tfs.console, diff --git a/source/com.microsoft.tfs.client.common.pid/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.client.common.pid/META-INF/MANIFEST.MF index 1fcce1751..ffa8dc6de 100644 --- a/source/com.microsoft.tfs.client.common.pid/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.client.common.pid/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.client.common.pid -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Vendor: %Bundle-Vendor Bundle-Localization: plugin Bundle-RequiredExecutionEnvironment: JavaSE-1.6 diff --git a/source/com.microsoft.tfs.client.common.ui.teambuild.egit/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.client.common.ui.teambuild.egit/META-INF/MANIFEST.MF index 42c979e44..706aec6cd 100644 --- a/source/com.microsoft.tfs.client.common.ui.teambuild.egit/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.client.common.ui.teambuild.egit/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.client.common.ui.teambuild.egit;singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Vendor: %Bundle-Vendor Bundle-Localization: plugin Bundle-RequiredExecutionEnvironment: JavaSE-1.6 diff --git a/source/com.microsoft.tfs.client.common.ui.teambuild/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.client.common.ui.teambuild/META-INF/MANIFEST.MF index b26552551..e892189c5 100644 --- a/source/com.microsoft.tfs.client.common.ui.teambuild/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.client.common.ui.teambuild/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.client.common.ui.teambuild; singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Activator: com.microsoft.tfs.client.common.ui.teambuild.TFSTeamBuildPlugin Bundle-Vendor: %Bundle-Vendor Bundle-Localization: plugin diff --git a/source/com.microsoft.tfs.client.common.ui.vcexplorer/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.client.common.ui.vcexplorer/META-INF/MANIFEST.MF index 8e2b8523a..80084942f 100644 --- a/source/com.microsoft.tfs.client.common.ui.vcexplorer/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.client.common.ui.vcexplorer/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.client.common.ui.vcexplorer; singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Activator: com.microsoft.tfs.client.common.ui.vcexplorer.TFSVersionControlExplorerPlugin Bundle-Vendor: %Bundle-Vendor Bundle-Localization: plugin diff --git a/source/com.microsoft.tfs.client.common.ui/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.client.common.ui/META-INF/MANIFEST.MF index f28c4d5b9..5a805bce8 100644 --- a/source/com.microsoft.tfs.client.common.ui/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.client.common.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.client.common.ui; singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Activator: com.microsoft.tfs.client.common.ui.TFSCommonUIClientPlugin Bundle-Vendor: %Bundle-Vendor Eclipse-LazyStart: true diff --git a/source/com.microsoft.tfs.client.common/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.client.common/META-INF/MANIFEST.MF index cee430a6f..b3716755b 100644 --- a/source/com.microsoft.tfs.client.common/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.client.common/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.client.common; singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Activator: com.microsoft.tfs.client.common.TFSCommonClientPlugin Bundle-Vendor: %Bundle-Vendor Bundle-Localization: plugin diff --git a/source/com.microsoft.tfs.client.eclipse.feature/feature.xml b/source/com.microsoft.tfs.client.eclipse.feature/feature.xml index 223b0a43e..4444c4e23 100644 --- a/source/com.microsoft.tfs.client.eclipse.feature/feature.xml +++ b/source/com.microsoft.tfs.client.eclipse.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/source/com.microsoft.tfs.client.eclipse.help/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.client.eclipse.help/META-INF/MANIFEST.MF index ff6a7a6dd..0fcbed475 100644 --- a/source/com.microsoft.tfs.client.eclipse.help/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.client.eclipse.help/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.client.eclipse.help; singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Vendor: %Bundle-Vendor Bundle-Localization: plugin Eclipse-LazyStart: true diff --git a/source/com.microsoft.tfs.client.eclipse.help/content/InstallTEE.htm b/source/com.microsoft.tfs.client.eclipse.help/content/InstallTEE.htm index 77748cd64..b3954787a 100644 --- a/source/com.microsoft.tfs.client.eclipse.help/content/InstallTEE.htm +++ b/source/com.microsoft.tfs.client.eclipse.help/content/InstallTEE.htm @@ -515,7 +515,7 @@

To install the plug-in from the update site a the internet or the organization prefers that a specific version of the plug-in is installed by everyone then following method may more suitable.

-
  • Use the link on this page to download TFSEclipsePlugin-UpdateSiteArchive-14.123.0.zip.
  • +
  • Use the link on this page to download TFSEclipsePlugin-UpdateSiteArchive-14.123.1.zip.
  • Open Eclipse.
  • On the Help menu, choose Install New Software.
  • The Install dialog box appears.
  • @@ -524,7 +524,7 @@

    To install the plug-in from the update site a
  • For the name, enter "Local Team Explorer Everywhere update archive".
  • Choose the Archive button.
  • The Repository archive dialog box appears.
  • -
  • Find and select the downloaded "TFSEclipsePlugin-UpdateSiteArchive-14.123.0.zip" file as the File name.
  • +
  • Find and select the downloaded "TFSEclipsePlugin-UpdateSiteArchive-14.123.1.zip" file as the File name.
  • Choose the Open button.
  • Choose the OK button.
  • In the list of features in the Install dialog box, select the check box that corresponds to the Team Explorer Everywhere Plug-in for Eclipse.
  • @@ -538,12 +538,12 @@

    To install the plug-in from the update site a

    You can perform many version control operations from the Cross-platform Command-line Client for Team Foundation Server. Before you can use this client, you must install it and configure your shell or system path to include the installation folder.

    To install the Cross-Platform Command-Line Client for Team Foundation Server

      -
    1. Use the link on this page to download TEE-CLC-14.123.0.zip.
    2. -
    3. Unzip the archive (TEE-CLC-14.123.0.zip file) that contains the client.
    4. +
    5. Use the link on this page to download TEE-CLC-14.123.1.zip.
    6. +
    7. Unzip the archive (TEE-CLC-14.123.1.zip file) that contains the client.
    8. Configure your shell or system path to include the folder to which you unzipped the archive.
    9. To verify that the client is working, at a command prompt, type tf, and then press the ENTER key.
    - If the client is correctly installed, output appears, starting with "Microsoft Team Explorer Everywhere Command-line Client (version 14.123.0)".
    + If the client is correctly installed, output appears, starting with "Microsoft Team Explorer Everywhere Command-line Client (version 14.123.1)".

    For information about any of the commands, you can type tf help Command, where Command is the name of the command for which you want information. For example, you could type tf help checkin. You can also type tf command /help or tf command -help to obtain help.

    Note
    diff --git a/source/com.microsoft.tfs.client.eclipse.help/content/InstallTEE_LP.htm b/source/com.microsoft.tfs.client.eclipse.help/content/InstallTEE_LP.htm index 39765fd53..ba4e6e4ac 100644 --- a/source/com.microsoft.tfs.client.eclipse.help/content/InstallTEE_LP.htm +++ b/source/com.microsoft.tfs.client.eclipse.help/content/InstallTEE_LP.htm @@ -484,7 +484,7 @@

    To install the Team Explorer Everywhere addit
  • Specify the location of the archive file and click Open.
    - Selected the downloaded archive file TFSEclipsePlugin-NL1-UpdateSiteArchive-14.123.0.zip. + Selected the downloaded archive file TFSEclipsePlugin-NL1-UpdateSiteArchive-14.123.1.zip.
  • @@ -515,7 +515,7 @@

    To install the Team Explorer Everywhere addit

    You can install the language pack to provide additional language support to the cross-platform command-line client for Team Foundation Server. Locale-specific environment variables must be configured for your desired language and character encoding, and your terminal program must be configured to display characters in this encoding. See the locale(1) manual page and the documentation for your terminal program for more information.

    To install the Cross-Platform Command-Line Client additional languages

    1. - Unzip the archive file (TEE-CLC-NL1-14.123.0.zip) that contains the languages into the same location as the cross-platform command-line client. + Unzip the archive file (TEE-CLC-NL1-14.123.1.zip) that contains the languages into the same location as the cross-platform command-line client.
    diff --git a/source/com.microsoft.tfs.client.eclipse.metafeature/feature.xml b/source/com.microsoft.tfs.client.eclipse.metafeature/feature.xml index fcf69a9d0..377df9ed6 100644 --- a/source/com.microsoft.tfs.client.eclipse.metafeature/feature.xml +++ b/source/com.microsoft.tfs.client.eclipse.metafeature/feature.xml @@ -2,7 +2,7 @@ diff --git a/source/com.microsoft.tfs.client.eclipse.ui.egit/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.client.eclipse.ui.egit/META-INF/MANIFEST.MF index 7d469033b..b33d5d1df 100644 --- a/source/com.microsoft.tfs.client.eclipse.ui.egit/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.client.eclipse.ui.egit/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.client.eclipse.ui.egit;singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Vendor: %Bundle-Vendor Bundle-Localization: plugin Bundle-RequiredExecutionEnvironment: JavaSE-1.6 diff --git a/source/com.microsoft.tfs.client.eclipse.ui/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.client.eclipse.ui/META-INF/MANIFEST.MF index 8c0f67071..b472168c5 100644 --- a/source/com.microsoft.tfs.client.eclipse.ui/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.client.eclipse.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.client.eclipse.ui; singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Activator: com.microsoft.tfs.client.eclipse.ui.TFSEclipseClientUIPlugin Bundle-Vendor: %Bundle-Vendor Bundle-Localization: plugin diff --git a/source/com.microsoft.tfs.client.eclipse.ui/about.ini b/source/com.microsoft.tfs.client.eclipse.ui/about.ini index 3d7e5ec01..1dd2a56e3 100644 --- a/source/com.microsoft.tfs.client.eclipse.ui/about.ini +++ b/source/com.microsoft.tfs.client.eclipse.ui/about.ini @@ -1,5 +1,5 @@ # This is really a Java properties file, and as such MUST be ISO 8859-1 # (http://help.eclipse.org/help33/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/misc/about_customization.html) -aboutText=Team Explorer Everywhere\nVersion 14.123.0\n\n Copyright (c) Microsoft. All rights reserved.\nLicensed under the MIT license. See License.txt in the repository root. +aboutText=Team Explorer Everywhere\nVersion 14.123.1\n\n Copyright (c) Microsoft. All rights reserved.\nLicensed under the MIT license. See License.txt in the repository root. featureImage=images/about.gif diff --git a/source/com.microsoft.tfs.client.eclipse/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.client.eclipse/META-INF/MANIFEST.MF index de7df1727..a62f5464d 100644 --- a/source/com.microsoft.tfs.client.eclipse/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.client.eclipse/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.client.eclipse; singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Activator: com.microsoft.tfs.client.eclipse.TFSEclipseClientPlugin Bundle-Vendor: %Bundle-Vendor Bundle-Localization: plugin diff --git a/source/com.microsoft.tfs.console/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.console/META-INF/MANIFEST.MF index 4062881c4..efcb166d4 100644 --- a/source/com.microsoft.tfs.console/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.console/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.console;singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Vendor: %Bundle-Vendor Bundle-Localization: plugin Export-Package: com.microsoft.tfs.console, diff --git a/source/com.microsoft.tfs.core.httpclient/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.core.httpclient/META-INF/MANIFEST.MF index bccc233be..50b856ce1 100644 --- a/source/com.microsoft.tfs.core.httpclient/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.core.httpclient/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.core.httpclient;singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-ClassPath: com.microsoft.tfs.core.httpclient.jar, libs/commons-codec-1.6/commons-codec-1.6.jar Bundle-Vendor: %Bundle-Vendor diff --git a/source/com.microsoft.tfs.core.ws.runtime/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.core.ws.runtime/META-INF/MANIFEST.MF index f78394403..7a05ac755 100644 --- a/source/com.microsoft.tfs.core.ws.runtime/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.core.ws.runtime/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.core.ws.runtime;singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-ClassPath: com.microsoft.tfs.core.ws.runtime.jar Bundle-Vendor: %Bundle-Vendor Bundle-Localization: plugin diff --git a/source/com.microsoft.tfs.core.ws/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.core.ws/META-INF/MANIFEST.MF index e69509286..74d462d55 100644 --- a/source/com.microsoft.tfs.core.ws/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.core.ws/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.core.ws;singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Vendor: %Bundle-Vendor Bundle-Localization: plugin Export-Package: ms.sql.reporting.reportingservices, diff --git a/source/com.microsoft.tfs.core/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.core/META-INF/MANIFEST.MF index fbc6ed9b5..d8bfc80f0 100644 --- a/source/com.microsoft.tfs.core/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.core;singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-ClassPath: com.microsoft.tfs.core.jar, libs/AlmHttpClient-15.105.0.20161011/alm-vss-client-15.105.0-SNAPSHOT.jar, libs/AlmHttpClient-15.105.0.20161011/alm-gallery-client-15.105.0-SNAPSHOT.jar, diff --git a/source/com.microsoft.tfs.core/about.html b/source/com.microsoft.tfs.core/about.html index f55038fb5..567a48237 100644 --- a/source/com.microsoft.tfs.core/about.html +++ b/source/com.microsoft.tfs.core/about.html @@ -6,7 +6,7 @@

    Microsoft® Team Explorer Everywhere

    -

    Release 14.123.0



    +

    Release 14.123.1



    Copyright (c) Microsoft. All rights reserved.
    Licensed under the MIT license. See License.txt in the repository root.
    diff --git a/source/com.microsoft.tfs.core/src/com.microsoft.tfs.core-version.properties b/source/com.microsoft.tfs.core/src/com.microsoft.tfs.core-version.properties index 52ab32261..4a9c461bf 100644 --- a/source/com.microsoft.tfs.core/src/com.microsoft.tfs.core-version.properties +++ b/source/com.microsoft.tfs.core/src/com.microsoft.tfs.core-version.properties @@ -2,5 +2,5 @@ # This version gets checked in so debugging/tfdev works. number.version.major=14 number.version.minor=123 -number.version.service=0 +number.version.service=1 number.version.build=SNAPSHOT \ No newline at end of file diff --git a/source/com.microsoft.tfs.jni/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.jni/META-INF/MANIFEST.MF index 3a73ba8c8..c7baac8df 100644 --- a/source/com.microsoft.tfs.jni/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.jni/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.jni;singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Vendor: %Bundle-Vendor Bundle-Localization: plugin Export-Package: com.microsoft.tfs.jni, diff --git a/source/com.microsoft.tfs.logging/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.logging/META-INF/MANIFEST.MF index 56c44f420..17e894d3d 100644 --- a/source/com.microsoft.tfs.logging/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.logging/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.logging;singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Vendor: %Bundle-Vendor Bundle-Localization: plugin Bundle-RequiredExecutionEnvironment: JavaSE-1.6 diff --git a/source/com.microsoft.tfs.sdk.samples.checkinpolicy/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.sdk.samples.checkinpolicy/META-INF/MANIFEST.MF index 7a9018f0b..d4d744a71 100644 --- a/source/com.microsoft.tfs.sdk.samples.checkinpolicy/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.sdk.samples.checkinpolicy/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Sample TFS Check-in Policy Bundle-SymbolicName: com.microsoft.tfs.sdk.samples.checkinpolicy;singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Vendor: Microsoft Corporation Export-Package: com.microsoft.tfs.sdk.samples.checkinpolicy Require-Bundle: org.eclipse.core.runtime, diff --git a/source/com.microsoft.tfs.sdk.samples.console/.classpath-sdk b/source/com.microsoft.tfs.sdk.samples.console/.classpath-sdk index fcbb7c9e1..2d18aef19 100644 --- a/source/com.microsoft.tfs.sdk.samples.console/.classpath-sdk +++ b/source/com.microsoft.tfs.sdk.samples.console/.classpath-sdk @@ -3,5 +3,5 @@ - + diff --git a/source/com.microsoft.tfs.sdk.samples.console/build.xml b/source/com.microsoft.tfs.sdk.samples.console/build.xml index 36fa68b0c..7e7ec78e6 100644 --- a/source/com.microsoft.tfs.sdk.samples.console/build.xml +++ b/source/com.microsoft.tfs.sdk.samples.console/build.xml @@ -9,7 +9,7 @@ - + diff --git a/source/com.microsoft.tfs.sdk.samples.console/readme.txt b/source/com.microsoft.tfs.sdk.samples.console/readme.txt index 8cc475afa..220115712 100644 --- a/source/com.microsoft.tfs.sdk.samples.console/readme.txt +++ b/source/com.microsoft.tfs.sdk.samples.console/readme.txt @@ -10,7 +10,7 @@ Instructions for Using Console Samples 3. Run each snippet program like: (Windows) - java -Dcom.microsoft.tfs.jni.native.base-directory=..\..\redist\native -classpath ..\..\redist\lib\com.microsoft.tfs.sdk-14.123.0.jar;.\bin com.microsoft.tfs.sdk.samples.console.ConsoleSampleClassName + java -Dcom.microsoft.tfs.jni.native.base-directory=..\..\redist\native -classpath ..\..\redist\lib\com.microsoft.tfs.sdk-14.123.1.jar;.\bin com.microsoft.tfs.sdk.samples.console.ConsoleSampleClassName (Unix and Mac OS) - java -Dcom.microsoft.tfs.jni.native.base-directory=../../redist/native -classpath ../../redist/lib/com.microsoft.tfs.sdk-14.123.0.jar:./bin com.microsoft.tfs.sdk.samples.console.ConsoleSampleClassName + java -Dcom.microsoft.tfs.jni.native.base-directory=../../redist/native -classpath ../../redist/lib/com.microsoft.tfs.sdk-14.123.1.jar:./bin com.microsoft.tfs.sdk.samples.console.ConsoleSampleClassName diff --git a/source/com.microsoft.tfs.sdk.samples.snippets/.classpath-sdk b/source/com.microsoft.tfs.sdk.samples.snippets/.classpath-sdk index 553d012b4..7734790b4 100644 --- a/source/com.microsoft.tfs.sdk.samples.snippets/.classpath-sdk +++ b/source/com.microsoft.tfs.sdk.samples.snippets/.classpath-sdk @@ -3,5 +3,5 @@ - + diff --git a/source/com.microsoft.tfs.sdk.samples.snippets/build.xml b/source/com.microsoft.tfs.sdk.samples.snippets/build.xml index c5efaeebd..ea9959cd4 100644 --- a/source/com.microsoft.tfs.sdk.samples.snippets/build.xml +++ b/source/com.microsoft.tfs.sdk.samples.snippets/build.xml @@ -9,7 +9,7 @@ - + diff --git a/source/com.microsoft.tfs.sdk.samples.snippets/readme.txt b/source/com.microsoft.tfs.sdk.samples.snippets/readme.txt index 250c3be93..463e310b9 100644 --- a/source/com.microsoft.tfs.sdk.samples.snippets/readme.txt +++ b/source/com.microsoft.tfs.sdk.samples.snippets/readme.txt @@ -10,7 +10,7 @@ Instructions for Using Snippets 3. Run each snippet program like: (Windows) - java -Dcom.microsoft.tfs.jni.native.base-directory=..\..\redist\native -classpath ..\..\redist\lib\com.microsoft.tfs.sdk-14.123.0.jar;.\bin com.microsoft.tfs.sdk.samples.snippets.SnippetClassName + java -Dcom.microsoft.tfs.jni.native.base-directory=..\..\redist\native -classpath ..\..\redist\lib\com.microsoft.tfs.sdk-14.123.1.jar;.\bin com.microsoft.tfs.sdk.samples.snippets.SnippetClassName (Unix and Mac OS) - java -Dcom.microsoft.tfs.jni.native.base-directory=../../redist/native -classpath ../../redist/lib/com.microsoft.tfs.sdk-14.123.0.jar:./bin com.microsoft.tfs.sdk.samples.snippets.SnippetClassName + java -Dcom.microsoft.tfs.jni.native.base-directory=../../redist/native -classpath ../../redist/lib/com.microsoft.tfs.sdk-14.123.1.jar:./bin com.microsoft.tfs.sdk.samples.snippets.SnippetClassName diff --git a/source/com.microsoft.tfs.sdk.samples.teamexplorer/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.sdk.samples.teamexplorer/META-INF/MANIFEST.MF index 282a8776c..ba19cfcf3 100644 --- a/source/com.microsoft.tfs.sdk.samples.teamexplorer/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.sdk.samples.teamexplorer/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Sample Team Explorer Extensions Bundle-SymbolicName: com.microsoft.tfs.sdk.samples.teamexplorer;singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Activator: com.microsoft.tfs.sdk.samples.teamexplorer.Activator Bundle-Vendor: Microsoft Corporation Require-Bundle: org.eclipse.ui, diff --git a/source/com.microsoft.tfs.sdk.samples.witcontrols/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.sdk.samples.witcontrols/META-INF/MANIFEST.MF index 6dd29fce2..4b20ad661 100644 --- a/source/com.microsoft.tfs.sdk.samples.witcontrols/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.sdk.samples.witcontrols/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Sample TFS Custom Work item Controls Bundle-SymbolicName: com.microsoft.tfs.sdk.samples.witcontrols;singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Vendor: Microsoft Corporation Export-Package: com.microsoft.tfs.sdk.samples.witcontrols Require-Bundle: com.microsoft.tfs.core, diff --git a/source/com.microsoft.tfs.sdk/readme.html b/source/com.microsoft.tfs.sdk/readme.html index bbd3c9708..2b483c66f 100644 --- a/source/com.microsoft.tfs.sdk/readme.html +++ b/source/com.microsoft.tfs.sdk/readme.html @@ -164,13 +164,13 @@

    Getting Started

    Follow these steps to get started using the client object model:

      -
    • Copy the redist/lib/com.microsoft.tfs.sdk-14.123.0.jar +
    • Copy the redist/lib/com.microsoft.tfs.sdk-14.123.1.jar file and redist/native directory (including all subdirectories and files) to your application's development or runtime location.
    • Configure your application's Java classpath to include the com.microsoft.tfs.sdk-14.123.0.jar file.
    • + class="path">com.microsoft.tfs.sdk-14.123.1.jar file.
    • Use classes from the client object model in your application. Sample client application source code can be found in the Java Build Path

  • When the Properties dialog containing the Java Build Path page appears, click the Libraries tab then click the Add External JARs... button
  • -
  • Browse to the SDK's redist/lib/com.microsoft.tfs.sdk-14.123.0.jar +
  • Browse to the SDK's redist/lib/com.microsoft.tfs.sdk-14.123.1.jar file and click Open
  • Click OK to close the Properties dialog
  • diff --git a/source/com.microsoft.tfs.sdk/redist/redist.txt b/source/com.microsoft.tfs.sdk/redist/redist.txt index be31f2922..b5c70cfe6 100644 --- a/source/com.microsoft.tfs.sdk/redist/redist.txt +++ b/source/com.microsoft.tfs.sdk/redist/redist.txt @@ -8,7 +8,7 @@ Software License Terms. ThirdPartyNotices.html -lib/com.microsoft.tfs.sdk-14.123.0.jar +lib/com.microsoft.tfs.sdk-14.123.1.jar native/macosx/libnative_misc.jnilib native/macosx/libnative_keychain.jnilib diff --git a/source/com.microsoft.tfs.util/META-INF/MANIFEST.MF b/source/com.microsoft.tfs.util/META-INF/MANIFEST.MF index daf8244ed..2e3c9903e 100644 --- a/source/com.microsoft.tfs.util/META-INF/MANIFEST.MF +++ b/source/com.microsoft.tfs.util/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name Bundle-SymbolicName: com.microsoft.tfs.util;singleton:=true -Bundle-Version: 14.123.0.qualifier +Bundle-Version: 14.123.1.qualifier Bundle-Vendor: %Bundle-Vendor Bundle-Localization: plugin Export-Package: com.microsoft.tfs.util,