Changeset 1384581
- Timestamp:
- 04/01/2016 08:57:17 PM (10 years ago)
- Location:
- galleria/trunk
- Files:
-
- 5 edited
-
amw-galleria/AMWGalleria.php (modified) (2 diffs)
-
galleria.php (modified) (1 diff)
-
galleria/themes/amw-classic-light/galleria.amw-classic-light.css (modified) (2 diffs)
-
galleria/themes/amw-classic/galleria.amw-classic.css (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
galleria/trunk/amw-galleria/AMWGalleria.php
r819122 r1384581 8 8 protected $url; 9 9 protected $theme; 10 protected $version = '1.0. 1';10 protected $version = '1.0.3'; 11 11 protected $galleriaVersion = '1.2.9'; 12 12 protected $optionsName = 'amw_galleria_theme'; … … 127 127 // fetch the images 128 128 if (!empty($include)) { 129 // include only the given image IDs 129 // include only the given image IDs 130 130 $include = preg_replace('/[^0-9,]+/', '', $include); 131 131 $_attachments = get_posts( array('include' => $include, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => $order, 'orderby' => $orderby) ); -
galleria/trunk/galleria.php
r1345509 r1384581 4 4 Plugin URI: http://amwhalen.com 5 5 Description: Displays a beautiful Galleria slideshow in place of the built-in WordPress image grid. Overrides the default functionality of the [gallery] shortcode. 6 Version: 1.0. 26 Version: 1.0.3 7 7 Author: Andy Whalen 8 8 Author URI: http://amwhalen.com/ -
galleria/trunk/galleria/themes/amw-classic-light/galleria.amw-classic-light.css
r732269 r1384581 105 105 } 106 106 .galleria-info-close { 107 width: 9px;108 height: 9px;107 width: 15px; 108 height: 15px; 109 109 position: absolute; 110 110 top: 10px; … … 245 245 .galleria-amw-fullscreen { 246 246 z-index: 2; 247 width: 13px;248 height: 13px;247 width: 23px; 248 height: 23px; 249 249 padding: 5px; 250 250 position: absolute; -
galleria/trunk/galleria/themes/amw-classic/galleria.amw-classic.css
r732269 r1384581 100 100 } 101 101 .galleria-info-close { 102 width: 9px;103 height: 9px;102 width: 15px; 103 height: 15px; 104 104 position: absolute; 105 105 top: 10px; … … 238 238 .galleria-amw-fullscreen { 239 239 z-index: 2; 240 width: 13px;241 height: 13px;240 width: 23px; 241 height: 23px; 242 242 padding: 5px; 243 243 position: absolute; -
galleria/trunk/readme.txt
r1345509 r1384581 3 3 Tags: galleria, gallery, slideshow, photos, images, swipe, mobile 4 4 Requires at least: 3.0 5 Tested up to: 4. 4.25 Tested up to: 4.5 6 6 Stable tag: trunk 7 7 License: The MIT License 8 8 License URI: http://opensource.org/licenses/MIT 9 9 10 Displays a beautiful image gallery in pages or posts. Just insert the [gallery] shortcode into your page or post, and any attached images will appear.10 Displays a beautiful image gallery with a fullscreen option in pages or posts. Just insert the [gallery] shortcode into your page or post, and any attached images will appear. 11 11 12 12 == Description == 13 13 14 Displays a beautiful image gallery in pages or posts.14 Displays a beautiful image gallery with a fullscreen option in pages or posts. 15 15 Just insert the `[gallery]` shortcode into your page or post, and any attached images will appear in the gallery. 16 16 It uses the awesome Galleria JavaScript image gallery framework, and it's easy to customize the display if you have JavaScript and CSS skills. 17 17 It's mobile- and touch-ready so you can easily swipe through your photos on supported devices. 18 Two visual options to choose from: light and dark. 18 19 19 20 This plugin relies on the built-in gallery functionality of WordPress. … … 43 44 == Changelog == 44 45 46 = 1.0.3 = 47 * CSS fixes and WordPress 4.5 compatibility. 48 45 49 = 1.0.2 = 46 50 * Compatible with WordPress 4.4.2.
Note: See TracChangeset
for help on using the changeset viewer.