Changeset 836830
- Timestamp:
- 01/11/2014 08:45:06 PM (12 years ago)
- Location:
- shashin/trunk
- Files:
-
- 7 edited
-
ShashinWp.php (modified) (1 diff)
-
admin/ShashinUpgradeWp.php (modified) (1 diff)
-
lib/ShashinPhoto.php (modified) (1 diff)
-
public/display/prettyphoto/jquery.prettyPhoto.js (modified) (1 diff)
-
public/display/shashin.js (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
start.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
shashin/trunk/ShashinWp.php
r836275 r836830 2 2 3 3 class ShashinWp { 4 private $version = '3.4. 8';4 private $version = '3.4.9'; 5 5 6 6 public function __construct() { -
shashin/trunk/admin/ShashinUpgradeWp.php
r686480 r836830 130 130 $this->dbFacade->executeQuery("alter table {$this->photoTable} change link_url linkUrl text"); 131 131 $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"); 133 133 $this->dbFacade->executeQuery("alter table {$this->photoTable} change uploaded_timestamp uploadedTimestamp int unsigned"); 134 134 $this->dbFacade->executeQuery("alter table {$this->photoTable} change include_in_random includeInRandom char(1)"); -
shashin/trunk/lib/ShashinPhoto.php
r687969 r836830 95 95 'takenTimestamp' => array( 96 96 'db' => array( 97 'type' => 'int unsigned', 98 'not_null' => true), 97 'type' => 'bigint'), 99 98 'picasa' => array('exif$tags', 'exif$time', '$t'), 100 99 'twitpic' => array('timestamp'), -
shashin/trunk/public/display/prettyphoto/jquery.prettyPhoto.js
r790495 r836830 93 93 inline_markup: '<div class="pp_inline">{content}</div>', 94 94 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}&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&p[images][0]={path}&p[url]={location_href}&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}&media={path}&description={text}" target="_blank" onclick="shashinPopup(this.href, 550, 450); return false;">Pin it</a></div><div class="pp_link"><a href="#" onclick="shashinLinkPrompt('{location_href}'); 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}&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&p[images][0]={path}&p[url]={location_href}&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}&media={path}&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('{location_href}'); return false;">Share link</a></div>' /* html or false to disable */ 96 96 }, pp_settings); 97 97 -
shashin/trunk/public/display/shashin.js
r836275 r836830 441 441 442 442 return { 443 shashinPopup: popup,444 shashinLinkPrompt: linkPrompt443 popup: popup, 444 linkPrompt: linkPrompt 445 445 } 446 446 })(jQuery); -
shashin/trunk/readme.txt
r836275 r836830 5 5 Requires at least: 3.0 6 6 Tested up to: 3.8 7 Stable tag: 3.4. 87 Stable tag: 3.4.9 8 8 License: GPLv2 or later 9 9 … … 94 94 95 95 == 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) 96 101 97 102 = 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 5 5 Description: A plugin for integrating photos and videos from Picasa, YouTube, and Twitpic in WordPress. 6 6 Author: Michael Toppa 7 Version: 3.4. 87 Version: 3.4.9 8 8 Author URI: http://www.toppa.com 9 9 License: GPLv2 or later
Note: See TracChangeset
for help on using the changeset viewer.