diff --git a/CurrentReleaseNotes.md b/CurrentReleaseNotes.md
index 6c066168..1ba61a8f 100644
--- a/CurrentReleaseNotes.md
+++ b/CurrentReleaseNotes.md
@@ -1,17 +1,35 @@
-## Related Issues
+## Issues fixes
-- ### [Issue0093](https://github.com/expertasolutions/VstsDashboard/issues/93)
- - Azure DevOps API query optimization
- - Optimization on Builds and Release Data is pull from Azure DevOps API
- - Fix to show latest environment released in showed in the Deployment Health
- - Fix the order of Released showed in the Deployment Health column when periodical refresh is made
- - Fix Build showed in double randomly
- - Fix General display update
- - Rename the label "x pending build(s)" to "x other(s) run(s)"
+- ### [Issue0109](https://github.com/expertasolutions/VstsDashboard/Delivery-20April-01/issues/109)
+ - Add fullscreen capability
+
+ ![Issue0109-01](_ReleaseNotes/Delivery200430/Issue0109/Issue0109-01.png)
-- ### [Issue0105](https://github.com/expertasolutions/VstsDashboard/issues/105)
- - Set minimal Azure DevOps Server minimal version to 2019 Update 1 (17.153.29207.5) and later
+ ![Issue0109-02](_ReleaseNotes/Delivery200430/Issue0109/Issue0109-02.png)
- For more informations regarding Azure DevOps Server versions, see [Azure DevOps Server build numbers](https://docs.microsoft.com/en-us/azure/devops/release-notes/features-timeline#server-build-numbers)
-
- - No minimal version has been set for Azure DevOps Service
\ No newline at end of file
+- ### [Issue0113](https://github.com/expertasolutions/VstsDashboard/Delivery-20April-01/issues/113)
+ - On 'All Runs', Fix the duplication of two differents status for the same build run.
+
+- ### [Issue0115](https://github.com/expertasolutions/VstsDashboard/Delivery-20April-01/issues/115)
+ - Add Build Pipeline Reference Status by Pipeline
+
+ ![Issue0115-01](_ReleaseNotes/Delivery200430/Issue0115/Issue0115-01.png)
+
+- ### Un Issued changes
+
+ - ***Globally***:
+ - Move 'Duration' field on the same line of pipeline 'start time'
+ - Review columns width on 'Summary' and 'All Runs' views
+ - Move 'send a request' from the header to the same level of 'fullscreen' mode option
+ - 'Send a request' icon redirect directly to GitHub project new issue page
+
+ - On '***Summary***' view':
+ - 'Failure/Partial on top' dropdownlist has been renamed to 'Cancelled/Failed/Partial on top'
+ - Fix the problems of Pipeline wasn't properly showed on top when in 'Pending/Running' status
+
+ - On '***All Runs***' view:
+ - Add the link to the Build Definition Reference
+ - Add a 'Zero Data' message when no builds is present
+ - When a Team project is unselected, related build are removed from the view
+
+#### All these issues are part of the milestone [Delivery-200430](https://github.com/expertasolutions/VstsDashboard/milestone/2)
\ No newline at end of file
diff --git a/_ReleaseNotes/Delivery200430/Globally/Globally-200401-01.png b/_ReleaseNotes/Delivery200430/Globally/Globally-200401-01.png
new file mode 100644
index 00000000..e69de29b
diff --git a/_ReleaseNotes/Delivery200430/Issue0109/Issue0109-01.png b/_ReleaseNotes/Delivery200430/Issue0109/Issue0109-01.png
new file mode 100644
index 00000000..f1cbbc75
Binary files /dev/null and b/_ReleaseNotes/Delivery200430/Issue0109/Issue0109-01.png differ
diff --git a/_ReleaseNotes/Delivery200430/Issue0109/Issue0109-02.png b/_ReleaseNotes/Delivery200430/Issue0109/Issue0109-02.png
new file mode 100644
index 00000000..300c8a3a
Binary files /dev/null and b/_ReleaseNotes/Delivery200430/Issue0109/Issue0109-02.png differ
diff --git a/_ReleaseNotes/Delivery200430/Issue0115/Issue0115-01.png b/_ReleaseNotes/Delivery200430/Issue0115/Issue0115-01.png
new file mode 100644
index 00000000..0de1bc7b
Binary files /dev/null and b/_ReleaseNotes/Delivery200430/Issue0115/Issue0115-01.png differ
diff --git a/ci-vstsdashboardbuild.yml b/ci-vstsdashboardbuild.yml
index e882a885..04399576 100644
--- a/ci-vstsdashboardbuild.yml
+++ b/ci-vstsdashboardbuild.yml
@@ -3,9 +3,11 @@ name: VstsDashboard-v1.$(date:yy)$(DayOfYear)$(rev:.r)-$(Build.SourceBranchName)
trigger:
- master
- Issue*
+- Delivery*
pr:
- master
+- Delivery*
pool:
vmImage: 'vs2017-win2016'
diff --git a/screenshots/CI_CD_Dashboard.png b/screenshots/CI_CD_Dashboard.png
index 8971b066..cdb2af8f 100644
Binary files a/screenshots/CI_CD_Dashboard.png and b/screenshots/CI_CD_Dashboard.png differ
diff --git a/src/ext/Dashboard/PipelineServices.tsx b/src/ext/Dashboard/PipelineServices.tsx
index 90f263b6..6160e3a7 100644
--- a/src/ext/Dashboard/PipelineServices.tsx
+++ b/src/ext/Dashboard/PipelineServices.tsx
@@ -113,7 +113,6 @@ export async function getBuilds(projectName: string, isFirstLoad: boolean, timeR
result.push(...inProgressResult);
result.push(...cancellingResult);
result.push(...notStartedResult);
- result.push(...notStartedResult);
result.push(...postponedResult);
result.push(...noneResult);
result.push(...completedResult);
diff --git a/src/ext/Dashboard/cells/build.tsx b/src/ext/Dashboard/cells/build.tsx
index 737e994b..81e621b7 100644
--- a/src/ext/Dashboard/cells/build.tsx
+++ b/src/ext/Dashboard/cells/build.tsx
@@ -7,6 +7,7 @@ import {
getPipelineIndicator,
} from "./common";
+import { BuildDefinitionReference, BuildStatus } from "azure-devops-extension-api/Build";
import { Ago } from "azure-devops-ui/Ago";
import { Duration } from "azure-devops-ui/Duration";
import { Link } from "azure-devops-ui/Link";
@@ -26,6 +27,11 @@ export function getBuildStatus(build: Build) : IStatusIndicatorData {
return getPipelineIndicator(build.result, build.status);
}
+function getBuildDefinitionUrl(buildDefs: BuildDefinitionReference[], buildDefId: number) {
+ let buildDefRef = buildDefs.find(x=> x.id === buildDefId);
+ return buildDefRef ? buildDefRef._links.web.href : "#";
+}
+
export function renderBuildStatus (
rowIndex: number,
columnIndex: number,
@@ -34,19 +40,27 @@ export function renderBuildStatus (
): JSX.Element {
let projectName = tableItem.project.name;
return (
-
-
-
+
+ If it's not an holiday, are you sure that your team is working ? ;)
+
+ }
+ imageAltText="No builds has been runs from a while..."
+ imagePath="https://ms.gallerycdn.vsassets.io/extensions/ms/vss-releasemanagement-web/18.166.0.311329757/1586412473334/release-landing/zerodata-release-management-new.png"
+ />
+