Changeset 2959476
- Timestamp:
- 08/28/2023 04:11:48 PM (3 years ago)
- Location:
- jquery-updater/trunk
- Files:
-
- 6 added
- 6 deleted
- 2 edited
-
jquery-updater.php (modified) (4 diffs)
-
js/jquery-3.7.0.js (deleted)
-
js/jquery-3.7.0.min.js (deleted)
-
js/jquery-3.7.0.min.map (deleted)
-
js/jquery-3.7.0.slim.js (deleted)
-
js/jquery-3.7.0.slim.min.js (deleted)
-
js/jquery-3.7.0.slim.min.map (deleted)
-
js/jquery-3.7.1.js (added)
-
js/jquery-3.7.1.min.js (added)
-
js/jquery-3.7.1.min.map (added)
-
js/jquery-3.7.1.slim.js (added)
-
js/jquery-3.7.1.slim.min.js (added)
-
js/jquery-3.7.1.slim.min.map (added)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jquery-updater/trunk/jquery-updater.php
r2911683 r2959476 4 4 * Plugin URI: http://www.ramoonus.nl/wordpress/jquery-updater/ 5 5 * Description: This plugin updates jQuery to the latest stable version. 6 * Version: 3.7. 06 * Version: 3.7.1 7 7 * Author: Ramoonus 8 8 * Author URI: http://www.ramoonus.nl/ … … 15 15 * Replace jQuery with a newer version, load jQuery Migrate 16 16 * 17 * @version 3.7. 017 * @version 3.7.1 18 18 * @since 1.0.0 19 19 * @return void … … 21 21 function rw_jquery_updater() 22 22 { 23 $ver = '3.7. 0';23 $ver = '3.7.1'; 24 24 $ver_core = $ver; 25 25 $ver_migrate = '3.4.0'; … … 35 35 // Re-register jQuery core 36 36 // @todo make dynamic 37 wp_register_script( 'jquery-core', plugins_url( '/js/jquery-3.7. 0.min.js', __FILE__ ), [], $ver_core );37 wp_register_script( 'jquery-core', plugins_url( '/js/jquery-3.7.1.min.js', __FILE__ ), [], $ver_core ); 38 38 39 39 // jQuery Migrate -
jquery-updater/trunk/readme.txt
r2942032 r2959476 5 5 Requires at least: 6.0 6 6 Tested up to: 6.3 7 Stable tag: 3.7. 07 Stable tag: 3.7.1 8 8 Requires PHP: 5.6 9 9 … … 16 16 No files are replaced, therefore deactivation of this plugin returns your site to it`s original state. 17 17 18 Since WordPress 5.6 includes an up-to-date version of jQuery 3, upgrading shouldn't`t be nec cesary in most cases.18 Since WordPress 5.6 includes an up-to-date version of jQuery 3, upgrading shouldn't`t be necessary in most cases. 19 19 20 20 **Warning** … … 53 53 54 54 == Changelog == 55 Bump WP requirement to 6.0, compatible with WP 6.356 57 55 = 3.7.0 = 58 56 * Updated to [jQuery 3.7.0](https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/) 57 58 = 3.7.0 = 59 * Updated to [jQuery 3.7.0](https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/) 60 * Compatible with WP 6.3 59 61 60 62 = 3.6.4 =
Note: See TracChangeset
for help on using the changeset viewer.