Plugin Directory

Changeset 1347004


Ignore:
Timestamp:
02/09/2016 08:49:37 PM (10 years ago)
Author:
kendsnyder
Message:

Add option for Georgia Italic font

Location:
right-intel/trunk
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • right-intel/trunk/css/dynamic.css.php

    r1343752 r1347004  
    55// color_bubble - hex or rgba  of bubble background color
    66// image_display - either "none" or "block"
    7 // use_oswald - either "1" or "0"
     7// use_oswald - a string number representing which font to use
    88// bubble_type - either "css" or "image"
    99// cachebust - the date of the last option change
     
    3030    $findReplace['font_face'] = 'arvoitalic,"Times New Roman",Times,serif';
    3131}
     32elseif (@$_GET['use_oswald'] === '3') {
     33    $findReplace['font_face'] = 'Georgia,"Times New Roman",Times,serif !important; font-style: italic';
     34}
    3235else {
    3336    $findReplace['font_face'] = 'OswaldRegular,Helvetica,Arial,sans-serif';
     
    3942    'dynamic-image-position.css',
    4043);
    41 if (@$_GET['use_oswald'] === '2') {
    42     array_unshift($include, 'dynamic-arvo.css');
    43 }
    4444if (@$_GET['use_oswald'] === '1') {
    4545    array_unshift($include, 'dynamic-oswald.css');
     46}
     47elseif (@$_GET['use_oswald'] === '2') {
     48    array_unshift($include, 'dynamic-arvo.css');
    4649}
    4750$css = '';
  • right-intel/trunk/index.php

    r1343752 r1347004  
    44Plugin Name: Sharpr
    55Plugin URI https://wordpress.org/plugins/right-intel/
    6 Description: The Sharpr Wordpress Plugin allows you to push posts from the Sharpr application to your WordPress blog
    7 Version: 4.4.0
     6Description: The Sharpr Wordpress Plugin allows you to push posts from the Sharpr application to your WordPress blog. (Sharpr is formerly Right Intel)
     7Version: 4.4.2
    88Author: kendsnyder
    99Author URI: http://sharpr.com/home
  • right-intel/trunk/pages/views/list_accounts.tpl.php

    r1343752 r1347004  
    3434                            <option value="1"<?php echo ($use_oswald==='1' ? ' selected' : '')?>>Oswald</option>
    3535                            <option value="2"<?php echo ($use_oswald==='2' ? ' selected' : '')?>>Arvo Italic</option>
     36                            <option value="3"<?php echo ($use_oswald==='3' ? ' selected' : '')?>>Georgia Italic</option>
    3637                            <option value="0"<?php echo ($use_oswald==='0' ? ' selected' : '')?>>Paragraph default</option>
    3738                        </select>                       
  • right-intel/trunk/readme.txt

    r1343752 r1347004  
    33Tags: sharpr, thought leadership, content curation, communication platform, agency, insight, Sharpr, rightintel
    44Requires at least: 3.2
    5 Tested up to: 4.1
    6 Stable tag: 4.4.0
     5Tested up to: 4.4
     6Stable tag: 4.4.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
    99
    10 The Sharpr Wordpress Plugin allows you to push posts from Sharpr to your WordPress blog
     10The Sharpr Wordpress Plugin allows you to push posts from Sharpr to your WordPress blog. (Sharpr is formerly Right Intel)
    1111
    1212== Description ==
     
    7373== Changelog ==
    7474
    75 = Version 4.4.0 - January 31, 2015 =
     75= Version 4.4.2 - February 9, 2016 =
     76* Add option for Georgia Italic font
     77= Version 4.4.0 - January 31, 2016 =
    7678* Right Intel is now Sharpr
    7779* Certify as working with WordPress 4.4
  • right-intel/trunk/right-intel.php

    r1343752 r1347004  
    44# define some RI_* constants
    55#
    6 define('RI_VERSION', '20160201');
    7 define('RI_SEMVER', '4.4.1');
     6define('RI_VERSION', '20160209');
     7define('RI_SEMVER', '4.4.2');
    88define('RI_BASE_DIR', __DIR__);
    99define('RI_BASE_PAGE', __DIR__ . '/index.php');
Note: See TracChangeset for help on using the changeset viewer.