Changeset 1832095
- Timestamp:
- 03/02/2018 08:35:35 AM (8 years ago)
- Location:
- treethereum/tags
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
treethereumplugin.admin.php (modified) (1 diff)
-
treethereumplugin.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
treethereum/tags/readme.txt
r1825589 r1832095 4 4 Requires at least: 3.7 5 5 Tested up to: 4.9.2 6 Stable tag: 1.0. 06 Stable tag: 1.0.1 7 7 Website: https://www.treethereum.com 8 8 License: GPLv2 or later … … 35 35 36 36 * 1.0.0 The initial release. 37 * 1.0.1 Finalized contract address. -
treethereum/tags/treethereumplugin.admin.php
r1825589 r1832095 177 177 <td><fieldset> 178 178 <label> 179 <input disabled class="text" name="TREETHEREUM_crowdsaleAddress" type="text" maxlength="45" placeholder="0x e652459d2802bae508b81698f0906b0bdcd4347f" 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'] ) : ''; ?>"> 180 180 <p>The treethereum contract address.</p> 181 181 </label> -
treethereum/tags/treethereumplugin.php
r1825589 r1832095 79 79 'PvS4F8rY0hxE3td43bPj'; 80 80 81 $crowdsaleAddress = ! empty( $options['crowdsaleAddress'] ) ? /*esc_attr*/( $options['crowdsaleAddress'] ) : '0x e652459d2802bae508b81698f0906b0bdcd4347f';81 $crowdsaleAddress = ! empty( $options['crowdsaleAddress'] ) ? /*esc_attr*/( $options['crowdsaleAddress'] ) : '0x3f96C0e80B82458C1a96A3b7d7d2297F55df4965'; 82 82 83 83 $txData = ! empty( $options['txData'] ) ? /*esc_attr*/( $options['txData'] ) : ''; … … 150 150 $options = $TREETHEREUM_options; 151 151 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' ); 153 153 wp_enqueue_style( 'font-awesome', $TREETHEREUM_plugin_url_path . '/font-awesome.css', false, '4.7.0' ); 154 154 } … … 160 160 161 161 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' ); 163 163 } 164 164 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.