mirror of https://github.com/lidarr/Lidarr
24 lines
644 B
HTML
24 lines
644 B
HTML
|
<div class="update">
|
|||
|
<fieldset>
|
|||
|
<legend>{{version}} <span class="date">- {{ShortDate releaseDate}}</span></legend>
|
|||
|
|
|||
|
{{#with changes}}
|
|||
|
{{#each new}}
|
|||
|
<div class="change">
|
|||
|
<span class="label label-success">New</span> {{this}}
|
|||
|
</div>
|
|||
|
{{/each}}
|
|||
|
|
|||
|
{{#each fixed}}
|
|||
|
<div class="change">
|
|||
|
<span class="label label-info">Fixed</span> {{this}}
|
|||
|
</div>
|
|||
|
{{/each}}
|
|||
|
{{/with}}
|
|||
|
|
|||
|
{{#unless changes}}
|
|||
|
No notable changes
|
|||
|
{{/unless}}
|
|||
|
</fieldset>
|
|||
|
</div>
|