1.0.0 - 2010-10-19 - Skyler Moore
	Initial release
1.0.1 - 2010-10-19 - Skyler Moore
	Added default group width and height values.
1.0.2 - 2010-10-19 - Skyler Moore
	Fixed spelling error in shortcode generator.
1.0.3 - 2010-10-20 - Skyler Moore
	Fixed public bug, removed init_public hook.
1.0.4 - 2010-10-21 - Skyler Moore
	Fixed IE 8 widget dropdown bug.
1.0.5 - 2010-10-22 - Skyler Moore
	Added new media library fixes.
1.0.6 - 2010-10-26 - Skyler Moore
	Removed extra images.
	Updated to latest version of media library.
1.0.7 - 2010-11-09 - Skyler Moore
	Changed js function name prettyPhoto to pbvideosc.
	Changed file name jquery.prettyPhoto.js to jquery.pbvideosc.js.
	Updated jquery.pbvideosc.js:
		Removed extra code for unused features.
		Minified.
	Minified jquery.tablednd_0_5.js.
	Added a zip with playbutton images for videos.
1.0.8 - 2011-01-07 - Skyler Moore
	Fixed random single video feature.
		Updated videoshowcase.php:
			Replaced "$preorder = (array_rand((array)$gpath['order'], $max));"
			with "$preorder = (array)(array_rand((array)$gpath['order'], $max));".
	Fixed image resizing filter.
		Updated videoshowcase.php:
			Removed "add_filter( 'image_downsize', array(&$this,'it_filter_image_downsize') , 10, 3 );".
			Removed "it_filter_image_downsize();" function lines 107-142.
			Added new custom image resize code lines 301-359.
1.0.9 - 2011-01-07 - Skyler Moore
	Fixed image resizing filter.
1.0.10 - 2011-01-07 - Skyler Moore
	Cleanout.
	Fixed code to work with previous image resizing changes.
1.1.0 - 2011-01-11 - Skyler Moore
	Added in group option to hide related videos after videos finish playing.
		Updated videoshowcase.php, class/admin.php, class/view_settings.php, and jquery.pbvideosc.js.
	Added in group option to show text title with each thumbnail image.
		Updated videoshowcase.php, class/admin.php, class/view_settings.php, css/vsc.css.
	Added ability to embed stand alone flv, mp4, and mov videos.
		Updated videoshowcase.php, class/admin.php, class/view_settings.php, and jquery.pbvideosc.js.
1.1.1 - 2011-01-12 - Dustin Bolton
	Form polishing.
1.1.2 - 2011-01-12 - Skyler Moore
	Updating forms:
		view_settings.php:
			Changed input ids to match label titles.
			Fixed for format added missing h2 tag.
	Removed swiftpopup.js call in classes/admin.php line 175.
1.1.3 - 2011-01-25 - Skyler Moore
	Updated the medialibrary folder.
1.1.4 - 2011-01-27 - Skyler Moore
	Updated js/jquery.pbvideosc.js and css/vsc.css files to stop interference from WP-pretty-photo.
1.1.5 - 2011-01-27 - Skyler Moore
	Updated js/jquery.pbvideosc.js and css/vsc.css files to fix thickbox title.
1.1.6 - 2011-03-03 - Skyler Moore
	Fixed warning when order set to ordered and only 1 video in the group.
		Updated videoshowcase.php:
			line 232 Changed
			$neworder = array_values($gpath['order']);
			to
			$neworder = array_values((array)$gpath['order']);
1.1.7 - 2011-03-22 - Skyler Moore
	Making compatible with private Vimeo videos. Now uses default image.
		Updated classes/admin.php:
			lines 418-437
			// check if was able to pull image from Vimeo api
			if ( $VEMimage == '') {
				// run search for existing default image
				global $post;
				$args = array( 'post_type' => 'attachment', 'numberposts' => 1, 'post_status' => null, 'post_parent' => null, 'name' => 'pb_vsc_imgdefault.png');
				$defaultimgcheck = get_posts( $args );
				
				// if default image exist get image id
				if(!empty($defaultimgcheck)) {
					foreach ($defaultimgcheck as $defaultvimg) {
						//define default vimeo image id
						$image_id = $defaultvimg->ID;
					}
				} else { // if no existing default image create one
					$VEMimage = $this->_pluginURL . '/images/pb_vsc_imgdefault.png';
					$image_id = $this->_parent->_medialibrary->file_to_library( $VEMimage, 'pb_vsc_imgdefault.png', 0, false );
				}
			} else {
				$image_id = $this->_parent->_medialibrary->file_to_library( $VEMimage, $name . '.jpg', 0, false );
			}
	Updating ithemes image downsize function.
		Updated videoshowcase.php lines 382-445.
1.1.8 - 2011-04-22 - Skyler Moore
	Adding instant display of selected images on video edit page.
		classes/admin.php:
			lines 17-18 Added
 				// Handle ajax attachment for instantly showing image on upload
				add_action( 'wp_ajax_handle_attachment', array( &$this, 'handle_ajax_attachment' ) );
			line 27 Added the function handle_ajax_attachment().
		classes/view_settings.php:
			line 70 Changed: <img src="' . $imagedata['0'] . '" alt="' . $video['vtitle'] . '" />
				To: <img id="current_image" src="' . $imagedata['0'] . '" alt="' . $video['vtitle'] . '" />
			lines 86-90 Added:
				jQuery.post( ajaxurl, { action : 'handle_attachment', 'image' : $response }, function(results){
					if ( results ){
						jQuery( '#current_image' ).attr( 'src', results );
					}
				} );
1.1.9 - 2011-04-25 - Skyler Moore
	Removed scrollbars for opensource player in IE9.
		js/jquery.pbvideosc.js:
			line 86 added scrolling="no" setting to opensource player markup.
	Changed table thumbnail preview images to call correct image.
		classes/view_settings.php:
			line 179 Changed $imagedata = wp_get_attachment_image_src( $video['vimage'], 'thumbnail' );
			To $imagedata = wp_get_attachment_image_src( $video['vimage'], 'default_thumb' );
1.1.10 - 2011-05-06 - Skyler Moore
	Fixed thickbox titles for text links above and below thunmbnail images.
		js/jquery.pbvideosc.js:
			line 619 Replaced:
				pbv_titles = (isSet) ? jQuery.map(matchedObjects, function(n, i){ if($(n).attr('rel').indexOf(theRel) != -1) return ($(n).find('img').attr('alt')) ? $(n).find('img').attr('alt') : ""; }) : $.makeArray($(caller).find('img').attr('alt'));
			with
				pbv_titles = (isSet) ? jQuery.map(matchedObjects, function(n, i){ if($(n).attr('rel').indexOf(theRel) != -1) return ($(n).attr('title')) ? $(n).attr('title') : ""; }) : $.makeArray($(caller).attr('title'));
1.1.11 - 2011-06-13 - Skyler Moore
	Updated to latest updater replaced lib/updater.
1.1.12 - 2011-07-01 - Skyler Moore
	Updated to the latest updater replaced lib/updater to fix changelog.
1.1.13 - 2011-07-26 - Josh Benham 
	Added support for user roles
	updated save system to latest
1.1.14 - 2011-07-26 - Josh Benham
	Added to user role access to defaults 
1.1.15 - 2011-08-09 - Josh Benham
	Updated updater lib to the newer version
1.1.16 - 2011-09-22 - Ronald Huereca
	Fixing updater issue
1.1.17 - 2011-09-22 - Ronald Huereca
	Fixing updater issue
1.1.20 - 2011-09-29 - Dustin Bolton
	Updated Vimeo code to use new iframe display method to add IOS (iPad, iPhone, etc) support.
1.1.21 - 2011-09-29 - Ronald Huereca
	Updated to fix YouTube issues
1.1.25 - 2011-10-24 - Daniel Harzheim
	fixed thickbox issue
1.1.26 - 2011-10-26 - Daniel Harzheim
	thickboxes should be 3.3 ready now
1.1.27 - 2011-12-7 - Josh Benham
	Added support for new 3.3 media uploader
1.1.28 - 2011-12-12 - Daniel Harzheim
	Added new displaybuddy admin icon
1.1.29 - 2011-12-16 - Josh Benham 
	Updated updater 
1.1.31 - 2012-02-10 - Daniel Harzheim
	Updating getting started page for compatibility with new framework
