Changeset 1027150
- Timestamp:
- 11/17/2014 09:37:41 AM (11 years ago)
- Location:
- masonry-post-gallery
- Files:
-
- 14 added
- 2 edited
-
tags/0.3.6.1b (added)
-
tags/0.3.6.1b/cactus-masonry-options.php (added)
-
tags/0.3.6.1b/close.png (added)
-
tags/0.3.6.1b/imagesloaded.pkgd.min.js (added)
-
tags/0.3.6.1b/lightbox.css (added)
-
tags/0.3.6.1b/lightbox.min.js (added)
-
tags/0.3.6.1b/loading.gif (added)
-
tags/0.3.6.1b/masonry-post-gallery.css (added)
-
tags/0.3.6.1b/masonry-post-gallery.php (added)
-
tags/0.3.6.1b/masonry.pkgd.min.js (added)
-
tags/0.3.6.1b/next.png (added)
-
tags/0.3.6.1b/prev.png (added)
-
tags/0.3.6.1b/readme.txt (added)
-
tags/0.3.6.1b/spin.min.js (added)
-
trunk/masonry-post-gallery.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
masonry-post-gallery/trunk/masonry-post-gallery.php
r1027128 r1027150 2 2 /** 3 3 * @package Cactus Masonry 4 * @version 0.3.6. 0b4 * @version 0.3.6.1b 5 5 */ 6 6 /* … … 298 298 'offset' => $a['search_start'], 299 299 'category_name' => $a['post_category'], 300 ' sort_column' => fix_sort_column($a['post_orderby']),301 ' sort_order' => $a['post_order'],300 'orderby' => fix_sort_column($a['post_orderby']), 301 'order' => $a['post_order'], 302 302 'post_type' => $post_type); 303 303 $lastposts = get_posts($args); -
masonry-post-gallery/trunk/readme.txt
r1027128 r1027150 5 5 Requires at least: 3.9.1 6 6 Tested up to: 4.0.0 7 Stable tag: 0.3.6. 0b7 Stable tag: 0.3.6.1b 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 14 14 = What is Cactus Masonry? = 15 15 16 Cactus Masonry (originally called the Masonry Post Gallery… very original) is a WordPress plugin designed to display a gallery of postthumbnails that can be filtered, sorted, and treated as hyperlinks.16 Cactus Masonry is a WordPress plugin designed to display a gallery of post and/or page thumbnails that can be filtered, sorted, and treated as hyperlinks. 17 17 18 18 In other words, a Cactus Masonry gallery will display a list of all matching posts which link back to their permalinks when clicked! This functionality would be perfect for an art or photo gallery where further information needs to be displayed on each item. Of course, you can choose where each picture links, whether back to the original image (at a size of your choosing), the original post, a Lightbox styled gallery, or nowhere at all. … … 66 66 == Changelog == 67 67 68 = 0.1.0b = 69 * The initial version is released. This is a testing beta, so there will be revisions, and some features may not work as planned. 68 = 0.3.6.1 = 69 * Modified documentation to improve readability 70 * Fixed a bug that affected the post/page sort order since the last update 70 71 71 = 0.1.1b = 72 * Incompletely implemented post_order and post_orderby parameters fixed 73 * Default max_width and max_height parameters changed to "none" 74 * Default horizontal_spacing and vertical_spacing set to 0 75 * Minor correction made to the parameters section of the documentation to reflect these changes 76 * Minor correction made to the parameters section of the documentation to fix incorrect parameter options 77 * Additional information added to the parameters section of the documentation to clarify the behaviour of the vertical and horizontal spacing 72 = 0.3.6.0b = 73 * Added link to plugin home page in short description 74 * Updated function names to reduce the chance of a conflict 75 * Restructured some code to improve flow and testing capabilities 76 * Added the ability to specify a default image. Now posts without a featured image can be shown if a default image is specified. 77 * Added the ability to search for posts, pages, posts and pages, or nothing at all 78 * Added an instructions page under the WordPress Dashboard Settings menu 79 * Improved documentation on website to address new features 78 80 79 = 0.1.5b = 80 * Added upscaling feature. Now images that are shorter or narrower than a specified width or height can be upscaled until they reach the specified size. The image thumbnail quality will be increased until it reaches the largest size available, reaches the largest size specified under the max_upscale_size parameter, or reaches or exceeds the max_height or max_width parameters. 81 * Removed support for percentages in the max_height and max_width fields 82 * Updated the documentation to include new features 83 * Added padding to the top of the loading box 81 = 0.3.5.4b = 82 * Improved plugin short description to reduce confusion 83 * Reorganized code output to fix a W3C compliance issue 84 * Small code layout fixes 84 85 85 = 0.2.0b = 86 * Updated upscaling feature. Now has the option to independently set max_height and max_width for upscaled objects. 87 * Made MPG more functional in the absence of JavaScript. 88 * Added to option to specify a grid layout that will take effect when JavaScript is disabled 89 * Updated the documentation to recognize these changes 86 = 0.3.5.3b = 87 * Fixed an error that could occur when displaying posts with an apostrophe in their title 90 88 91 = 0.3.0b = 92 * Fixed the percentage column/row width/height functionality. Now 33% will give three columns with images fitting their column sizes. 93 * Added the option to specify whether each image will link to its post, itself, a different sized version of itself, or nowhere 94 * Added the capability to display a lightbox style gallery using the show_lightbox parameter 95 * Removed any absolute paths to the plugins directory to make plugin more robust to future WordPress versions 96 * Fixed some more bugs that have arose with certain image size and alignment functionality 97 * Fixed the percentage width and height functionalities 98 * Fixed a problem with boolean shortcode parameters 99 * Fixed an inconsistancy in the wording of the shortcode instructions 100 * Updated the documentation to recognize these changes 89 = 0.3.5.2b = 90 * Masonry Post Gallery is renamed to Cactus Masonry 91 * Improved documentation on Cactus Masonry website 92 * Plugin documentation has been rewritten 93 * The [cactus-masonry] shortcode can now be used (while maintaining reverse compatibility) 94 * Added the search_start parameter which allows the post query to be offset by a given number of posts 95 * Added the page_size parameter which allows the post query to be limited to a given number of matches 101 96 102 = 0.3.1b = 103 * Fixed a bug where the gallery would always appear at the top of the page 104 * Added a number of code improvements including an external CSS file 105 * Changed how the borders work to make them more reliable and even 106 * Changed how the spacing and widths behave to make percentage based column layouts more reliable 107 * Added a flexible border parameter called soft_gutter 108 * Fixed a bug where the fit_width parameter would break the code 109 * Set fit_width to "false" by default as it interacts with columns set to a percentage width causing the page to look wrong while loading 110 * Made stylesheet improvements to fix minor display issues 111 * Small documentation errors have been fixed 112 * Published fit_width parameter to documentation 113 * Updated documentation to suite changes 114 * Changed the plugins version numbering system to better match WordPress standards and easier to update 97 = 0.3.5.1b = 98 * Implemented an option to show or hide the infinite scroll loader 99 * Updated the documentation to use the masonry website and shortcode generator 100 * Added links to the masonry home page to the WordPress plugin page 115 101 116 = 0.3.2b = 117 * Fixed a bug that stopped the category parameter from working 102 = 0.3.5.0b = 103 * Greatly improved gallery efficiency on load and window resize 104 * Fixed a layout sizing error when maxWidth is set 105 106 = 0.3.4.4b = 107 * Fixed error that occurs on multipage galleries 108 109 = 0.3.4.3b = 110 * Fixed script breaking bug caused by typo 111 112 = 0.3.4.2b = 113 * Fixed error on IE8 that stopped images from loading 114 * Fixed incompatibility with IE8 that affected the loading box 115 * Now masonry disables on IE7 and earlier 116 117 = 0.3.4.1b = 118 * A compatibility fix for different versions of PHP 118 119 119 120 = 0.3.3b = … … 132 133 * Set the default horizontal and vertical spacing values to 10 133 134 134 = 0.3. 4.1b =135 * A compatibility fix for different versions of PHP135 = 0.3.2b = 136 * Fixed a bug that stopped the category parameter from working 136 137 137 = 0.3.4.2b = 138 * Fixed error on IE8 that stopped images from loading 139 * Fixed incompatibility with IE8 that affected the loading box 140 * Now masonry disables on IE7 and earlier 138 = 0.3.1b = 139 * Fixed a bug where the gallery would always appear at the top of the page 140 * Added a number of code improvements including an external CSS file 141 * Changed how the borders work to make them more reliable and even 142 * Changed how the spacing and widths behave to make percentage based column layouts more reliable 143 * Added a flexible border parameter called soft_gutter 144 * Fixed a bug where the fit_width parameter would break the code 145 * Set fit_width to "false" by default as it interacts with columns set to a percentage width causing the page to look wrong while loading 146 * Made stylesheet improvements to fix minor display issues 147 * Small documentation errors have been fixed 148 * Published fit_width parameter to documentation 149 * Updated documentation to suite changes 150 * Changed the plugins version numbering system to better match WordPress standards and easier to update 141 151 142 = 0.3.4.3b = 143 * Fixed script breaking bug caused by typo 152 = 0.3.0b = 153 * Fixed the percentage column/row width/height functionality. Now 33% will give three columns with images fitting their column sizes. 154 * Added the option to specify whether each image will link to its post, itself, a different sized version of itself, or nowhere 155 * Added the capability to display a lightbox style gallery using the show_lightbox parameter 156 * Removed any absolute paths to the plugins directory to make plugin more robust to future WordPress versions 157 * Fixed some more bugs that have arose with certain image size and alignment functionality 158 * Fixed the percentage width and height functionalities 159 * Fixed a problem with boolean shortcode parameters 160 * Fixed an inconsistancy in the wording of the shortcode instructions 161 * Updated the documentation to recognize these changes 144 162 145 = 0.3.4.4b = 146 * Fixed error that occurs on multipage galleries 163 = 0.2.0b = 164 * Updated upscaling feature. Now has the option to independently set max_height and max_width for upscaled objects. 165 * Made MPG more functional in the absence of JavaScript. 166 * Added to option to specify a grid layout that will take effect when JavaScript is disabled 167 * Updated the documentation to recognize these changes 147 168 148 = 0.3.5.0b = 149 * Greatly improved gallery efficiency on load and window resize 150 * Fixed a layout sizing error when maxWidth is set 169 = 0.1.5b = 170 * Added upscaling feature. Now images that are shorter or narrower than a specified width or height can be upscaled until they reach the specified size. The image thumbnail quality will be increased until it reaches the largest size available, reaches the largest size specified under the max_upscale_size parameter, or reaches or exceeds the max_height or max_width parameters. 171 * Removed support for percentages in the max_height and max_width fields 172 * Updated the documentation to include new features 173 * Added padding to the top of the loading box 151 174 152 = 0.3.5.1b = 153 * Implemented an option to show or hide the infinite scroll loader 154 * Updated the documentation to use the masonry website and shortcode generator 155 * Added links to the masonry home page to the WordPress plugin page 175 = 0.1.1b = 176 * Incompletely implemented post_order and post_orderby parameters fixed 177 * Default max_width and max_height parameters changed to "none" 178 * Default horizontal_spacing and vertical_spacing set to 0 179 * Minor correction made to the parameters section of the documentation to reflect these changes 180 * Minor correction made to the parameters section of the documentation to fix incorrect parameter options 181 * Additional information added to the parameters section of the documentation to clarify the behaviour of the vertical and horizontal spacing 156 182 157 = 0.3.5.2b = 158 * Masonry Post Gallery is renamed to Cactus Masonry 159 * Improved documentation on Cactus Masonry website 160 * Plugin documentation has been rewritten 161 * The [cactus-masonry] shortcode can now be used (while maintaining reverse compatibility) 162 * Added the search_start parameter which allows the post query to be offset by a given number of posts 163 * Added the page_size parameter which allows the post query to be limited to a given number of matches 164 165 = 0.3.5.3b = 166 * Fixed an error that could occur when displaying posts with an apostrophe in their title 167 168 = 0.3.5.4b = 169 * Improved plugin short description to reduce confusion 170 * Reorganized code output to fix a W3C compliance issue 171 * Small code layout fixes 172 173 = 0.3.6.0b = 174 * Added link to plugin home page in short description 175 * Updated function names to reduce the chance of a conflict 176 * Restructured some code to improve flow and testing capabilities 177 * Added the ability to specify a default image. Now posts without a featured image can be shown if a default image is specified. 178 * Added the ability to search for posts, pages, posts and pages, or nothing at all 179 * Added an instructions page under the WordPress Dashboard Settings menu 180 * Improved documentation on website to address new features 181 183 = 0.1.0b = 184 * The initial version is released. This is a testing beta, so there will be revisions, and some features may not work as planned. 182 185 183 186 == Frequently Asked Questions ==
Note: See TracChangeset
for help on using the changeset viewer.