Add burndown chart date normalisation

This commit is contained in:
Gordon 2021-05-01 01:31:03 +01:00
parent d2398ae985
commit 130484ac0c
4 changed files with 1491 additions and 789 deletions

View File

@ -1,3 +1,7 @@
# 0.8.0
* Update kanbn dependency, now using auto-normalisation for burndown chart datapoints, see [here](https://github.com/basementuniverse/kanbn/blob/master/docs/commands/burndown.txt) for more information
# 0.7.3 # 0.7.3
* Speculative fix for no_case bug when parsing & converting task names * Speculative fix for no_case bug when parsing & converting task names

View File

@ -66,7 +66,10 @@ export default class KanbnBurndownPanel {
new Date(Date.parse(KanbnBurndownPanel.currentPanel.startDate)), new Date(Date.parse(KanbnBurndownPanel.currentPanel.startDate)),
new Date(Date.parse(KanbnBurndownPanel.currentPanel.endDate)) new Date(Date.parse(KanbnBurndownPanel.currentPanel.endDate))
] ]
: null : null,
null,
null,
'auto'
) )
}); });
} }

2269
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -88,7 +88,7 @@
} }
}, },
"dependencies": { "dependencies": {
"@basementuniverse/kanbn": "^0.6.1", "@basementuniverse/kanbn": "^0.7.0",
"dateformat": "^4.5.1", "dateformat": "^4.5.1",
"formik": "^2.2.6", "formik": "^2.2.6",
"git-user-name": "^2.0.0", "git-user-name": "^2.0.0",