Plugin Directory

Changeset 2016074


Ignore:
Timestamp:
01/21/2019 07:40:28 AM (7 years ago)
Author:
labs64
Message:

Preparing for 1.1.16 release

Location:
credit-tracker/trunk
Files:
2 added
6 edited

Legend:

Unmodified
Added
Removed
  • credit-tracker/trunk/README.md

    r2002491 r2016074  
    3232## Features
    3333
    34 * Retrieve Media information from the different stock agencies (Flickr, Fotolia, iStockphoto etc.)
     34* Retrieve Media information from the different stock agencies (Flickr, Fotolia, iStockphoto, Adobe Stock etc.)
    3535* Append credits to the Media Library elements
    3636* Configurable copyright format string
  • credit-tracker/trunk/credit-tracker.php

    r2014064 r2016074  
    77 * Author:      Labs64
    88 * Author URI:  https://www.labs64.com
    9  * Version:     1.1.15
     9 * Version:     1.1.16
    1010 * Text Domain: credit-tracker
    1111 * Domain Path: /languages
     
    3131 * Plugin version, used for cache-busting of style and script file references.
    3232 */
    33 define('CREDITTRACKER_VERSION', '1.1.15');
     33define('CREDITTRACKER_VERSION', '1.1.16');
    3434
    3535/**
     
    6161require_once(plugin_dir_path(__FILE__) . '/php/parser/unsplash.php');
    6262require_once(plugin_dir_path(__FILE__) . '/php/parser/depositphotos.php');
     63require_once(plugin_dir_path(__FILE__) . '/php/parser/adobestock.php');
    6364
    6465// Register hooks that are fired when the plugin is activated, deactivated, and uninstalled, respectively.
  • credit-tracker/trunk/docker-compose.yml

    r1750568 r2016074  
    2626    volumes:
    2727      - .:/var/www/html/wp-content/plugins/credit-tracker
     28      - ./uploads.ini:/usr/local/etc/php/conf.d/uploads.ini
  • credit-tracker/trunk/options.php

    r2002491 r2016074  
    708708            'copyright' => 'credittracker_get_depositphotos_copyright',
    709709            'retriever' => 'credittracker_get_depositphotos_metadata'
     710        ),
     711        'Adobe_Stock' => array(
     712            'caption' => 'Adobe Stock',
     713            'copyright' => 'credittracker_get_adobestock_copyright',
     714            'retriever' => 'credittracker_get_adobestock_metadata'
    710715        )
    711716    );
     
    921926}
    922927
     928/**
     929 * Adobe Stock: copyright
     930 */
     931function credittracker_get_adobestock_copyright()
     932{
     933    return CTAdobeStock::COPYRIGHT;
     934}
     935
     936/**
     937 * Adobe Stock: metadata
     938 */
     939function credittracker_get_adobestock_metadata($number)
     940{
     941    $parser = new CTAdobeStock();
     942    return $parser->execute($number);
     943}
     944
     945
    923946?>
  • credit-tracker/trunk/php/parser/istockphoto.php

    r2014064 r2016074  
    1010{
    1111
    12     const COPYRIGHT = '©iStock.com/%author%';
     12    const COPYRIGHT = '© iStock.com/%author%';
    1313
    1414    const BASE_URL = 'https://www.istockphoto.com/foto/';
  • credit-tracker/trunk/readme.txt

    r2014064 r2016074  
    44Requires at least: 4.0
    55Tested up to: 5.0.3
    6 Stable tag: 1.1.15
     6Stable tag: 1.1.16
    77License: GPL-2.0+
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    3131= Features =
    3232
    33 * Retrieve Media information from the different stock agencies (Flickr, Fotolia, iStockphoto etc.)
     33* Retrieve Media information from the different stock agencies (Flickr, Fotolia, iStockphoto, Adobe Stock etc.)
    3434* Append credits to the Media Library elements
    3535* Configurable copyright format string
     
    149149== Changelog ==
    150150
     151= 1.1.16 =
     152* Enable Adobe Stock parser
     153* Change iStockphoto copyright
     154
    151155= 1.1.15 =
    152156* Change iStockphoto copyright
Note: See TracChangeset for help on using the changeset viewer.