Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix manual search page release name bug - Fixes #7516 #7517

Merged
merged 2 commits into from
Dec 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
- Fix `torrents.verifyCert` config patch ignored warning ([#7501](https://github.com/pymedusa/Medusa/pull/7501))
- Fix dragging and saving Anime / Series list handles in Home - Poster layout ([#7502](https://github.com/pymedusa/Medusa/pull/7502))
- Fix adding Anime with white/black listed release groups ([#7507](https://github.com/pymedusa/Medusa/pull/7507))
- Fix Schedule page and Forced Search on Schedule page ([#7512](https://github.com/pymedusa/Medusa/pull/#7512))
- Fix Schedule page and Forced Search on Schedule page ([#7512](https://github.com/pymedusa/Medusa/pull/7512))
- Fix manual search page release name bug ([#7517](https://github.com/pymedusa/Medusa/pull/7517))

-----

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ def packages():
'pytest-flake8>=1.0.2',
'pytest-tornado5>=2.0.0',
'PyYAML>=5.1',
'vcrpy>=2.0.1',
'vcrpy<4.0.0 ; python_version < "3.5"',
'vcrpy>=4.0.0 ; python_version >= "3.5"',
'mock>=2.0.0',
],
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion themes-default/slim/views/snatchSelection.mako
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
% for hItem in provider_results['found_items']:
<tr id="${hItem['name'] | h}" class="skipped season-${season} seasonstyle ${hItem['status_highlight']}" role="row">
<td class="release-name-ellipses triggerhighlight">
<span data-qtip-my="top left" data-qtip-at="bottom left" :class="getReleaseNameClasses(`${hItem['name']}`)" title="${hItem['name'] | h}" class="break-word ${hItem['name_highlight']} addQTip">${hItem['name'] | h}</span>
<span v-pre data-qtip-my="top left" data-qtip-at="bottom left" :class="getReleaseNameClasses(`${hItem['name']}`)" title="${hItem['name'] | h}" class="break-word ${hItem['name_highlight']} addQTip">${hItem['name'] | h}</span>
</td>
<td class="col-group break-word triggerhighlight">
<span class="break-word ${hItem['rg_highlight']}">${hItem['release_group']}</span>
Expand Down
2 changes: 1 addition & 1 deletion themes/dark/templates/snatchSelection.mako

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion themes/light/templates/snatchSelection.mako

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.