diff --git a/CHANGELOG.md b/CHANGELOG.md index 6aad2099f3..99894aa1bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ ----- +## 0.2.8 (2018-07-28) + +#### Fixes +- Fixed tabs on home page when using the split home layout ([#4764](https://github.com/pymedusa/Medusa/pull/4764)) +- Fixed black screen after update ([#4774](https://github.com/pymedusa/Medusa/pull/4774)) +- Fixed error when trying to rename episodes ([#4774](https://github.com/pymedusa/Medusa/pull/4774)) + +----- + ## 0.2.7 (2018-07-27) #### New Features diff --git a/medusa/common.py b/medusa/common.py index 38e9c351a3..159962c961 100644 --- a/medusa/common.py +++ b/medusa/common.py @@ -48,7 +48,7 @@ # To enable, set SPOOF_USER_AGENT = True SPOOF_USER_AGENT = False INSTANCE_ID = str(uuid.uuid1()) -VERSION = '0.2.7' +VERSION = '0.2.8' USER_AGENT = 'Medusa/{version} ({system}; {release}; {instance})'.format( version=VERSION, system=platform.system(), release=platform.release(), instance=INSTANCE_ID) diff --git a/themes-default/slim/static/js/core.js b/themes-default/slim/static/js/core.js index 14e169728c..62d8181b08 100644 --- a/themes-default/slim/static/js/core.js +++ b/themes-default/slim/static/js/core.js @@ -57,6 +57,8 @@ const UTIL = { UTIL.exec('common'); // Load common UTIL.exec(controller); // Load MEDUSA[controller] UTIL.exec(controller, action); // Load MEDUSA[controller][action] + + window.dispatchEvent(new Event('medusa-loaded')); } }; diff --git a/themes-default/slim/views/home.mako b/themes-default/slim/views/home.mako index b6388bd3f0..bc2a9144d0 100644 --- a/themes-default/slim/views/home.mako +++ b/themes-default/slim/views/home.mako @@ -11,35 +11,38 @@ <%block name="scripts"> <%block name="metas"> diff --git a/themes-default/slim/views/layouts/main.mako b/themes-default/slim/views/layouts/main.mako index ac26d44952..17f8470caf 100644 --- a/themes-default/slim/views/layouts/main.mako +++ b/themes-default/slim/views/layouts/main.mako @@ -115,18 +115,18 @@ ## Add Vue component x-templates here ## @NOTE: These will be usable on all pages - - - - - - - - - - - - + + + + + + + + + + + + <%block name="scripts" /> - + <%block name="metas"> diff --git a/themes/dark/templates/layouts/main.mako b/themes/dark/templates/layouts/main.mako index ac26d44952..17f8470caf 100644 --- a/themes/dark/templates/layouts/main.mako +++ b/themes/dark/templates/layouts/main.mako @@ -115,18 +115,18 @@ ## Add Vue component x-templates here ## @NOTE: These will be usable on all pages - - - - - - - - - - - - + + + + + + + + + + + + <%block name="scripts" /> - + <%block name="metas"> diff --git a/themes/light/templates/layouts/main.mako b/themes/light/templates/layouts/main.mako index ac26d44952..17f8470caf 100644 --- a/themes/light/templates/layouts/main.mako +++ b/themes/light/templates/layouts/main.mako @@ -115,18 +115,18 @@ ## Add Vue component x-templates here ## @NOTE: These will be usable on all pages - - - - - - - - - - - - + + + + + + + + + + + + <%block name="scripts" /> - +