Changeset 1443555
- Timestamp:
- 06/26/2016 07:15:20 AM (10 years ago)
- Location:
- cactus-masonry-plus
- Files:
-
- 15 added
- 2 edited
-
assets/zips/0.0.4.2.zip (added)
-
tags/0.0.4.2 (added)
-
tags/0.0.4.2/cactusBrick.js (added)
-
tags/0.0.4.2/cactusBrick.min.js (added)
-
tags/0.0.4.2/cactusGallery.js (added)
-
tags/0.0.4.2/cactusGallery.min.js (added)
-
tags/0.0.4.2/cactusMasonry.php (added)
-
tags/0.0.4.2/cactusMasonryGettingStarted.php (added)
-
tags/0.0.4.2/cactusMasonryPlus.js (added)
-
tags/0.0.4.2/cactusMasonryPlus.min.js (added)
-
tags/0.0.4.2/license.txt (added)
-
tags/0.0.4.2/readme.txt (added)
-
tags/0.0.4.2/style.css (added)
-
tags/0.0.4.2/style.scss (added)
-
trunk/cactusMasonry.php (modified) (4 diffs)
-
trunk/cactusMasonryGettingStarted.php (added)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cactus-masonry-plus/trunk/cactusMasonry.php
r1443309 r1443555 2 2 /** 3 3 * @package Cactus Masonry Plus 4 * @version 0.0.4. 14 * @version 0.0.4.2 5 5 */ 6 6 /* … … 8 8 * Plugin URI: cactus.cloud 9 9 * Description: A highly customizable gallery of post thumbnails. 10 * Version: 0.0.4. 110 * Version: 0.0.4.2 11 11 * Author: cactus.cloud 12 12 * Author URI: http://cactus.cloud/masonryplus … … 32 32 33 33 private static $a = null; 34 private static $VERSION = "0.0.4.1"; 35 36 static public function init() { 34 private static $VERSION = "0.0.4.2"; 35 36 static public function init() { 37 include_once('cactusMasonryGettingStarted.php'); 37 38 add_shortcode("cactusMasonry", array(__CLASS__, "cactus_masonry_shortcode_handler")); 38 39 add_shortcode("cactusmasonry", array(__CLASS__, "cactus_masonry_shortcode_handler")); 39 40 add_action("wp_enqueue_scripts", array(__CLASS__, "cactus_masonry_scripts"), 42); 41 add_action("admin_menu", "cactus_masonry_plus_intro"); 40 42 //ADD JQUERY TO HEAD 41 43 $plugin = plugin_basename(__FILE__); … … 56 58 $newlink = "<a href='http://cactus.cloud/masonryplus' target='_blank'>Instructions</a>"; 57 59 array_unshift($links, $newlink); 58 $newlink = "<a href='http:// cactus.cloud/support' target='_blank'>Help & Support</a>";60 $newlink = "<a href='http://support.cactus.cloud' target='_blank'>Help & Support</a>"; 59 61 array_unshift($links, $newlink); 60 62 return $links; -
cactus-masonry-plus/trunk/readme.txt
r1443309 r1443555 5 5 Requires at least: 4.4.2 6 6 Tested up to: 4.5.3 7 Stable tag: 0.0.4. 17 Stable tag: 0.0.4.2 8 8 License: GNU AGPLv3 9 9 License URI: http://cactus.cloud/licenses/agpl-3.0.txt … … 23 23 24 24 = Getting Help = 25 Now, we all run into problems every now and again. You may find a bug in the plugin, have a feature request, or simply get stuck on how to set things up. If you do, check out our [Support Forum]( cactus.cloud/support). Here, you can get all the help you need to build a responsive masonry gallery for your website.25 Now, we all run into problems every now and again. You may find a bug in the plugin, have a feature request, or simply get stuck on how to set things up. If you do, check out our [Support Forum](http://support.cactus.cloud). Here, you can get all the help you need to build a responsive masonry gallery for your website. 26 26 27 27 = Pricing = … … 30 30 31 31 == Changelog == 32 = 0.0.4.2 = 33 * Added 'Getting Started' page to WordPress dashboard 34 32 35 = 0.0.4.1 = 33 36 * Fixed a bug that sometimes causes one brick to flow over another brick … … 35 38 * Fixed a bug that caused the post linking behaviour to fail or work unpredictably 36 39 * Updated the readme 37 * Added some screenshots 40 * Added some screenshots to the WordPress plugin repository 38 41 39 42 = 0.0.4.0 =
Note: See TracChangeset
for help on using the changeset viewer.