diff options
author | ArthurHoaro <arthur@hoa.ro> | 2018-07-17 13:13:26 +0200 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2018-07-17 13:16:50 +0200 |
commit | 7b4fea0e39be9e74e9aef13e73af9bbd2b1a6397 (patch) | |
tree | a9c5071ed1f6830adcbf10668a2f21e044276842 /tests | |
parent | b302b3c584b84f22f0e6f187b072180ecbacdfab (diff) | |
download | Shaarli-7b4fea0e39be9e74e9aef13e73af9bbd2b1a6397.tar.gz Shaarli-7b4fea0e39be9e74e9aef13e73af9bbd2b1a6397.tar.zst Shaarli-7b4fea0e39be9e74e9aef13e73af9bbd2b1a6397.zip |
Bunch of improvement for thumbnails integration:
- add a default thumb size value (125x90px)
- improve private vertical bar visual, especially with thumbnails
- translations
- add a sync thumbs button in tool and empty picwall page
- fixes WT download mode in JSON config
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Updater/UpdaterTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Updater/UpdaterTest.php b/tests/Updater/UpdaterTest.php index 05f4b8e1..cacee2d2 100644 --- a/tests/Updater/UpdaterTest.php +++ b/tests/Updater/UpdaterTest.php | |||
@@ -700,7 +700,7 @@ $GLOBALS[\'privateLinkByDefault\'] = true;'; | |||
700 | $this->assertEquals(\Shaarli\Thumbnailer::MODE_ALL, $this->conf->get('thumbnails.mode')); | 700 | $this->assertEquals(\Shaarli\Thumbnailer::MODE_ALL, $this->conf->get('thumbnails.mode')); |
701 | $this->assertEquals(125, $this->conf->get('thumbnails.width')); | 701 | $this->assertEquals(125, $this->conf->get('thumbnails.width')); |
702 | $this->assertEquals(90, $this->conf->get('thumbnails.height')); | 702 | $this->assertEquals(90, $this->conf->get('thumbnails.height')); |
703 | $this->assertContains('You have enabled thumbnails', $_SESSION['warnings'][0]); | 703 | $this->assertContains('You have enabled or changed thumbnails', $_SESSION['warnings'][0]); |
704 | } | 704 | } |
705 | 705 | ||
706 | /** | 706 | /** |