mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Updated Parser to parse movie titles. Should also parse things, such as: Director's Cut, Special Edition, etc. This is then displayed in the manual search UI. Importing is not yet updated for the new parser!
This commit is contained in:
@@ -7,6 +7,7 @@ var FileSizeCell = require('../Cells/FileSizeCell');
|
||||
var QualityCell = require('../Cells/QualityCell');
|
||||
var ApprovalStatusCell = require('../Cells/ApprovalStatusCell');
|
||||
var LoadingView = require('../Shared/LoadingView');
|
||||
var EditionCell = require('../Cells/EditionCell');
|
||||
|
||||
module.exports = Marionette.Layout.extend({
|
||||
template : 'Release/ReleaseLayoutTemplate',
|
||||
@@ -17,6 +18,12 @@ module.exports = Marionette.Layout.extend({
|
||||
},
|
||||
|
||||
columns : [
|
||||
{
|
||||
name : 'edition',
|
||||
label : 'Edition',
|
||||
sortable : false,
|
||||
cell : EditionCell
|
||||
},
|
||||
{
|
||||
name : 'indexer',
|
||||
label : 'Indexer',
|
||||
@@ -29,12 +36,12 @@ module.exports = Marionette.Layout.extend({
|
||||
sortable : true,
|
||||
cell : Backgrid.StringCell
|
||||
},
|
||||
{
|
||||
/*{
|
||||
name : 'episodeNumbers',
|
||||
episodes : 'episodeNumbers',
|
||||
label : 'season',
|
||||
cell : EpisodeNumberCell
|
||||
},
|
||||
},*/
|
||||
{
|
||||
name : 'size',
|
||||
label : 'Size',
|
||||
@@ -75,4 +82,4 @@ module.exports = Marionette.Layout.extend({
|
||||
}));
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user