mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-29 18:15:37 -04:00
Add, new setting "Set File Date to Airdate" on the Media Management tab of the Settings page to toggle this feature for new, imported and auto updating media files. Change, home page "Series Editor" - "Rename" button to "Update Files" and add "Set File Date To Air Date" action button to this modal to add capability of updating legacy media. Add, non UTC functions given that Windows undesirably adds time to file times set when using UTC. Fix, the Trakt API response show.air_time_utc contains erroneous data, this is replaced with show.air_time.
72 lines
2.4 KiB
HTML
72 lines
2.4 KiB
HTML
<fieldset class="advanced-setting">
|
|
<legend>File Management</legend>
|
|
|
|
<div class="control-group">
|
|
<label class="control-label">Ignore Deleted Episodes</label>
|
|
|
|
<div class="controls">
|
|
<label class="checkbox toggle well">
|
|
<input type="checkbox" name="autoUnmonitorPreviouslyDownloadedEpisodes"/>
|
|
<p>
|
|
<span>Yes</span>
|
|
<span>No</span>
|
|
</p>
|
|
|
|
<div class="btn btn-primary slide-button"/>
|
|
</label>
|
|
|
|
<span class="help-inline-checkbox">
|
|
<i class="icon-nd-form-info" title="Episodes deleted from disk are automatically unmonitored in NzbDrone"/>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
<label class="control-label">Set File Date to Airdate</label>
|
|
<div class="controls">
|
|
<label class="checkbox toggle well">
|
|
<input type="checkbox" name="fileDateAiredDate" />
|
|
<p>
|
|
<span>Yes</span>
|
|
<span>No</span>
|
|
</p>
|
|
<div class="btn btn-primary slide-button" />
|
|
</label>
|
|
<span class="help-inline-checkbox">
|
|
<i class="icon-nd-form-info" title="Adjust added media file dates to the original episode aired date" />
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
<label class="control-label">Download Propers</label>
|
|
|
|
<div class="controls">
|
|
<label class="checkbox toggle well">
|
|
<input type="checkbox" name="autoDownloadPropers"/>
|
|
<p>
|
|
<span>Yes</span>
|
|
<span>No</span>
|
|
</p>
|
|
|
|
<div class="btn btn-primary slide-button"/>
|
|
</label>
|
|
|
|
<span class="help-inline-checkbox">
|
|
<i class="icon-nd-form-info" title="Should NzbDrone automatically upgrade to propers when available?"/>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
<label class="control-label">Recycling Bin</label>
|
|
|
|
<div class="controls">
|
|
<input type="text" name="recycleBin" class="x-path"/>
|
|
<span class="help-inline">
|
|
<i class="icon-nd-form-info" title="Episode files will go here when deleted instead of being permanently deleted"/>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</fieldset>
|