Plugin Directory

Changeset 1865594


Ignore:
Timestamp:
04/27/2018 09:09:23 PM (8 years ago)
Author:
matstars
Message:

updated to 0.0.15

Location:
cryptocurrency/trunk
Files:
214 added
3 edited

Legend:

Unmodified
Added
Removed
  • cryptocurrency/trunk/.gitignore

    r1795053 r1865594  
     1vendor
     2node_modules
     3.build
  • cryptocurrency/trunk/cryptocurrency.php

    r1795475 r1865594  
    55Plugin URI: https://statenweb/cryptocurrency
    66Author: Mat Gargano
    7 Version: 0.0.14
     7Version: 0.0.15
    88Author URI: https://statenweb.com/
    99Text Domain:       cryptocurrency
     
    1414use Cryptocurrency\Settings\Global_Settings;
    1515use Cryptocurrency\Shortcodes\Table;
     16
     17function cry_fs() {
     18    global $cry_fs;
     19
     20    if ( ! isset( $cry_fs ) ) {
     21        // Include Freemius SDK.
     22        require_once dirname(__FILE__) . '/freemius/start.php';
     23
     24        $cry_fs = fs_dynamic_init( array(
     25            'id'                  => '2025',
     26            'slug'                => 'cryptocurrency',
     27            'type'                => 'plugin',
     28            'public_key'          => 'pk_ad331077d943d10dd7ea8fd50b295',
     29            'is_premium'          => false,
     30            'has_addons'          => false,
     31            'has_paid_plans'      => false,
     32            'menu'                => array(
     33                'slug'           => 'crb_carbon_fields_container_cryptocurrency.php',
     34                'parent'         => array(
     35                    'slug' => 'options-general.php',
     36                ),
     37            ),
     38        ) );
     39    }
     40
     41    return $cry_fs;
     42}
     43
     44// Init Freemius.
     45cry_fs();
     46// Signal that SDK was initiated.
     47do_action( 'cry_fs_loaded' );
    1648
    1749require __DIR__ . '/vendor/autoload.php';
  • cryptocurrency/trunk/readme.txt

    r1795475 r1865594  
    44Tags: cryptocurrency, bitcoin, litecoin, ethereum, bitcoin cash, ripple
    55Requires at least: 4.0
    6 Tested up to: 4.9.1
    7 Stable tag: 0.0.14
     6Tested up to: 4.9.5
     7Stable tag: 0.0.15
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6262#### Release Notes
    6363
     64
     65- 0.0.15
     66bugfixes, analytics data
    6467
    6568- 0.0.14
Note: See TracChangeset for help on using the changeset viewer.