Changeset 3427660
- Timestamp:
- 12/26/2025 11:25:58 AM (2 months ago)
- Location:
- lightbox-photoswipe/trunk
- Files:
-
- 3 added
- 6 edited
-
README.md (modified) (1 diff)
-
assets/ps5/auto-hide-ui/README.md (added)
-
assets/ps5/download/README.md (added)
-
assets/ps5/fullscreen/LICENSE (modified) (1 diff)
-
assets/ps5/fullscreen/README.md (added)
-
assets/ps5/fullscreen/photoswipe-fullscreen.esm.js (modified) (1 diff)
-
lightbox-photoswipe.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
src/LightboxPhotoSwipe/LightboxPhotoSwipe.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lightbox-photoswipe/trunk/README.md
r3353533 r3427660 19 19 ## Plugins for PhotoSwipe 20 20 21 If you like to use the plugins for fullscreen mode and automatic hiding of the UI in desktop mode, you find these also on Github:21 If you like to use the plugins for fullscreen mode, automatic hiding of the UI in desktop mode or the "download image" button with your own PhotoSwipe based projects, you find these also on Codeberg: 22 22 23 23 [Auto hide UI for PhotoSwipe](https://codeberg.org/askaaron/photoswipe-auto-hide-ui) 24 24 25 25 [Fullscreen for PhotoSwipe](https://codeberg.org/askaaron/photoswipe-fullscreen) 26 27 [Download for PhotoSwipe](https://codeberg.org/askaaron/photoswipe-download) 26 28 27 29 In addition a slightly modified version of the "dynamic caption" plugin by is also included: -
lightbox-photoswipe/trunk/assets/ps5/fullscreen/LICENSE
r2776720 r3427660 1 1 MIT License 2 2 3 Copyright (c) 2022 Arno Welzel3 Copyright (c) 2022-2025 Arno Welzel 4 4 5 5 Permission is hereby granted, free of charge, to any person obtaining a copy -
lightbox-photoswipe/trunk/assets/ps5/fullscreen/photoswipe-fullscreen.esm.js
r3409167 r3427660 1 1 /** 2 * PhotoSwipe fullscreen plugin v1.0. 52 * PhotoSwipe fullscreen plugin v1.0.6 3 3 * 4 4 * Inspired by https://github.com/dimsemenov/PhotoSwipe/issues/1759 -
lightbox-photoswipe/trunk/lightbox-photoswipe.php
r3409167 r3427660 4 4 Plugin URI: https://wordpress.org/plugins/lightbox-photoswipe/ 5 5 Description: Lightbox with PhotoSwipe 6 Version: 5.8. 16 Version: 5.8.2 7 7 Author: Arno Welzel 8 8 Author URI: http://arnowelzel.de -
lightbox-photoswipe/trunk/readme.txt
r3409167 r3427660 5 5 Requires at least: 5.3 6 6 Tested up to: 6.9 7 Stable tag: 5.8. 17 Stable tag: 5.8.2 8 8 Donate link: https://paypal.me/ArnoWelzel 9 9 License: GPLv2 … … 158 158 == Changelog == 159 159 160 = 5.8.2 = 161 162 * Fixed possible output buffer issues when using PhotoSwipe 5. 163 160 164 = 5.8.1 = 161 165 -
lightbox-photoswipe/trunk/src/LightboxPhotoSwipe/LightboxPhotoSwipe.php
r3409167 r3427660 9 9 class LightboxPhotoSwipe 10 10 { 11 const VERSION = '5.8. 1';11 const VERSION = '5.8.2'; 12 12 const SLUG = 'lightbox-photoswipe'; 13 13 const META_VERSION = '22'; … … 259 259 260 260 $version = apply_filters('lbwps_version', $this->optionsManager->getOption('version'), get_the_ID()); 261 if (4 !== (int)$version) { 262 return; 263 } 264 265 ob_start(); 266 include(self::BASEPATH.'templates/frontend.inc.php'); 267 $footer = ob_get_clean(); 268 269 $footer = apply_filters('lbwps_markup', $footer); 270 echo $footer; 261 if (4 === (int)$version) { 262 ob_start(); 263 include(self::BASEPATH.'templates/frontend.inc.php'); 264 $footer = ob_get_clean(); 265 266 $footer = apply_filters('lbwps_markup', $footer); 267 echo $footer; 268 } 271 269 272 270 if ($this->obActive) {
Note: See TracChangeset
for help on using the changeset viewer.