Plugin Directory

PhotoSmash Galleries

Visit the Changelog on Smashly.net to see what is currently in development.

0.4.03 - 11/7/2009

* Fixed gallery setting "maintain ratio" so that it does not force thumbnail sizes when gallery is displayed
* Several code tweaks to enable PhotoSmash Extend functionality - particularly around creating new posts on upload
* Now only supporting WordPress 2.8 and higher.  Does not specifically break compatibility with versions later than 2.6, but going forward, only 2.8+ will be supported.  There is a big security hole in WordPress versions prior to 2.8, so this is my part in encouraging users folks to upgrade.  It's for your own good...I know from experience ;-)

0.4.02 - 09/26/2009

* Added THE Widget!! Display Random, Recent, or normal galleries.  ONLY WORKS WITH WP 2.8+. PhotoSmash will continue to work with versions back to 2.6, but this widget uses the new Widget API available in WP 2.8.
* Added a new default Custom Layout for the Widget.  You can use any layout you want, but I built one that should (HOPEFULLY!!!) work well.  It can be used in regular galleries too.  It's called Std_Widget
* Added Recent images gallery type.  Use shortcode:  [photosmash gallery_type=recent images=10 where_gallery=185 ] , use any # of images you want, defaults to 8 if left blank.  "where_gallery" lets you specify a particular gallery to pull images from...optional.
* Added Random images gallery type. Use shortcode:  [photosmash gallery_type=random images=10 ] The images and where_gallery attributes above can be used here too.
* Added option for setting CSS Class on the 'a href' for images...facilitates using Thickbox to display images instead of Lightbox or Shadowbox.  Make sure you change the Rel if you have both Thickbox and Lightbox/Shadowbox activated at the same time, otherwise Shadowbox overlays the thickbox...not pretty ;-)
* Fixed paging for text/ad inserts using the unreleased PhotoSmash Extend product.
* Fixed paging for Contributor (author) galleries.
* Added ability to send emails upon Approve/Reject of images in moderation.

0.4.01 – 09/04/2009

* Added ability to Import images to PhotoSmash galleries from the WordPress Media Library.  This lets you use the WP Media uploader (multiple simultaneous uploads) in Admin, then import them into galleries.
* Changed the default delete from deleting the Media Library images to be on-demand in Photo Manager.  Deleting a gallery does not delete Media Library images now.  Too much risk.
* Fixed a javascript bug - when uploading images with the new (0.4.00) WP upload functionality, the link to the image was broken until you reloaded the page.

0.4.00 – 09/01/2009

* This gets a version bump! Added option [is default for new installs] to use WordPress upload functionality. Can optionally add uploaded images to the WP Media Library. Set these options in PhotoSmash Settings…top of the Uploading tab. This is in preparation for the upcoming new WordPress 2.9 media features. By adding these images to the Media Library, you should be able to utilize new features that WordPress builds in. The new WP 2.9 feature set hasn’t been officially announced yet, but stay tuned!!! This should also solve upload issues where people have trouble with folder permissions. I could be wrong, but I think this is pretty big :P
* Fixed a couple of annoying ThickBox images that weren’t loading. You have to set the variables in the page footer…FYI.

0.3.07 - 08/27/2009

* Fixed database update message - was displaying in error for MySQL 4 users. MySQL 4 doesn't allow WHERE in the SHOW COLUMNS statement-have to use LIKE. MySQL 5 users were not affected by this.

0.3.06 - 08/27/2009

* Changed pagination to show only 5 pages at a time. Added First, Last, and ellipses.
* Fixed the situation when showing Ratings beneath the Caption-rating wasn't showing when there was no caption
* Fixed the code that verifies if the database tables are up to date. Now using SHOW COLUMNS sql. Wasn't getting anything when table was empty.
* Changed moderation rules so that users with the Contributor role now receive moderation when moderation is turned on. Notes:
      o Useful for setups where users create a new WordPress post by uploading an image through PhotoSmash (this functionality is coming to the PhotoSmash Extend plugin)
      o Roles that get moderated when moderation is turned on in a gallery: Anybody (not logged in), Subscriber, Contributor
      o Roes that don't get moderated even when moderation is on: Authors and Admins
* Vote Up/Vote Down - will work similarly to Star Ratings, except-it's voting up or down
* Added code to bwb-photosmash.php to give a way to collect and insert Javascript code into the footer. This will save a lot of script tags and jQuery(document).ready() functions, and will collect JS nice and neatly in the footer. If you do a global on the $bwbPS object in PHP, you can easily add javascript to the footer using these 2 functions: $bwbPS->addFooterJS($js); or $bwbPS->addFooterReady($js); PhotoSmash takes care of putting in new lines to separate multiple JS calls, as well as takes care of the Script tags and the document.ready function-it's easy ;-)

0.3.05 - 08/19/2009

* Removed code in Database Update that was removing duplicate indices - this was causing users with certain SQL Mode settings to experience errors.
* Note - there may be a problem with star ratings with IE 6.  Further testing will ensue.  If you experience problems with Star Ratings, please report them.  Thanks!

0.3.04 - 08/19/2009

* Fixed a conflict with Contact Form 7 where duplicate creation of esc_attr functions was occuring 
* Added template tags:  
      o show_photosmash_gallery(optional $attr);  - echoes a gallery - the $attr param can be a gallery ID or an array of parameters that you can also use in shortcodes. 
      o get_photosmash_gallery(optional $attr);  -  same as show except returns a gallery as a string that you can use in PHP 

0.3.03 - 08/19/2009

* Added Star Rating system - thanks to GD Star Ratings for use of the star set (used by permission).  2 placement options (beneath caption or overlay image [default]).  Design of star rating system enables extensions.   
* Improved the Admin messaging - database message now contains a link that updates the database when clicked.

0.3.02 - 08/01/2009

* Fixed Pagination when multiple galleries are on the same Post...now it remembers what page each gallery was on and paging links reflect proper paging for all other galleries.
* Added message to JSON return on upload for images that are to be moderated.  Uploading user is now presented with message:  Upload Successful!  Image is awaiting moderation.
* Added a hook to ajax_upload.php - hook:  bwbps_upload_done.  Fires after the Image is saved to the database, and provides an array containing the image's database values to the receiving function.  Useful if you're going to want to do some fun stuff after an image get uploaded.  A use case:  you have a business review site where the initial business record is created using a PhotoSmash upload.  The image in the upload should be the logo. If no image is supplied, that's ok, show a placeholder image. There is another gallery in the post you created for the business where users can upload their images.  When the an image is uploaded to this secondary gallery, you want to use that for the logo.  You can use this hook to update the blank image's file_name with the new image's file name.
      o Call this hook in your code by:   add_action('bwbps_upload_done', 'your_function_name');
      o Your function should accept an array as its first argument, all other arguments (if any) must be optional.
* Added Gallery-level option for allowing uploads with no image file attached - this will let you do some CMS type stuff
* Added Gallery-level option for suppressing 'no image' records in your gallery.  The can be accessed using the [psmash id=IMAGE-ID] shortcode. You can specify a layout to use or a field to display.
* Added Gallery-level default image option where you can specify the name of an image that is in the PhotoSmash images folder structure. This image will be used for 'no image' records if you don't Suppress.
* Fix - set contributor gallery so that it doesn't show any comments, and comments are closed.
* Fix - Link for post name in contributor gallery should link back to itself
* Fix - got rid of Video options in the Gallery Type setting.  YouTube options still remain, and will remain.  I'm not ready for uploading video yet. Worried about security issues.

0.3.01 - 7/25/2009

* Added Contributor Gallery - a special gallery that can be shown in the Author page.  Turn it on in PhotoSmash Setting > Special Galleries.  It can also suppress all other posts in the Author page.  Can also use custom layouts.
* Added Caption types to display link to Author page for Contributor.
* Added ability to set CSS class for pagination DIV in Custom Layouts - so you can style it like you want
* Bug - pagination wasn't showing up in Custom Layouts
* Bug - [user_link] does not show non-Admin user links in custom layouts
* Added ability to get notifications on all uploads (not just moderation)
* Add option for getting notifications on uploads Immediately
* Bug - fixed Radio buttons for gallery type:  Mixed Images + YouTube.  Browse for File and YouTube radio buttons were both being checked

0.3.00

  • This is a huge re-release of PhotoSmash, dozens of changes from custom forms/fields/layouts to sorting
  • You should not lose any of your prior galleries or work if you're upgrading, and they should work the same without any tweaking from you...All the same, BACKUP your PhotoSmash tables just in case. Please!
  • Make sure you visit the PhotoSmash Admin pages after upgrading. If you see a message concerning the database, please follow the instructions for upgrading it.

Download

FYI

Compatibility beta

Your Setup

Log in to vote.

The Consensus (1 reporting)

100%
50,4,2
100,1,1

Average Rating

5 stars
4 stars
3 stars
2 stars
1 star
(21 ratings)