Plugin Directory

Changeset 1558645


Ignore:
Timestamp:
12/20/2016 10:33:31 PM (9 years ago)
Author:
CupRacer
Message:

added new tooltip version

Location:
thumbsniper/trunk
Files:
1 added
10 edited

Legend:

Unmodified
Added
Removed
  • thumbsniper/trunk/composer.json

    r1335124 r1558645  
    99      "name": "Thomas Schulte",
    1010      "email": "thomas@cupracer.de",
    11       "homepage": "https://www.mynakedgirlfriend.de",
     11      "homepage": "https://cupracer.de",
    1212      "role": "Project founder"
    1313    }
  • thumbsniper/trunk/composer.lock

    r1336244 r1558645  
    55        "This file is @generated automatically"
    66    ],
    7     "hash": "2de35f29f88d2b9b271e34816a59e073",
     7    "hash": "0fb153dadfad4055c84c3fa08744028c",
    88    "content-hash": "7595c57c40b1604701a02b87a03f7e97",
    99    "packages": [
     
    1414                "type": "git",
    1515                "url": "https://github.com/thumbsniper/tooltip.git",
    16                 "reference": "e81950f123b907b4bcc36267fbca5d391e5d6e82"
     16                "reference": "5f9fb5544ebe8302ab27d86258a6dc51ad2048c9"
    1717            },
    1818            "dist": {
    1919                "type": "zip",
    20                 "url": "https://api.github.com/repos/thumbsniper/tooltip/zipball/e81950f123b907b4bcc36267fbca5d391e5d6e82",
    21                 "reference": "e81950f123b907b4bcc36267fbca5d391e5d6e82",
     20                "url": "https://api.github.com/repos/thumbsniper/tooltip/zipball/5f9fb5544ebe8302ab27d86258a6dc51ad2048c9",
     21                "reference": "5f9fb5544ebe8302ab27d86258a6dc51ad2048c9",
    2222                "shasum": ""
    2323            },
     
    4242            "description": "ThumbSniper Tooltip",
    4343            "homepage": "https://thumbsniper.com",
    44             "time": "2016-01-26 10:58:44"
     44            "time": "2016-12-20 22:24:07"
    4545        }
    4646    ],
  • thumbsniper/trunk/readme.txt

    r1436179 r1558645  
    44Tags: screenshot, image, plugin, preview, tooltip, thumbnail, hyperlink, link, url, fade, 3D, reflection
    55Requires at least: 3.2
    6 Tested up to: 4.5
    7 Stable tag: 2.9.6
     6Tested up to: 4.7
     7Stable tag: 2.9.7
    88
    99This plugin dynamically shows preview screenshots of hyperlinks as tooltips on your WordPress site.
     
    5353
    5454== Changelog ==
     55
     56= 2.9.7 =
     57* Use minified JavaScript for qTip2
    5558
    5659= 2.9.6 =
  • thumbsniper/trunk/thumbsniper.php

    r1436201 r1558645  
    55Description: This plugin dynamically shows preview screenshots of hyperlinks as tooltips on your WordPress site.
    66Author: Thomas Schulte
    7 Version: 2.9.6
     7Version: 2.9.7
    88Author URI: http://www.mynakedgirlfriend.de
    99Text Domain: thumbsniper
  • thumbsniper/trunk/vendor/autoload.php

    r1335475 r1558645  
    33// autoload.php @generated by Composer
    44
    5 require_once __DIR__ . '/composer' . '/autoload_real.php';
     5require_once __DIR__ . '/composer/autoload_real.php';
    66
    77return ComposerAutoloaderInita6d1fe3bd45df4bfa2641c8ac3e7e4cf::getLoader();
  • thumbsniper/trunk/vendor/composer/ClassLoader.php

    r1335475 r1558645  
    5454    private $useIncludePath = false;
    5555    private $classMap = array();
    56 
    5756    private $classMapAuthoritative = false;
     57    private $missingClasses = array();
    5858
    5959    public function getPrefixes()
     
    148148     *
    149149     * @param string       $prefix  The prefix/namespace, with trailing '\\'
    150      * @param array|string $paths   The PSR-0 base directories
     150     * @param array|string $paths   The PSR-4 base directories
    151151     * @param bool         $prepend Whether to prepend the directories
    152152     *
     
    323323            return $this->classMap[$class];
    324324        }
    325         if ($this->classMapAuthoritative) {
     325        if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
    326326            return false;
    327327        }
     
    330330
    331331        // Search for Hack files if we are running on HHVM
    332         if ($file === null && defined('HHVM_VERSION')) {
     332        if (false === $file && defined('HHVM_VERSION')) {
    333333            $file = $this->findFileWithExtension($class, '.hh');
    334334        }
    335335
    336         if ($file === null) {
     336        if (false === $file) {
    337337            // Remember that this class does not exist.
    338             return $this->classMap[$class] = false;
     338            $this->missingClasses[$class] = true;
    339339        }
    340340
     
    400400            return $file;
    401401        }
     402
     403        return false;
    402404    }
    403405}
  • thumbsniper/trunk/vendor/composer/LICENSE

    r1335475 r1558645  
    11
    2 Copyright (c) 2015 Nils Adermann, Jordi Boggiano
     2Copyright (c) 2016 Nils Adermann, Jordi Boggiano
    33
    44Permission is hereby granted, free of charge, to any person obtaining a copy
  • thumbsniper/trunk/vendor/composer/autoload_real.php

    r1335475 r1558645  
    2424        spl_autoload_unregister(array('ComposerAutoloaderInita6d1fe3bd45df4bfa2641c8ac3e7e4cf', 'loadClassLoader'));
    2525
    26         $map = require __DIR__ . '/autoload_namespaces.php';
    27         foreach ($map as $namespace => $path) {
    28             $loader->set($namespace, $path);
    29         }
     26        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION');
     27        if ($useStaticLoader) {
     28            require_once __DIR__ . '/autoload_static.php';
    3029
    31         $map = require __DIR__ . '/autoload_psr4.php';
    32         foreach ($map as $namespace => $path) {
    33             $loader->setPsr4($namespace, $path);
    34         }
     30            call_user_func(\Composer\Autoload\ComposerStaticInita6d1fe3bd45df4bfa2641c8ac3e7e4cf::getInitializer($loader));
     31        } else {
     32            $map = require __DIR__ . '/autoload_namespaces.php';
     33            foreach ($map as $namespace => $path) {
     34                $loader->set($namespace, $path);
     35            }
    3536
    36         $classMap = require __DIR__ . '/autoload_classmap.php';
    37         if ($classMap) {
    38             $loader->addClassMap($classMap);
     37            $map = require __DIR__ . '/autoload_psr4.php';
     38            foreach ($map as $namespace => $path) {
     39                $loader->setPsr4($namespace, $path);
     40            }
     41
     42            $classMap = require __DIR__ . '/autoload_classmap.php';
     43            if ($classMap) {
     44                $loader->addClassMap($classMap);
     45            }
    3946        }
    4047
  • thumbsniper/trunk/vendor/composer/installed.json

    r1336244 r1558645  
    77            "type": "git",
    88            "url": "https://github.com/thumbsniper/tooltip.git",
    9             "reference": "e81950f123b907b4bcc36267fbca5d391e5d6e82"
     9            "reference": "5f9fb5544ebe8302ab27d86258a6dc51ad2048c9"
    1010        },
    1111        "dist": {
    1212            "type": "zip",
    13             "url": "https://api.github.com/repos/thumbsniper/tooltip/zipball/e81950f123b907b4bcc36267fbca5d391e5d6e82",
    14             "reference": "e81950f123b907b4bcc36267fbca5d391e5d6e82",
     13            "url": "https://api.github.com/repos/thumbsniper/tooltip/zipball/5f9fb5544ebe8302ab27d86258a6dc51ad2048c9",
     14            "reference": "5f9fb5544ebe8302ab27d86258a6dc51ad2048c9",
    1515            "shasum": ""
    1616        },
    17         "time": "2016-01-26 10:58:44",
     17        "time": "2016-12-20 22:24:07",
    1818        "type": "library",
    1919        "installation-source": "source",
  • thumbsniper/trunk/vendor/thumbsniper/tooltip/lib/thumbsniper/common/TooltipSettings.php

    r1336244 r1558645  
    2828    static private $qtipCssUrl = "https://cdn.jsdelivr.net/qtip2/2.2.1/jquery.qtip.min.css";
    2929    /** @var string */
    30     static private $imagesLoadedUrl = "https://npmcdn.com/imagesloaded@4.1/imagesloaded.pkgd.min.js";
    31     /** @var string */
    32     static private $qtipUrl = "https://cdn.jsdelivr.net/qtip2/2.2.1/jquery.qtip.js";
     30    static private $imagesLoadedUrl = "https://unpkg.com/imagesloaded@4.1/imagesloaded.pkgd.min.js";
     31    /** @var string */
     32    static private $qtipUrl = "https://cdn.jsdelivr.net/qtip2/2.2.1/jquery.qtip.min.js";
    3333
    3434
Note: See TracChangeset for help on using the changeset viewer.