mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Changelog is now available in the UI
New: Added changelog to UI
This commit is contained in:
parent
90001b1a3b
commit
de556764bd
22 changed files with 285 additions and 52 deletions
23
UI/Update/UpdateItemViewTemplate.html
Normal file
23
UI/Update/UpdateItemViewTemplate.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
<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>
|
Loading…
Add table
Add a link
Reference in a new issue