From 6afb770d872cc7eb9802a867343bf6522350d605 Mon Sep 17 00:00:00 2001 From: Tobias Sachs Date: Fri, 21 Aug 2020 17:06:47 +0200 Subject: [PATCH] 0.9: update download/update URLs --- AzureDevOpsCommentEnhancer.user.js | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/AzureDevOpsCommentEnhancer.user.js b/AzureDevOpsCommentEnhancer.user.js index 95b4094..8d06776 100755 --- a/AzureDevOpsCommentEnhancer.user.js +++ b/AzureDevOpsCommentEnhancer.user.js @@ -1,15 +1,16 @@ // ==UserScript== // @name Fix ADS checkin comments in discussion and history of workitems -// @version 0.8 +// @version 0.9 // @author Tobias Sachs // ... in @match replace "ads" with the url of you Azure DevOps Server // @match https://ads/* -// @updateURL https://github.com/tsheba/tampermonkeyscripts/raw/master/AzureDevOpsCommentEnhancer.user.js -// @downloadURL https://github.com/tsheba/tampermonkeyscripts/raw/master/AzureDevOpsCommentEnhancer.user.js +// @updateURL https://src.twobees.de/?p=tampermonkeyscripts.git;a=blob_plain;f=AzureDevOpsCommentEnhancer.user.js;hb=HEAD +// @downloadURL https://src.twobees.de/?p=tampermonkeyscripts.git;a=blob_plain;f=AzureDevOpsCommentEnhancer.user.js;hb=HEAD // @grant none // @description // ==/UserScript== +// 0.9: update download/update URLs // 0.8: fix typos/formatting // 0.7: fix work item tampering // 0.6: Add link to Changeset in diff view @@ -27,7 +28,7 @@ console.debug("observe..."); }; - + let fixCommentContents = (items) => { if (items === null || items === undefined || items.length === 0) { return; @@ -49,10 +50,10 @@ if (!found) { return; } - + // if opened from email notification, it is the first span in div "changeset-version" elToFix = found.querySelector("span"); - + if (!elToFix) { return; } -- 2.39.2