Skip to content

Commit

Permalink
nightly-202405111132
Browse files Browse the repository at this point in the history
  • Loading branch information
garfield69 committed May 10, 2024
1 parent d297912 commit 9951c7b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
11 changes: 9 additions & 2 deletions templates/sidepanel/episode-details.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,22 @@ <h5 style="text-align: center;">{{::sidepanel.episode.firstaired | date: 'medium
<td colspan="2" class="two-face-torrent" ng-if="getSetting('torrenting.enabled') && (sidepanel.episode.hasAired() || sidepanel.episode.isLeaked())" style="position:relative">
<table style="width:100%;margin: 5px 0px 5px 0px">
<tr>
<td style="width:100%;padding-left:15px">
<td ng-if="sidepanel.serie.TVDB_ID" style="width:100%;padding-left:15px">
<torrent-dialog class="download" episode='sidepanel.episode' serie="sidepanel.serie">
<strong style="padding-left:21px" translate-once>SIDEPANEL/EPISODE-DETAILS/find-torrent/btn</strong>
</torrent-dialog>
</td>
<td style="padding-right:6px">
<td ng-if="!sidepanel.serie.TVDB_ID" style="width:100%;padding-left:15px">
<a class="download btn btn-danger" href='https://github.com/SchizoDuckie/DuckieTV/wiki/FAQ#why-is-the-episode-find-a-torrent-button-not-working' target='_blank'><i class="glyphicon glyphicon-ban-circle"></i><strong style="display:flex">&nbsp;<del>&nbsp;TMDB_ID&nbsp;</del></strong></a>
</td>
<td ng-if="sidepanel.serie.TVDB_ID" style="padding-right:6px">
<a class="auto-download" ng-click="sidepanel.autoDownload(episode)" uib-tooltip="{{'COMMON/auto-download/lbl'|translate}}">
<i class="glyphicon glyphicon-cloud-download"></i><strong style="display:flex">&nbsp;</strong>
</a>
<td ng-if="!sidepanel.serie.TVDB_ID" style="padding-right:6px">
<a class="auto-download btn btn-danger" href='https://github.com/SchizoDuckie/DuckieTV/wiki/FAQ#why-is-the-episode-find-a-torrent-button-not-working' target='_blank'>
<i class="glyphicon glyphicon-ban-circle"></i><strong style="display:flex">&nbsp;</strong>
</a>
</td>
<td style="padding-right:15px">
<a class="torrent-settings" style="text-decoration:none" ng-click="sidepanel.torrentSettings(serie)" uib-tooltip="{{'COMMON/settings/lbl'|translate}}{{sidepanel.serie.name}}">
Expand Down
14 changes: 11 additions & 3 deletions templates/sidepanel/episodes.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ <h2>{{::season.getPageHeader(season.season)}}</h2>
<div class="season-control-right">
<a ng-click="season.gotoLastSeason()" ng-show="season.seasons.length > 2" ng-class="{disabled: season.seasonIndex === 0}" uib-tooltip="{{'SIDEPANEL/EPISODES/last-season/tooltip'|translate}}" tooltip-placement="left"><i class="glyphicon glyphicon-step-forward"></i></a>
<a ng-click="season.gotoNextSeason()" ng-class="{disabled: season.seasonIndex === 0}" uib-tooltip="{{'SIDEPANEL/EPISODES/next-season/tooltip'|translate}}" tooltip-placement="left"><i class="glyphicon glyphicon-chevron-right"></i></a>
</div>
</div>
</div>
<p class="overview" style="text-align:justify">{{::season.season.overview}}</p>
<strong><span translate-once>COMMON/episodes/lbl</span>
Expand Down Expand Up @@ -62,16 +62,24 @@ <h2 style='border-bottom:1px solid white;padding:5px;margin-top:10px' translate-
<td colspan="2">
<table style="width:100%;margin: 5px 0px 5px 0px" ng-show="getSetting('torrenting.enabled')">
<tr>
<td style="width:100%;padding-left:20px">
<td ng-if="sidepanel.serie.TVDB_ID" style="width:100%;padding-left:20px">
<a class="download" ng-click="season.autoDownloadAll()">
<i class="glyphicon glyphicon-cloud-download"></i><strong translate-once>SIDEPANEL/EPISODES/auto-download-all/lbl</strong>
</a>
</td>
<td style="padding-right:20px">
<td ng-if="!sidepanel.serie.TVDB_ID" style="width:100%;padding-left:20px">
<a class="download btn btn-danger" href='https://github.com/SchizoDuckie/DuckieTV/wiki/FAQ#why-is-the-episode-find-a-torrent-button-not-working' target='_blank'><i class="glyphicon glyphicon-ban-circle"></i><strong style="display:flex">&nbsp;<del>&nbsp;TMDB_ID&nbsp;</del></strong></a>
</td>
<td ng-if="sidepanel.serie.TVDB_ID" style="padding-right:20px">
<torrent-dialog class="auto-download" q='season.getSeasonSearchString(sidepanel.serie,season.season)'>
<strong style="display:flex">&nbsp;</strong>
</torrent-dialog>
</td>
<td ng-if="!sidepanel.serie.TVDB_ID" style="padding-right:20px">
<a class="auto-download btn btn-danger" href='https://github.com/SchizoDuckie/DuckieTV/wiki/FAQ#why-is-the-episode-find-a-torrent-button-not-working' target='_blank'>
<i class="glyphicon glyphicon-ban-circle"></i><strong style="display:flex">&nbsp;</strong>
</a>
</td>
</tr>
</table>
</td>
Expand Down

0 comments on commit 9951c7b

Please sign in to comment.