Plugin Directory

Changeset 836830


Ignore:
Timestamp:
01/11/2014 08:45:06 PM (12 years ago)
Author:
toppa
Message:

version 3.4.9

Location:
shashin/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • shashin/trunk/ShashinWp.php

    r836275 r836830  
    22
    33class ShashinWp {
    4     private $version = '3.4.8';
     4    private $version = '3.4.9';
    55
    66    public function __construct() {
  • shashin/trunk/admin/ShashinUpgradeWp.php

    r686480 r836830  
    130130        $this->dbFacade->executeQuery("alter table {$this->photoTable} change link_url linkUrl text");
    131131        $this->dbFacade->executeQuery("alter table {$this->photoTable} change content_url contentUrl text");
    132         $this->dbFacade->executeQuery("alter table {$this->photoTable} change taken_timestamp takenTimestamp int unsigned");
     132        $this->dbFacade->executeQuery("alter table {$this->photoTable} change taken_timestamp takenTimestamp bigint");
    133133        $this->dbFacade->executeQuery("alter table {$this->photoTable} change uploaded_timestamp uploadedTimestamp int unsigned");
    134134        $this->dbFacade->executeQuery("alter table {$this->photoTable} change include_in_random includeInRandom char(1)");
  • shashin/trunk/lib/ShashinPhoto.php

    r687969 r836830  
    9595            'takenTimestamp' => array(
    9696                'db' => array(
    97                     'type' => 'int unsigned',
    98                     'not_null' => true),
     97                    'type' => 'bigint'),
    9998                'picasa' => array('exif$tags', 'exif$time', '$t'),
    10099                'twitpic' => array('timestamp'),
  • shashin/trunk/public/display/prettyphoto/jquery.prettyPhoto.js

    r790495 r836830  
    9393            inline_markup: '<div class="pp_inline">{content}</div>',
    9494            custom_markup: '',
    95             social_tools: '<div class="pp_twitter"><script type="text/javascript" src="https://plugins.trac.wordpress.org//platform.twitter.com/widgets.js"></script><a href="https://twitter.com/intent/tweet?url={location_href}&amp;text={text}" class="twitter-share-button" data-count="none">Tweet</a></div><div class="pp_facebook"><a href="http://www.facebook.com/sharer.php?s=100&amp;p[images][0]={path}&amp;p[url]={location_href}&amp;p[title]={text}" target="_blank" onclick="shashinPopup(this.href, 550, 450); return false;">Share on Facebook</a></div><div class="pp_pinterest"><a href="http://pinterest.com/pin/create/button/?url={location_href}&amp;media={path}&amp;description={text}" target="_blank" onclick="shashinPopup(this.href, 550, 450); return false;">Pin it</a></div><div class="pp_link"><a href="#" onclick="shashinLinkPrompt(&#39;{location_href}&#39;); return false;">Share link</a></div>' /* html or false to disable */
     95            social_tools: '<div class="pp_twitter"><script type="text/javascript" src="https://plugins.trac.wordpress.org//platform.twitter.com/widgets.js"></script><a href="https://twitter.com/intent/tweet?url={location_href}&amp;text={text}" class="twitter-share-button" data-count="none">Tweet</a></div><div class="pp_facebook"><a href="http://www.facebook.com/sharer.php?s=100&amp;p[images][0]={path}&amp;p[url]={location_href}&amp;p[title]={text}" target="_blank" onclick="Shashin.popup(this.href, 550, 450); return false;">Share on Facebook</a></div><div class="pp_pinterest"><a href="http://pinterest.com/pin/create/button/?url={location_href}&amp;media={path}&amp;description={text}" target="_blank" onclick="Shashin.popup(this.href, 550, 450); return false;">Pin it</a></div><div class="pp_link"><a href="#" onclick="Shashin.linkPrompt(&#39;{location_href}&#39;); return false;">Share link</a></div>' /* html or false to disable */
    9696        }, pp_settings);
    9797
  • shashin/trunk/public/display/shashin.js

    r836275 r836830  
    441441
    442442    return {
    443         shashinPopup: popup,
    444         shashinLinkPrompt: linkPrompt
     443        popup: popup,
     444        linkPrompt: linkPrompt
    445445    }
    446446})(jQuery);
  • shashin/trunk/readme.txt

    r836275 r836830  
    55Requires at least: 3.0
    66Tested up to: 3.8
    7 Stable tag: 3.4.8
     7Stable tag: 3.4.9
    88License: GPLv2 or later
    99
     
    9494
    9595== Changelog ==
     96
     97= 3.4.9 =
     98
     99* Bug fix: the popup for copying and pasting a photo's URL wasn't work (bug introduced in 3.4.7)
     100* Bug fix: allow a photo's TakenTimestamp to be null, and allow negative values (for times before 1970, or times not defined)
    96101
    97102= 3.4.8 = Bug fix: call debounce function for resizing only when the window is resized (bug introduced in 3.4.7)
  • shashin/trunk/start.php

    r836275 r836830  
    55Description: A plugin for integrating photos and videos from Picasa, YouTube, and Twitpic in WordPress.
    66Author: Michael Toppa
    7 Version: 3.4.8
     7Version: 3.4.9
    88Author URI: http://www.toppa.com
    99License: GPLv2 or later
Note: See TracChangeset for help on using the changeset viewer.