Skip to content

Commit 3e0d977

Browse files
author
Michael Toppa
committed
version 3.2
1 parent 2950e3e commit 3e0d977

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

ShashinWp.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
class ShashinWp {
4-
private $version = '3.1.5';
4+
private $version = '3.2';
55

66
public function __construct() {
77
}

readme.txt

+12-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: http://www.toppa.com/shashin-wordpress-plugin
44
Tags: Picasa, Fancybox, Twitpic, Youtube, image, images, photo, photos, picture, pictures, gallery, widget, widgets, video
55
Requires at least: 3.0
66
Tested up to: 3.3.2
7-
Stable tag: 3.1.5
7+
Stable tag: 3.2
88
License: GPLv2 or later
99

1010
Shashin is a powerful WordPress plugin that lets you easily display photos and videos from Picasa, Twitpic, and Youtube in your WordPress site.
@@ -13,11 +13,10 @@ Shashin is a powerful WordPress plugin that lets you easily display photos and v
1313

1414
**Installation of [Toppa Plugin Libraries for WordPress](http://wordpress.org/extend/plugins/toppa-plugin-libraries-for-wordpress/) is required. Please download and activate it before installing Shashin.**
1515

16-
**What's new in Shashin 3.1.5**
16+
**What's new in Shashin 3.2**
1717

18-
* Improved installation and activation process (manual re-activation is no longer needed)
19-
* Ability to disable Shashin's Fancybox if you already have your own Fancybox installed
20-
* Improvements to album synchronizing, for handling slow connections and servers with misconfigured SSL settings (which is surprisingly common)
18+
* More user friendly UI for adding albums, photos, and videos (uses jQuery tabs menu)
19+
* Accepts Google+ URLs for adding albums
2120

2221
**Overview**
2322

@@ -85,6 +84,13 @@ For troubleshooting help, please [post a comment on my latest Shashin post](http
8584

8685
== Changelog ==
8786

87+
= 3.2 =
88+
* More user friendly UI for adding albums, photos, and videos (uses jQuery tabs menu)
89+
* Accepts Google+ URLs for adding albums
90+
* Bug fix: When "include in random" is set for an album, it now correctly cascades to the photos in the album
91+
* Code refactor: Removed unneeded passing around of autoloader object
92+
* Code refactor: Refactored setup for synchronizing
93+
8894
= 3.1.5 =
8995
* Improve handling of dependencies on Toppa Plugin Libraries, so there are no PHP error messages if you have an old or missing version of the libraries
9096
* Perform settings and other updates without relying on plugin re-activation
@@ -296,4 +302,4 @@ For troubleshooting help, please [post a comment on my latest Shashin post](http
296302
* Bug fix: now use htmlspecialchars on image alt text (which comes from the Picasa image description)
297303
* Bug fix: now reads the Picasa feed with the correct character set (UTF-8)
298304

299-
= 0.6 = Beta version. First public release.
305+
= 0.6 = Beta version. First public release.

start.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Plugin URI: http://www.toppa.com/shashin-wordpress-plugin/
55
Description: A plugin for integrating photos and videos from Picasa, YouTube, and Twitpic in WordPress.
66
Author: Michael Toppa
7-
Version: 3.1.5
7+
Version: 3.2
88
Author URI: http://www.toppa.com
99
License: GPLv2 or later
1010
*/
@@ -57,7 +57,7 @@ function shashinActivationChecks() {
5757
$autoLoaderPath = dirname(__FILE__) . '/../toppa-plugin-libraries-for-wordpress/ToppaAutoLoaderWp.php';
5858
$toppaLibsVersion = get_option('toppaLibsVersion');
5959

60-
if (!file_exists($autoLoaderPath) || !$toppaLibsVersion || version_compare($toppaLibsVersion, '1.3.3', '<')) {
60+
if (!file_exists($autoLoaderPath) || !$toppaLibsVersion || version_compare($toppaLibsVersion, '1.3.4', '<')) {
6161
return __('To activate Shashin you need to have the current version of', 'shashin')
6262
. ' <a href="plugin-install.php?tab=plugin-information&plugin=toppa-plugin-libraries-for-wordpress">Toppa Plugins Libraries for WordPress</a>. '
6363
. __('Click this link to view details, and then click the "Install Now" button to get the current version. Then you can activate Shashin.', 'shashin');

0 commit comments

Comments
 (0)