Skip to content

Commit a8f3c4b

Browse files
authored
Merge pull request #267 from ukdtom/dev-2.4.1
Dev 2.4.1
2 parents a91a2f1 + 7871e48 commit a8f3c4b

File tree

5 files changed

+28
-11
lines changed

5 files changed

+28
-11
lines changed

Contents/Code/git.py

+11-6
Original file line numberDiff line numberDiff line change
@@ -202,12 +202,17 @@ def removeEmptyFolders(path, removeRoot=True):
202202

203203
''' Returns commit time and Id for a git branch '''
204204
def getAtom_UpdateTime_Id(self, url, branch):
205-
# Build AtomUrl
206-
atomUrl = url + '/commits/' + branch + '.atom'
207-
# Get Atom
208-
atom = HTML.ElementFromURL(atomUrl)
209-
mostRecent = atom.xpath('//entry')[0].xpath('./updated')[0].text[:-6]
210-
commitId = atom.xpath('//entry')[0].xpath('./id')[0].text.split('/')[-1][:10]
205+
try:
206+
# Build AtomUrl
207+
atomUrl = url + '/commits/' + branch + '.atom'
208+
# Get Atom
209+
atom = HTML.ElementFromURL(atomUrl)
210+
mostRecent = atom.xpath('//entry')[0].xpath('./updated')[0].text[:-6]
211+
commitId = atom.xpath('//entry')[0].xpath('./id')[0].text.split('/')[-1][:10]
212+
except Exception, e:
213+
commitId = '0'
214+
mostRecent = 'Not found'
215+
pass
211216
return {'commitId' : commitId, 'mostRecent' : mostRecent}
212217

213218
''' This function will return a list of bundles, where there is an update avail '''

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4
1+
2.4.1

http/changelog.txt

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
V2.4.1:
2+
Fix:
3+
#264 UAS: v2.4 of WebTools UnsupportedAppStore Error
4+
#265 SUB: No paging by letter, for TV-Shows
5+
6+
####
7+
18
V2.4:
29
Fix:
310
#166 WT: Themes - v2.2 release - Default theme error

http/modules/subtitlemgmt/jscript/functions_shows.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ subtitlemgmt.fetch_section_type_show = function(section_key, pageToShow) {
4949
var start = (Number(subtitlemgmt.selected_section.currentpage) * Number(subtitlemgmt.options.items_per_page));
5050
webtools.loading('Library Size: ' + subtitlemgmt.selected_section.totalsize + '<br>Currently fetching: ' + start + '->' + (start + subtitlemgmt.options.items_per_page));
5151
$.ajax({
52-
url: '/webtools2?module=pms&function=getSection&key=' + subtitlemgmt.selected_section.key + '&start=' + start + '&size=' + subtitlemgmt.options.items_per_page,
52+
url: '/webtools2?module=pms&function=getSection&key=' + subtitlemgmt.selected_section.key + '&start=0&size=9999',
5353
cache: false,
5454
dataType: 'JSON',
5555
success: function(data) {
@@ -199,7 +199,7 @@ subtitlemgmt.fetch_season_episodes = function(season_key, pageToShow) {
199199
});
200200
}
201201
], function() {
202-
subtitlemgmt.display_episodes();
202+
subtitlemgmt.display_episodes(true);
203203
});
204204
get_episodes.start(season_key);
205205
}
@@ -234,7 +234,7 @@ subtitlemgmt.display_season = function() {
234234
if (end > subtitlemgmt.selected_section.contents.length) {
235235
end = subtitlemgmt.selected_section.contents.length
236236
}
237-
for (var i = (subtitlemgmt.selected_section.currentpage * subtitlemgmt.options.items_per_page); i < end; i++) {
237+
for (var i = 0; i < subtitlemgmt.selected_section.contents.length; i++) {
238238
newEntry.push('<tr><td><a class="customlink" onclick="javascript:subtitlemgmt.fetch_season_episodes(' + subtitlemgmt.selected_section.contents[i].key + ',0)">' + subtitlemgmt.selected_section.contents[i].title + '</a></td><td>Episodes in season: ' + subtitlemgmt.selected_section.contents[i].size + '</td></tr>');
239239

240240
}

http/modules/subtitlemgmt/jscript/functions_video.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ subtitlemgmt.fetch_section_type_movies = function(section_key, pageToShow) {
131131
get_section_video.start(section_key);
132132
}
133133

134-
subtitlemgmt.display_episodes = function () {
134+
subtitlemgmt.display_episodes = function (forceAll) {
135135
window.scrollTo(0, 0);
136136
/*
137137
Go through all the options and modify the output accordingly.
@@ -166,6 +166,11 @@ subtitlemgmt.display_episodes = function () {
166166

167167
$('#ContentBody').html('');
168168

169+
170+
if (forceAll) {
171+
start = 0
172+
end = subtitlemgmt.selected_section.contents.length;
173+
}
169174
for (var i = start; i < end; i++) {
170175
if (subtitlemgmt.options.options_hide_withoutsubs && subtitlemgmt.selected_section.contents[i].subtitles.length === 0) {
171176
continue;

0 commit comments

Comments
 (0)