mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
de556764bd
New: Added changelog to UI
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>
|