Changeset 1558991
- Timestamp:
- 12/21/2016 01:03:39 PM (9 years ago)
- Location:
- nxtbridge
- Files:
-
- 3 edited
- 15 copied
-
tags/0.3.2 (copied) (copied from nxtbridge/trunk)
-
tags/0.3.2/config.php (copied) (copied from nxtbridge/trunk/config.php) (2 diffs)
-
tags/0.3.2/img (copied) (copied from nxtbridge/trunk/img)
-
tags/0.3.2/lib (copied) (copied from nxtbridge/trunk/lib)
-
tags/0.3.2/lib/assets-auto.php (copied) (copied from nxtbridge/trunk/lib/assets-auto.php)
-
tags/0.3.2/lib/assets-graphics.php (copied) (copied from nxtbridge/trunk/lib/assets-graphics.php)
-
tags/0.3.2/lib/assets-info.php (copied) (copied from nxtbridge/trunk/lib/assets-info.php)
-
tags/0.3.2/lib/options.php (copied) (copied from nxtbridge/trunk/lib/options.php)
-
tags/0.3.2/nxtbridge.php (copied) (copied from nxtbridge/trunk/nxtbridge.php) (2 diffs)
-
tags/0.3.2/readme.txt (copied) (copied from nxtbridge/trunk/readme.txt) (2 diffs)
-
tags/0.3.2/style.css (copied) (copied from nxtbridge/trunk/style.css)
-
tags/0.3.2/style.scss (copied) (copied from nxtbridge/trunk/style.scss)
-
tags/0.3.2/wallet (copied) (copied from nxtbridge/trunk/wallet)
-
tags/0.3.2/wallet.css (copied) (copied from nxtbridge/trunk/wallet.css)
-
tags/0.3.2/wallet.scss (copied) (copied from nxtbridge/trunk/wallet.scss)
-
trunk/config.php (modified) (2 diffs)
-
trunk/nxtbridge.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
nxtbridge/tags/0.3.2/config.php
r1558887 r1558991 1 1 <?php 2 3 // global 4 add_action('plugins_loaded', 'nxter_update_version'); 2 5 3 6 // admin … … 112 115 } 113 116 117 function nxter_update_version() { 118 global $wpdb; 119 global $version; 120 121 $nxtbridge_version = get_option('NXTBridge_version'); 122 if ( $nxtbridge_version == '' ) { 123 // old demo version, we need to clean all users settings 124 $table_name = $wpdb->prefix . "options"; 125 $sql = "DELETE FROM $wpdb->options WHERE `option_name` like 'NXTBridge_%' and `option_name` != 'NXTBridge_settings' "; 126 $wpdb->query( $sql ); 127 update_option('NXTBridge_version' , $version); 128 } 129 130 } 131 114 132 115 133 -
nxtbridge/tags/0.3.2/nxtbridge.php
r1558887 r1558991 4 4 Plugin Name: NXTBridge 5 5 Plugin URI: http://nxter.org/nxtbridge 6 Version: 0.3. 16 Version: 0.3.2 7 7 Author: scor2k 8 8 Description: Show Nxt asset information on your Wordpress sites. … … 11 11 */ 12 12 global $api; 13 $version = '0.3.2'; // NOT FORGET TO CHANGE !!! 13 14 14 15 $api = '//api.nxter.org/v1'; -
nxtbridge/tags/0.3.2/readme.txt
r1558887 r1558991 65 65 66 66 == Upgrade Notice == 67 * Just install new version and check plugin settings.67 * If you do update plugin from version 0.3.1 or earlier all yours settings for NXTBridge plugin will be cleared. 68 68 69 69 == Screenshots == … … 71 71 72 72 == Changelog == 73 74 = 0.3.2 = 75 * Cleaning users settings (not site settings) for NXTBridge plugin, i.e. account name and agreement. 73 76 74 77 = 0.3.1 = -
nxtbridge/trunk/config.php
r1558887 r1558991 1 1 <?php 2 3 // global 4 add_action('plugins_loaded', 'nxter_update_version'); 2 5 3 6 // admin … … 112 115 } 113 116 117 function nxter_update_version() { 118 global $wpdb; 119 global $version; 120 121 $nxtbridge_version = get_option('NXTBridge_version'); 122 if ( $nxtbridge_version == '' ) { 123 // old demo version, we need to clean all users settings 124 $table_name = $wpdb->prefix . "options"; 125 $sql = "DELETE FROM $wpdb->options WHERE `option_name` like 'NXTBridge_%' and `option_name` != 'NXTBridge_settings' "; 126 $wpdb->query( $sql ); 127 update_option('NXTBridge_version' , $version); 128 } 129 130 } 131 114 132 115 133 -
nxtbridge/trunk/nxtbridge.php
r1558887 r1558991 4 4 Plugin Name: NXTBridge 5 5 Plugin URI: http://nxter.org/nxtbridge 6 Version: 0.3. 16 Version: 0.3.2 7 7 Author: scor2k 8 8 Description: Show Nxt asset information on your Wordpress sites. … … 11 11 */ 12 12 global $api; 13 $version = '0.3.2'; // NOT FORGET TO CHANGE !!! 13 14 14 15 $api = '//api.nxter.org/v1'; -
nxtbridge/trunk/readme.txt
r1558887 r1558991 65 65 66 66 == Upgrade Notice == 67 * Just install new version and check plugin settings.67 * If you do update plugin from version 0.3.1 or earlier all yours settings for NXTBridge plugin will be cleared. 68 68 69 69 == Screenshots == … … 71 71 72 72 == Changelog == 73 74 = 0.3.2 = 75 * Cleaning users settings (not site settings) for NXTBridge plugin, i.e. account name and agreement. 73 76 74 77 = 0.3.1 =
Note: See TracChangeset
for help on using the changeset viewer.