Plugin Directory

Changeset 728511


Ignore:
Timestamp:
06/19/2013 08:07:15 PM (13 years ago)
Author:
yathosho
Message:

0.8.15

Location:
meta-ographr
Files:
16 added
2 edited

Legend:

Unmodified
Added
Removed
  • meta-ographr/trunk/meta-ographr_index.php

    r718017 r728511  
    44Plugin URI: http://ographr.whyeye.org
    55Description: This plugin scans posts for embedded video and music players and adds their thumbnails URL as an OpenGraph meta-tag. While at it, the plugin also adds OpenGraph tags for the title, description (excerpt) and permalink. Facebook and other social networks can use these to style shared or "liked" articles.
    6 Version: 0.8.14
     6Version: 0.8.15
    77Author: Jan T. Sott
    88Author URI: http://whyeye.org
     
    2929
    3030// OGRAPHR OPTIONS
    31     define("OGRAPHR_VERSION", "0.8.14");
     31    define("OGRAPHR_VERSION", "0.8.15");
    3232    // enables developer settings on Wordpress interface, can be overwritten from plug-in settings once activated
    3333    define("OGRAPHR_DEVMODE", FALSE);
     
    13591359                                    'name' => 'Bandcamp album',
    13601360                                    'patterns' => array(
    1361                                         '/bandcamp.com\/EmbeddedPlayer\/v=2\/album=([0-9]+)\//i',
     1361                                        '/bandcamp.com\/EmbeddedPlayer\/(?:v=2\/)?album=([0-9]+)\//i',
    13621362                                    ),
    13631363                                    'url' => 'http://api.bandcamp.com/api/album/2/info?album_id=%MATCH%&key=' . $options['bandcamp_api'],
     
    13711371                                    'name' => 'Bandcamp track',
    13721372                                    'patterns' => array(
    1373                                         '/bandcamp.com\/EmbeddedPlayer\/v=2\/track=([0-9]+)\//i',
     1373                                        '/bandcamp.com\/EmbeddedPlayer\/(?:v=2\/)?track=([0-9]+)\//i',
    13741374                                    ),
    13751375                                    'url' => 'http://api.bandcamp.com/api/album/2/info?album_id=%MATCH%&key=' . $options['bandcamp_api'],
  • meta-ographr/trunk/readme.txt

    r718017 r728511  
    55Requires at least: 3.0
    66Tested up to: 3.5.1
    7 Stable tag: 0.8.14
     7Stable tag: 0.8.15
    88License: GPLv2
    99
     
    104104== Changelog ==
    105105
     106= 0.8.15 =
     107* added support for new Bandcamp players
     108
    106109= 0.8.14 =
    107110* added support for relative URLs in HTML5 video players and image tags
Note: See TracChangeset for help on using the changeset viewer.