Browse Source

Merge branch 'hotfix/0.25.6'

tags/release_0.25.6^0 release_0.25.6
JackDandy 4 years ago
parent
commit
3d900bae03
  1. 9
      CHANGES.md
  2. 2
      gui/slick/interfaces/default/inc_bottom.tmpl
  3. 12
      gui/slick/js/displayShow.js
  4. BIN
      lib/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz

9
CHANGES.md

@ -1,4 +1,11 @@
### 0.25.5 (2021-09-24 14:55:00 UTC)
### 0.25.6 (2021-09-26 17:45:00 UTC)
* Fix view-show on new browsers
* Fix remove box in footer on certain setups
* Update zoneinfo fallback to 2021b
### 0.25.5 (2021-09-24 14:55:00 UTC)
* Change upgrade Snap unrar 5.6.8 to 6.0.2
* Fix workaround snap certificate failure to access rarlab server

2
gui/slick/interfaces/default/inc_bottom.tmpl

@ -82,7 +82,7 @@ if min_output:
#if min_output
<br>free space&nbsp;&nbsp;$avail
#else
<div class="table-responsive">
<div class="table-responsive" style="border:0">
<style>
.stat-table{margin:0 auto}
.stat-table > tbody > tr > td{padding:0 5px}

12
gui/slick/js/displayShow.js

@ -89,6 +89,18 @@ $(document).ready(function() {
});
function initFancybox(){
try {
setupFancyBox();
} catch {
var fancy = $.SickGear.Root + '/js/fancybox/jquery.fancybox.min';
$.getScript(fancy + '.js', function() {
$('head').append('<link rel="stylesheet" href="' + fancy + '.css">');
setupFancyBox();
});
}
}
function setupFancyBox(){
if (!!$('a[rel="glide"]').length){
$().fancybox(jQuery.extend({
selector: 'li:not(.glide__slide--clone) a[rel="glide"]',

BIN
lib/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz

Binary file not shown.
Loading…
Cancel
Save