mirror of https://github.com/lidarr/Lidarr
New: Added drone factory rescan button to Wanted
This commit is contained in:
parent
357726ed09
commit
69f5c8444e
|
@ -4,6 +4,14 @@ namespace NzbDrone.Core.MediaFiles.Commands
|
||||||
{
|
{
|
||||||
public class DownloadedEpisodesScanCommand : Command
|
public class DownloadedEpisodesScanCommand : Command
|
||||||
{
|
{
|
||||||
|
public override bool SendUpdatesToClient
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return SendUpdates;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool SendUpdates { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -8,16 +8,16 @@
|
||||||
<option es3="false" />
|
<option es3="false" />
|
||||||
<option forin="true" />
|
<option forin="true" />
|
||||||
<option immed="true" />
|
<option immed="true" />
|
||||||
<option latedef="true" />
|
|
||||||
<option newcap="true" />
|
<option newcap="true" />
|
||||||
<option noarg="true" />
|
<option noarg="true" />
|
||||||
<option noempty="false" />
|
<option noempty="false" />
|
||||||
<option nonew="true" />
|
<option nonew="true" />
|
||||||
<option plusplus="false" />
|
<option plusplus="false" />
|
||||||
<option undef="true" />
|
<option undef="true" />
|
||||||
<option unused="true" />
|
|
||||||
<option strict="true" />
|
<option strict="true" />
|
||||||
<option trailing="false" />
|
<option trailing="false" />
|
||||||
|
<option latedef="true" />
|
||||||
|
<option unused="true" />
|
||||||
<option quotmark="single" />
|
<option quotmark="single" />
|
||||||
<option maxdepth="3" />
|
<option maxdepth="3" />
|
||||||
<option asi="false" />
|
<option asi="false" />
|
||||||
|
|
|
@ -131,6 +131,14 @@ define(
|
||||||
title: 'Season Pass',
|
title: 'Season Pass',
|
||||||
icon : 'icon-bookmark',
|
icon : 'icon-bookmark',
|
||||||
route: 'seasonpass'
|
route: 'seasonpass'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Rescan Drone Factory Folder',
|
||||||
|
icon : 'icon-refresh',
|
||||||
|
command: 'downloadedepisodesscan',
|
||||||
|
properties: {
|
||||||
|
sendUpdates: true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue