Browse Source

Profile in movie list

pull/51/merge
Ruud 14 years ago
parent
commit
332d7128b1
  1. 9
      couchpotato/core/plugins/movie/static/movie.js
  2. 10
      couchpotato/core/plugins/quality/static/quality.js
  3. 1
      couchpotato/core/plugins/renamer/main.py

9
couchpotato/core/plugins/movie/static/movie.js

@ -39,13 +39,20 @@ var Movie = new Class({
'text': self.data.library.plot
}),
self.quality = new Element('div.quality', {
'text': self.profile ? self.profile.get('label') : ''
'text': self.profile.get('label')+ ':'
})
),
self.actions = new Element('div.actions')
)
);
self.profile.get('types').each(function(type){
var q = Quality.getQuality(type.quality_id);
new Element('span', {
'text': ' '+q.label
}).inject(self.quality);
})
Object.each(self.options.actions, function(action, key){
self.actions.adopt(
self.action[key.toLowerCase()] = new self.options.actions[key](self)

10
couchpotato/core/plugins/quality/static/quality.js

@ -19,6 +19,12 @@ var QualityBase = new Class({
return this.profiles[id]
},
getQuality: function(id){
return this.qualities.filter(function(q){
return q.id == id;
}).pick();
},
addSettings: function(){
var self = this;
@ -106,9 +112,7 @@ var QualityBase = new Class({
new Element('input.min', {'value': quality.size_min}),
new Element('input.max', {'value': quality.size_max})
).inject(group)
})
p(group)
});
}

1
couchpotato/core/plugins/renamer/main.py

@ -131,6 +131,7 @@ class Renamer(Plugin):
final_file_name = final_file_name.replace(' ', separator)
# Main file
group['destination_dir'] = os.path.join(destination, final_folder_name)
rename_files[file] = os.path.join(destination, final_folder_name, final_file_name)
# Check for extra subtitle files

Loading…
Cancel
Save