Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 5f77c4a

Browse files
authored
Merge branch 'master' into fixes/checkout-button-tooltips
2 parents ccf6636 + 8a8766e commit 5f77c4a

File tree

2 files changed

+34
-3
lines changed

2 files changed

+34
-3
lines changed

documentation/manifest.md

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,39 @@
126126
- [ ] "Create New" Link button is displayed
127127
- [ ] Clicking on a pull request title opens browser window to pull request on .com
128128
- [ ] Clicking on a pull request number opens browser window to pull request on .com
129+
- [ ] **Click on a pull request title**
130+
- [ ] A detailed description of the pull request is displayed.
131+
- [ ] Pull request number matches the number in the list.
132+
- [ ] Pull request title matches the title in the list.
133+
- [ ] Source branch is displayed on the left
134+
- [ ] Mousing over the source branch shows the entire branch name in a tool tip
135+
- [ ] Target branch is displayed on the right
136+
- [ ] Mousing over the target branch shows the entire branch name in a tool tip
137+
- [ ] "View conversation on GitHub" link navigates to pull request on .com
138+
- [ ] List of changed files displayed under pull request description
139+
- [ ] Right clicking on a specific file displays options to open or compare file
140+
- [ ] Double clicking on a file opens a diff view of the file or a single file (depends on current file option)
141+
- [ ] Files in file diff view match diff on .com (pick any file)
142+
- [ ] **Change the changed files current view**
143+
- [ ] The view has been changed to the view selected
144+
- [ ] **Close & reopen Visual Studio**
145+
- [ ] **Go to any pull request details**
146+
- [ ] View of changed files was the selected view before closing Visual Studio
147+
- [ ] **Change the default file action**
148+
- [ ] Double clicking on a file in the changed file list opens a diff view if previous action setting opened the file, or a single file if the previous action setting opened the diff view (depends on current file option)
149+
- [ ] **Close & reopen Visual Studio**
150+
- [ ] **Go to any pull request details**
151+
- [ ] Double clicking on a file in the changed file list uses last default action setting open file/file diff
152+
- [ ] **Make a change any file and save it**
153+
- [ ] **Go to any pull request details and mouseover**
154+
- [ ] "Checkout to [branch name]" is plain text (not hyperlink) and mouseover displays tool tip
155+
- [ ] **Undo pending changes (Many option to do this. One way: Go to Team Explorer > Home > Changes > Right click on files > Undo Changes)**
156+
- [ ] **Click on "checkout to [branch name]"**
157+
- [ ] Git context (lower right) displays source branch name of pull request
158+
- [ ] "Checkout to [branch name]" text has changed to "Local branch up to date"
129159
- [ ] **Create a new branch (can alternatively make commits on an existing branch)**
130160
- [ ] **Switch Git context to new branch**
131-
- [ ] **Click on Create New button**
161+
- [ ] **Navigate to the Pull Request List (Pull request icon in navigation toolbar) and click on Create New button**
132162
- [ ] Pane title displays "GitHub | (current repository)"
133163
- [ ] Selected pane tab title (on the bottom) displays "GitHub"
134164
- [ ] Create Pull Request button is disabled.
@@ -143,7 +173,8 @@
143173
- [ ] Pull request list is displayed with new pull request (that was just created) at the top of the list
144174
- [ ] "The Pull Request has been created at [target branch]" message is displayed at the top of the GitHub pane
145175
- [ ] Verify all non pushed commits prior to pull request creation have been pushed and exist on .com
146-
176+
- [ ] **Click on back/right/pull request/refresh navigation items (any order)**
177+
- [ ] Verify that navigation buttons show views are consistent with clicked navigation buttons
147178

148179
# In VS text/code Editor (logged in to GitHub, open a file that is hosted on Github)
149180
- [ ] **Highlight code or text within solution, then right click.**

src/GitHub.VisualStudio/UI/Views/PullRequestDetailView.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@
353353
DataContext and update the CommandParameter to the changed file -->
354354
<ContextMenu x:Key="FileContextMenu">
355355
<MenuItem Header="{x:Static prop:Resources.OpenFile}" Command="{Binding OpenFile}"/>
356-
<MenuItem Header="{x:Static prop:Resources.CompareFile}" Command="{Binding CompareFile}"/>
356+
<MenuItem Header="{x:Static prop:Resources.CompareFile}" Command="{Binding DiffFile}"/>
357357
</ContextMenu>
358358
</Grid.Resources>
359359

0 commit comments

Comments
 (0)