From 1cd8040692a8fc02f0ccc4086a6fbca46a6ce2f7 Mon Sep 17 00:00:00 2001 From: Ruud Date: Sun, 17 Mar 2013 16:39:09 +0100 Subject: [PATCH 1/2] One up --- version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.py b/version.py index e6e42088..3bb39eb5 100644 --- a/version.py +++ b/version.py @@ -1,2 +1,2 @@ -VERSION = '2.0.6' +VERSION = '2.0.7' BRANCH = 'develop' From 73b7bcc6ce3634903c54de9b69a01a19dd8c3722 Mon Sep 17 00:00:00 2001 From: Ruud Date: Mon, 18 Mar 2013 21:56:50 +0100 Subject: [PATCH 2/2] Force dashboard view --- couchpotato/core/plugins/movie/static/list.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/couchpotato/core/plugins/movie/static/list.js b/couchpotato/core/plugins/movie/static/list.js index d8c7fa88..5ac210ed 100644 --- a/couchpotato/core/plugins/movie/static/list.js +++ b/couchpotato/core/plugins/movie/static/list.js @@ -144,7 +144,7 @@ var MovieList = new Class({ var self = this; var chars = '#ABCDEFGHIJKLMNOPQRSTUVWXYZ'; - self.current_view = self.getSavedView(); + self.current_view = self.getSavedView() || 'details'; self.el.addClass(self.current_view+'_list') self.navigation = new Element('div.alph_nav').adopt( @@ -434,7 +434,7 @@ var MovieList = new Class({ getSavedView: function(){ var self = this; - return Cookie.read(self.options.identifier+'_view') || 'details'; + return Cookie.read(self.options.identifier+'_view'); }, search: function(){