edtro / EdTro.AzureDevOps.Extensions.querybasedboards

Query Based Boards enables a user to visualize the result of work item queries as a board and track the dependencies.
MIT License
23 stars 2 forks source link

New feature: split columns in doing/done and add swimlanes #7

Closed edtro closed 3 years ago

edtro commented 4 years ago

maybe this can also be done based on boolean fields.

Lazys commented 4 years ago

Hi, any progress on this and others issues? We're really looking forward new features :)

edtro commented 4 years ago

@Lazys Hi, I just returned from my summer vacation... and I will be picking up things very soon. For the swimlines I have already very promising results, but still have some bugs to resolve. Maybe you are interested in helping me out with pre-release testing? I have setup a seperate private offer/extension on the marketplace to enable this. Kr Edward

Lazys commented 4 years ago

I see, great :) That's good idea, I'd love to help you out with testing - we're using in the company your extension on the daily basis, so we can easily verify if nothing has been broken.

Do you need our organization name or anything?

w0nders commented 4 years ago

@edtro Hi, I also interested for testing features. I think, in your extension lack feature for configure result board, i mean which field can display on work item

edtro commented 4 years ago

@w0nders Hi, indeed this is something that is on my todo list... see #12

edtro commented 3 years ago

Here is a screenshot of the preview image

And used this config

{
   "columns":[
      {
         "name":"New",
         "title":"New/Backlog",
         "isBacklog":true
      },
      {
         "name":"Active",
         "title":"In Progress/Active",
         "doingDone":{
            "field":"Custom.IsDone",
            "doingTitle":"Working on it...",
            "doingDefaultValue":false,
            "doneTitle":"Finished!",
            "doneValue":true
         }
      },
      {
         "name":"Test",
         "title":"Testing"
      },
      {
         "name":"Resolved",
         "title":"Resolved/Ready for release",
         "isBacklog":true
      },            
      {
         "name":"Closed",
         "title":"Completed/Done",
         "isBacklog":true
      }
   ],
   "swimlanes":{
      "field":"Microsoft.VSTS.CMMI.Blocked",
      "defaultValue": "No",
      "values":[
         {
            "value":"Yes",
            "title":"Is Blocked"
         }
      ]
   }
}
edtro commented 3 years ago

Is available as PREVIEW (with v0.20305.3 that is just released).

edtro commented 3 years ago

Note: Swimlane header backgroundcolor is hardcoded and apparently optimized for the dark theme, this will be adjusted