Changeset 1142425
- Timestamp:
- 04/22/2015 05:50:26 PM (10 years ago)
- Location:
- roost-for-bloggers/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
roost-for-bloggers/trunk/includes/class-roost-core.php
r1139458 r1142425 7 7 class Roost { 8 8 9 public static $roost_version = '2.3. 1';9 public static $roost_version = '2.3.2'; 10 10 11 11 protected static $database_version = 20150331; … … 71 71 'custom_script' => '', 72 72 'chrome_error_dismiss' => false, 73 'chrome_setup' => false,73 'chrome_setup' => true, 74 74 'gcm_token' => '', 75 75 ); … … 84 84 $roost_settings['version'] = self::$roost_version; 85 85 update_option( 'roost_settings', $roost_settings ); 86 if( isset( $roost_settings['chrome_setup'] ) && true === self::roost_active() ) { 87 self::setup_chrome(); 88 } 86 89 if ( empty( $roost_settings['database_version'] ) || $roost_settings['database_version'] < self::$database_version ) { 87 90 self::update_database( $roost_settings ); … … 123 126 $roost_settings['use_custom_script'] = (bool)$roost_settings['use_custom_script']; 124 127 $roost_settings['chrome_error_dismiss'] = false; 125 $roost_settings['chrome_setup'] = false;128 $roost_settings['chrome_setup'] = true; 126 129 $roost_settings['gcm_token'] = ''; 127 130 if( true === self::roost_active() ) { … … 630 633 Roost_API::save_remote_settings( $app_key, $app_secret, null, null, $chrome_vars ); 631 634 632 $roost_settings['chrome_setup'] = true;633 635 $roost_settings['gcm_token'] = $gcm_token; 634 636 update_option('roost_settings', $roost_settings); … … 638 640 $roost_settings = self::roost_settings(); 639 641 $roost_settings['chrome_error_dismiss'] = false; 640 $roost_settings['chrome_setup'] = false;641 642 $roost_settings['gcm_token'] = ''; 642 643 update_option('roost_settings', $roost_settings); -
roost-for-bloggers/trunk/readme.txt
r1139458 r1142425 4 4 Requires at least: 3.8 5 5 Tested up to: 4.2 6 Stable tag: 2.3. 16 Stable tag: 2.3.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 124 124 125 125 == Changelog == 126 = 2.3.2 = 127 * MAJOR - Bugfix - Chrome files not being regenerated after plugin upgrade 128 126 129 = 2.3.1 = 127 130 * Changed messaging for HTTPS check to a notice not warning (Was throwing false negatives) … … 251 254 252 255 == Upgrade Notice == 256 = 2.3.2 = 257 * MAJOR - Bugfix - Chrome files not generated on plugin upgrade. 258 253 259 = 2.3.1 = 254 * Minor UX tweaks - HTTPS check now non-blocking notice not warning.260 * Minor - UX tweaks - HTTPS check now non-blocking notice not warning. 255 261 256 262 = 2.3.0 = -
roost-for-bloggers/trunk/roost.php
r1139458 r1142425 4 4 * Plugin URI: https://goroost.com/ 5 5 * Description: Drive traffic to your website with Roost Notifications -- which includes Chrome and Safari. 6 * Version: 2.3. 16 * Version: 2.3.2 7 7 * Author: Roost 8 8 * Author URI: https://goroost.com
Note: See TracChangeset
for help on using the changeset viewer.