Compare commits

..

2 commits

Author SHA1 Message Date
j
1b1442e664 might not be loaded 2024-09-16 17:23:21 +01:00
j
18cbf0ec9c print pandora versions during update 2024-09-16 09:06:10 +01:00
2 changed files with 21 additions and 17 deletions

View file

@ -137,24 +137,26 @@ pandora.ui.helpDialog = function() {
that.select = function(id) {
var img, $img;
$text.html(text[id || 'help']).scrollTop(0);
img = $text.find('img');
if (img) {
$img = $(img);
$img.replaceWith(
$image = Ox.ImageElement(
Ox.extend(getImageSize(), {src: $img.attr('src')})
)
.css({borderRadius: '8px'})
);
if ($text) {
$text.html(text[id || 'help']).scrollTop(0);
img = $text.find('img');
if (img) {
$img = $(img);
$img.replaceWith(
$image = Ox.ImageElement(
Ox.extend(getImageSize(), {src: $img.attr('src')})
)
.css({borderRadius: '8px'})
);
}
$text.find('td:first-child')
.css({
height: '16px',
paddingRight: '8px',
textAlign: 'right',
whiteSpace: 'nowrap'
});
}
$text.find('td:first-child')
.css({
height: '16px',
paddingRight: '8px',
textAlign: 'right',
whiteSpace: 'nowrap'
});
return that;
}

View file

@ -322,6 +322,7 @@ if __name__ == "__main__":
current_branch = get_branch(path)
revno = get_version(path)
if repo == 'pandora':
print("Pandora Version pre update: ", revno)
pandora_old_revno = revno
current += revno
if current_branch != branch:
@ -345,6 +346,7 @@ if __name__ == "__main__":
new += '+'
os.chdir(join(base, 'pandora'))
if pandora_old_revno != pandora_new_revno:
print("Pandora Version post update: ", pandora_new_revno)
os.chdir(base)
run('./update.py', 'postupdate', pandora_old_revno, pandora_new_revno)
os.chdir(join(base, 'pandora'))