Plugin Directory

Changeset 1832095


Ignore:
Timestamp:
03/02/2018 08:35:35 AM (8 years ago)
Author:
treethereum
Message:

1.0.1 commit, finalized address

Location:
treethereum/tags
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • treethereum/tags/readme.txt

    r1825589 r1832095  
    44Requires at least: 3.7
    55Tested up to: 4.9.2
    6 Stable tag: 1.0.0
     6Stable tag: 1.0.1
    77Website: https://www.treethereum.com
    88License: GPLv2 or later
     
    3535
    3636* 1.0.0 The initial release.
     37* 1.0.1 Finalized contract address.
  • treethereum/tags/treethereumplugin.admin.php

    r1825589 r1832095  
    177177            <td><fieldset>
    178178                <label>
    179                     <input disabled class="text" name="TREETHEREUM_crowdsaleAddress" type="text" maxlength="45" placeholder="0xe652459d2802bae508b81698f0906b0bdcd4347f" value="<?php echo ! empty( $options['crowdsaleAddress'] ) ? esc_attr( $options['crowdsaleAddress'] ) : ''; ?>">
     179                    <input disabled class="text" name="TREETHEREUM_crowdsaleAddress" type="text" maxlength="45" placeholder="0x3f96C0e80B82458C1a96A3b7d7d2297F55df4965" value="<?php echo ! empty( $options['crowdsaleAddress'] ) ? esc_attr( $options['crowdsaleAddress'] ) : ''; ?>">
    180180                    <p>The treethereum contract address.</p>
    181181                </label>
  • treethereum/tags/treethereumplugin.php

    r1825589 r1832095  
    7979        'PvS4F8rY0hxE3td43bPj';
    8080
    81     $crowdsaleAddress = ! empty( $options['crowdsaleAddress'] ) ? /*esc_attr*/( $options['crowdsaleAddress'] ) : '0xe652459d2802bae508b81698f0906b0bdcd4347f';
     81    $crowdsaleAddress = ! empty( $options['crowdsaleAddress'] ) ? /*esc_attr*/( $options['crowdsaleAddress'] ) : '0x3f96C0e80B82458C1a96A3b7d7d2297F55df4965';
    8282
    8383    $txData = ! empty( $options['txData'] ) ? /*esc_attr*/( $options['txData'] ) : '';
     
    150150    $options = $TREETHEREUM_options;
    151151
    152     wp_enqueue_style( 'treethereumplugin', $TREETHEREUM_plugin_url_path . '/treethereumplugin.css', false, '1.0.0' );
     152    wp_enqueue_style( 'treethereumplugin', $TREETHEREUM_plugin_url_path . '/treethereumplugin.css', false, '1.0.1' );
    153153    wp_enqueue_style( 'font-awesome', $TREETHEREUM_plugin_url_path . '/font-awesome.css', false, '4.7.0' );
    154154}
     
    160160
    161161    if ( wp_script_is( 'jquery', 'registered' ) ) {
    162         wp_enqueue_script( 'treethereumplugin', $TREETHEREUM_plugin_url_path . '/treethereumplugin.js', array( 'jquery' ), '1.0.0' );
     162        wp_enqueue_script( 'treethereumplugin', $TREETHEREUM_plugin_url_path . '/treethereumplugin.js', array( 'jquery' ), '1.0.1' );
    163163    }
    164164    wp_enqueue_script( 'web3', $TREETHEREUM_plugin_url_path . '/web3.min.js', array( 'jquery' ), '0.20.2' );
Note: See TracChangeset for help on using the changeset viewer.