Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add resizable pane info to the README and update notification #237

Merged
merged 1 commit into from
Jul 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,13 @@ By default, Violentmonkey will auto-update scripts from the original install loc
- "Show More" buttons on work item forms and on Kanban boards are auto-clicked for you! (But only if the New column is expanded)
- Work item forms show under the comment box who else is following the work item (disclaimer: also shows people that are only following state changes)

### Augmented build results view (NI-only)
### Augmented build results view

In the builds results logs view, the left pane is now resizable so that job and step names are more visible.

![Resizable build results view.](assets/resizable-build-logs-pane.png)

#### NI-only changes

> These features are only available in [NI](https://www.ni.com) AzDO accounts.

Expand Down
Binary file added assets/resizable-build-logs-pane.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 6 additions & 8 deletions src/azdo-pr-dashboard.user.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==

// @name More Awesome Azure DevOps (userscript)
// @version 3.7.4
// @version 3.7.5
// @author Alejandro Barreto (NI)
// @description Makes general improvements to the Azure DevOps experience, particularly around pull requests. Also contains workflow improvements for NI engineers.
// @license MIT
Expand Down Expand Up @@ -76,15 +76,13 @@
'agent-arbitration-status-off': 'Off',
});

eus.showTipOnce('release-2021-11-14', 'New in the AzDO userscript', `
<p>Highlights from the 2021-11-14 update!</p>
<p>PR reviewers are now annotated with:</p>
eus.showTipOnce('release-2024-06-06', 'New in the AzDO userscript', `
<p>Highlights from the 2024-06-06 update!</p>
<p>Changes to the build logs view:</p>
<ul>
<li><b>Out-of-office status</b>: From Outlook auto-reply messages. Hover over to see the full message</li>
<li><b>Owner info</b>: How many files the reviewer is listed as an owner, alternate, and expert. Hover over to see which files</li>
<li><b>Country flags</b>: Shown if they are they are in a different country than you (these reviewers could have a longer response time due to timezones)</li>
<li><b>Employment status</b>: Ex-employee, leave of absence, etc.</li>
<li>The left-side jobs pane is now resizable.</li>
</ul>
<p>See also <a href="https://github.com/alejandro5042/azdo-userscripts/commits/master/?since=2021-11-15&until=2024-04-16" target="_blank">other changes since our last update notification</a>.</p>
<hr>
<p>Comments, bugs, suggestions? File an issue on <a href="https://github.com/alejandro5042/azdo-userscripts" target="_blank">GitHub</a> 🧡</p>
`);
Expand Down
Loading