Skip to content
Open
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
14 changes: 9 additions & 5 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.13.1
// @version 3.13.2
// @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 @@ -104,11 +104,10 @@
'agent-arbitration-status-off': 'Off',
});

eus.showTipOnce('release-2026-07-27', 'New in the AzDO userscript', `
<p>Highlights from the 2026-07-27 update!</p>
eus.showTipOnce('release-2026-09-01', 'New in the AzDO userscript', `
<p>Highlights from the 2026-09-01 update!</p>
<ul>
<li>OOO info is now looked up live per-reviewer via Microsoft Graph (no more stale data!)</li>
<li>For non-NI/Emerson users, use <b>script menu → OOO Lookup: Configure Graph Client ID</b> to set up</li>
<li>Label watchers in the Reviewers list on PRs (#268)</li>
</ul>
<p>Comments, bugs, suggestions? File an issue on <a href="https://github.com/alejandro5042/azdo-userscripts" target="_blank">GitHub</a> 🧡</p>
`);
Expand Down Expand Up @@ -1058,6 +1057,10 @@
background: rgba(var(--palette-primary), 0.3);
color: #fff;
}
.reviewer-status-message.watcher {
background: rgba(var(--palette-primary), 0.3);
color: #fff;
}
.tippy-box[data-theme~='azdo-userscript'] {
padding: 5px 10px;
}
Expand Down Expand Up @@ -1174,6 +1177,7 @@
annotateReviewerRole('owner', 'owner', f => f.owner === reviewerIdentityIndex + 1);
annotateReviewerRole('alternate', 'alternate', f => f.alternate === reviewerIdentityIndex + 1);
annotateReviewerRole('expert', 'expert', f => _.some(f.experts, e => e === reviewerIdentityIndex + 1));
annotateReviewerRole('watcher', 'watcher', f => _.some(f.watchers, w => w === reviewerIdentityIndex + 1));
}
}

Expand Down
Loading