Changeset 2241239
- Timestamp:
- 02/09/2020 11:04:19 AM (6 years ago)
- Location:
- booter-bots-crawlers-manager
- Files:
-
- 48 added
- 6 edited
-
tags/1.5.3 (added)
-
tags/1.5.3/assets (added)
-
tags/1.5.3/assets/dist (added)
-
tags/1.5.3/assets/dist/css (added)
-
tags/1.5.3/assets/dist/css/options.css (added)
-
tags/1.5.3/assets/dist/js (added)
-
tags/1.5.3/assets/dist/js/notice.js (added)
-
tags/1.5.3/assets/dist/js/notice.js.map (added)
-
tags/1.5.3/assets/dist/js/options.js (added)
-
tags/1.5.3/assets/dist/js/options.js.map (added)
-
tags/1.5.3/assets/images (added)
-
tags/1.5.3/assets/images/logo-file-NEW-03-min.png (added)
-
tags/1.5.3/assets/images/upress_logo.png (added)
-
tags/1.5.3/booter-contstants.php (added)
-
tags/1.5.3/booter-crawlers-manager.php (added)
-
tags/1.5.3/changelog.txt (added)
-
tags/1.5.3/includes (added)
-
tags/1.5.3/includes/AjaxHandlers.php (added)
-
tags/1.5.3/includes/Log404.php (added)
-
tags/1.5.3/includes/Logger.php (added)
-
tags/1.5.3/includes/Plugin.php (added)
-
tags/1.5.3/includes/RateLimiter.php (added)
-
tags/1.5.3/includes/RequestBlocker.php (added)
-
tags/1.5.3/includes/RobotsWriter.php (added)
-
tags/1.5.3/includes/Settings.php (added)
-
tags/1.5.3/includes/Updater.php (added)
-
tags/1.5.3/includes/Utilities.php (added)
-
tags/1.5.3/index.php (added)
-
tags/1.5.3/languages (added)
-
tags/1.5.3/languages/booter-he_IL.mo (added)
-
tags/1.5.3/languages/booter-he_IL.po (added)
-
tags/1.5.3/languages/booter-xx_XX.pot (added)
-
tags/1.5.3/mu-plugins (added)
-
tags/1.5.3/mu-plugins/booter-crawlers-manager-mu.php (added)
-
tags/1.5.3/readme.txt (added)
-
tags/1.5.3/views (added)
-
tags/1.5.3/views/options-tabs (added)
-
tags/1.5.3/views/options-tabs/404-log.php (added)
-
tags/1.5.3/views/options-tabs/about.php (added)
-
tags/1.5.3/views/options-tabs/bad-bots.php (added)
-
tags/1.5.3/views/options-tabs/block.php (added)
-
tags/1.5.3/views/options-tabs/debug.php (added)
-
tags/1.5.3/views/options-tabs/disavow.php (added)
-
tags/1.5.3/views/options-tabs/general.php (added)
-
tags/1.5.3/views/options-tabs/help.php (added)
-
tags/1.5.3/views/options-tabs/rate-limit.php (added)
-
tags/1.5.3/views/options-tabs/robots.php (added)
-
tags/1.5.3/views/options.php (added)
-
trunk/booter-contstants.php (modified) (1 diff)
-
trunk/booter-crawlers-manager.php (modified) (1 diff)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/includes/Log404.php (modified) (1 diff)
-
trunk/includes/RobotsWriter.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
booter-bots-crawlers-manager/trunk/booter-contstants.php
r2238314 r2241239 9 9 define( 'BOOTER_URL', plugin_dir_url( BOOTER_FILE ) ); 10 10 define( 'BOOTER_BASEBANE', basename( BOOTER_FILE ) ); 11 define( 'BOOTER_VERSION', '1.5. 2' );11 define( 'BOOTER_VERSION', '1.5.3' ); 12 12 define( 'BOOTER_404_DB_TABLE', 'booter_404s' ); -
booter-bots-crawlers-manager/trunk/booter-crawlers-manager.php
r2238314 r2241239 8 8 Text Domain: booter 9 9 Domain Path: /languages 10 Version: 1.5. 210 Version: 1.5.3 11 11 License: GPLv2 or later 12 12 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
booter-bots-crawlers-manager/trunk/changelog.txt
r2238314 r2241239 1 = 1.5.3 = 2 - Fix scheduled task not setting properly 3 1 4 = 1.5.2 = 2 5 - Fix bots list not updating -
booter-bots-crawlers-manager/trunk/includes/Log404.php
r2233706 r2241239 23 23 add_filter( 'cron_schedules', [ $this, 'add_cron_schedules' ] ); 24 24 add_action( 'template_redirect', [ $this, 'maybe_log_404' ] ); 25 add_action( 'init', [ $this, 'schedule_cronjobs' ], 100 ); 25 26 26 27 register_deactivation_hook( BOOTER_FILE, [ $this, 'deactivation_hook' ] ); 27 $this->schedule_cronjobs();28 28 } 29 29 -
booter-bots-crawlers-manager/trunk/includes/RobotsWriter.php
r2092087 r2241239 26 26 add_filter( 'cron_schedules', [ $this, 'add_cron_schedule' ] ); 27 27 add_action( 'booter_write_robots_file', [ $this, 'maybe_write_robots_file' ] ); 28 add_action( 'init', [ $this, 'schedule_cronjobs' ], 100 ); 28 29 register_deactivation_hook( BOOTER_FILE, [ $this, 'clear_scheduled_task' ] ); 29 $this->schedule_cronjobs();30 30 31 31 if ( is_admin() ) { … … 70 70 /** 71 71 * Intercept the settings save action and run the write robots function 72 * 73 * @param $old_value 74 * @param $value 75 * @param $option 72 76 */ 73 77 function settings_save_write_robots( $old_value, $value, $option ) { … … 119 123 /** 120 124 * Write the robots.txt file 125 * @param array|null $settings 121 126 */ 122 127 function maybe_write_robots_file( $settings = null ) { -
booter-bots-crawlers-manager/trunk/readme.txt
r2238314 r2241239 46 46 47 47 == Changelog == 48 = 1.5.3 = 49 - Fix scheduled task not setting properly 50 48 51 = 1.5.2 = 49 52 - Fix bots list not updating
Note: See TracChangeset
for help on using the changeset viewer.