diff options
author | morpheus65535 <[email protected]> | 2022-04-28 16:15:57 -0400 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2022-04-28 16:15:57 -0400 |
commit | a382e46074255290501482ac6971a858795e206e (patch) | |
tree | 58e22851ffb019d3c45363830dad80a021b481a5 /changelog-dev.hbs | |
parent | f01d916f95cf41d04df8576bce05165eaee56f35 (diff) | |
download | bazarr-a382e46074255290501482ac6971a858795e206e.tar.gz bazarr-a382e46074255290501482ac6971a858795e206e.zip |
no log: fix incomplete changelogs
Diffstat (limited to 'changelog-dev.hbs')
-rw-r--r-- | changelog-dev.hbs | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/changelog-dev.hbs b/changelog-dev.hbs index d41d60284..15469d6cd 100644 --- a/changelog-dev.hbs +++ b/changelog-dev.hbs @@ -1,8 +1,15 @@ From newest to oldest: {{#each releases}} - {{#if @first}} - {{#each commits}} - - {{subject}}{{#if href}} [{{shorthash}}]({{href}}){{/if}} - {{/each}} - {{/if}} + {{#each merges}} + - + {{message}}{{#if href}} [#{{id}}]({{href}}){{/if}} + {{/each}} + {{#each fixes}} + - + {{commit.subject}}{{#if href}} [#{{id}}]({{href}}){{/if}} + {{/each}} + {{#each commits}} + - + {{subject}}{{#if href}} [{{shorthash}}]({{href}}){{/if}} + {{/each}} {{/each}}
\ No newline at end of file |