Changeset 1294950
- Timestamp:
- 11/26/2015 11:14:00 AM (10 years ago)
- Location:
- fullscreen-galleria
- Files:
-
- 4 deleted
- 3 edited
- 14 copied
-
tags/1.4.12 (copied) (copied from fullscreen-galleria/trunk)
-
tags/1.4.12/OpenLayers.js (copied) (copied from fullscreen-galleria/trunk/OpenLayers.js)
-
tags/1.4.12/fs-map-b.png (copied) (copied from fullscreen-galleria/trunk/fs-map-b.png)
-
tags/1.4.12/fs-map.png (copied) (copied from fullscreen-galleria/trunk/fs-map.png)
-
tags/1.4.12/galleria-1.2.9.min.js (deleted)
-
tags/1.4.12/galleria-1.4.2.min.js (copied) (copied from fullscreen-galleria/trunk/galleria-1.4.2.min.js)
-
tags/1.4.12/galleria-fs-b.css (copied) (copied from fullscreen-galleria/trunk/galleria-fs-b.css)
-
tags/1.4.12/galleria-fs-icons.svg (copied) (copied from fullscreen-galleria/trunk/galleria-fs-icons.svg)
-
tags/1.4.12/galleria-fs-theme.js (copied) (copied from fullscreen-galleria/trunk/galleria-fs-theme.js)
-
tags/1.4.12/galleria-fs-w.css (copied) (copied from fullscreen-galleria/trunk/galleria-fs-w.css)
-
tags/1.4.12/galleria-fs.css (copied) (copied from fullscreen-galleria/trunk/galleria-fs.css) (2 diffs)
-
tags/1.4.12/galleria-fs.js (copied) (copied from fullscreen-galleria/trunk/galleria-fs.js)
-
tags/1.4.12/galleria-fs.php (copied) (copied from fullscreen-galleria/trunk/galleria-fs.php) (4 diffs)
-
tags/1.4.12/make-icons.sh (copied) (copied from fullscreen-galleria/trunk/make-icons.sh)
-
tags/1.4.12/readme.txt (copied) (copied from fullscreen-galleria/trunk/readme.txt) (2 diffs)
-
tags/1.4.12/screenshot-1.jpg (deleted)
-
tags/1.4.12/screenshot-2.jpg (deleted)
-
tags/1.4.12/screenshot-3.jpg (deleted)
-
trunk/galleria-fs.css (modified) (2 diffs)
-
trunk/galleria-fs.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fullscreen-galleria/tags/1.4.12/galleria-fs.css
r919149 r1294950 6 6 ******************************************************************************/ 7 7 8 @import url( http://fonts.googleapis.com/css?family=Open+Sans:300,400,400italic,600,600italic,700,700italic);8 @import url(//fonts.googleapis.com/css?family=Open+Sans:300,400,400italic,600,600italic,700,700italic); 9 9 10 10 .olControlAttribution { … … 148 148 bottom: 20px; 149 149 display: table-row; 150 min-width: 550px; 150 151 } 151 152 .galleria-info-text { -
fullscreen-galleria/tags/1.4.12/galleria-fs.php
r1237853 r1294950 5 5 Plugin URI: http://torturedmind.org/ 6 6 Description: Fullscreen gallery for Wordpress 7 Version: 1.4.1 17 Version: 1.4.12 8 8 Author: Petri Damstén 9 9 Author URI: http://torturedmind.org/ … … 12 12 ******************************************************************************/ 13 13 14 $fsg_ver = '1.4.1 1';14 $fsg_ver = '1.4.12'; 15 15 $fsg_db_key = 'fsg_plugin_settings'; 16 16 … … 24 24 if (file_exists(dirname(__FILE__).'/mygear.php')) { 25 25 include 'mygear.php'; 26 } 27 if (file_exists(dirname(__FILE__).'/description.php')) { 28 include 'description.php'; 26 29 } 27 30 … … 817 820 $caption = ''; 818 821 } 819 if ($this->options['show_description'] && !empty($val['data']->post_content)) { 820 $layer_has_info = true; 821 $description = $this->js_string($val['data']->post_content); 822 $description = "<p class=\"galleria-info-description\">".$description."</p>"; 823 } else { 824 $description = ''; 822 $description = ''; 823 if ($this->options['show_description']) { 824 if (!empty($val['data']->post_content)) { 825 $description .= $this->js_string($val['data']->post_content); 826 } 827 if (function_exists('fsg_description')) { 828 $description .= $this->js_string(fsg_description($val['data']->post_title)); 829 } 830 if (!empty($description)) { 831 $layer_has_info = true; 832 $description = "<p class=\"galleria-info-description\">".$description."</p>"; 833 } 825 834 } 826 835 if ($this->options['show_camera_info'] && !empty($meta['image_meta']['info'])) { -
fullscreen-galleria/tags/1.4.12/readme.txt
r1237853 r1294950 6 6 Tags: galleria, gallery, photography, images 7 7 Requires at least: 4.0 8 Tested up to: 4. 38 Tested up to: 4.4 9 9 Stable tag: trunk 10 10 License: MIT … … 87 87 88 88 == Changelog == 89 = 1.4.12 = 90 * Tested with WP 4.4 91 * Protocol-less url for css import 92 * Support for descriptions read from separate file 93 89 94 = 1.4.11 = 90 95 * Tested with WP 4.3 -
fullscreen-galleria/trunk/galleria-fs.css
r919149 r1294950 6 6 ******************************************************************************/ 7 7 8 @import url( http://fonts.googleapis.com/css?family=Open+Sans:300,400,400italic,600,600italic,700,700italic);8 @import url(//fonts.googleapis.com/css?family=Open+Sans:300,400,400italic,600,600italic,700,700italic); 9 9 10 10 .olControlAttribution { … … 148 148 bottom: 20px; 149 149 display: table-row; 150 min-width: 550px; 150 151 } 151 152 .galleria-info-text { -
fullscreen-galleria/trunk/galleria-fs.php
r1237853 r1294950 5 5 Plugin URI: http://torturedmind.org/ 6 6 Description: Fullscreen gallery for Wordpress 7 Version: 1.4.1 17 Version: 1.4.12 8 8 Author: Petri Damstén 9 9 Author URI: http://torturedmind.org/ … … 12 12 ******************************************************************************/ 13 13 14 $fsg_ver = '1.4.1 1';14 $fsg_ver = '1.4.12'; 15 15 $fsg_db_key = 'fsg_plugin_settings'; 16 16 … … 24 24 if (file_exists(dirname(__FILE__).'/mygear.php')) { 25 25 include 'mygear.php'; 26 } 27 if (file_exists(dirname(__FILE__).'/description.php')) { 28 include 'description.php'; 26 29 } 27 30 … … 817 820 $caption = ''; 818 821 } 819 if ($this->options['show_description'] && !empty($val['data']->post_content)) { 820 $layer_has_info = true; 821 $description = $this->js_string($val['data']->post_content); 822 $description = "<p class=\"galleria-info-description\">".$description."</p>"; 823 } else { 824 $description = ''; 822 $description = ''; 823 if ($this->options['show_description']) { 824 if (!empty($val['data']->post_content)) { 825 $description .= $this->js_string($val['data']->post_content); 826 } 827 if (function_exists('fsg_description')) { 828 $description .= $this->js_string(fsg_description($val['data']->post_title)); 829 } 830 if (!empty($description)) { 831 $layer_has_info = true; 832 $description = "<p class=\"galleria-info-description\">".$description."</p>"; 833 } 825 834 } 826 835 if ($this->options['show_camera_info'] && !empty($meta['image_meta']['info'])) { -
fullscreen-galleria/trunk/readme.txt
r1237853 r1294950 6 6 Tags: galleria, gallery, photography, images 7 7 Requires at least: 4.0 8 Tested up to: 4. 38 Tested up to: 4.4 9 9 Stable tag: trunk 10 10 License: MIT … … 87 87 88 88 == Changelog == 89 = 1.4.12 = 90 * Tested with WP 4.4 91 * Protocol-less url for css import 92 * Support for descriptions read from separate file 93 89 94 = 1.4.11 = 90 95 * Tested with WP 4.3
Note: See TracChangeset
for help on using the changeset viewer.