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:
Leonardo Galli
2017-01-04 22:59:34 +01:00
parent 402a9e1ee0
commit fd718b61ac
14 changed files with 348 additions and 23 deletions

View File

@@ -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({
}));
}
}
});
});