Changeset 3326069
- Timestamp:
- 07/11/2025 05:21:30 AM (6 months ago)
- Location:
- wordpress-beta-tester
- Files:
-
- 1 deleted
- 10 edited
- 1 copied
-
assets/screenshot-4.png (deleted)
-
tags/3.6.4 (copied) (copied from wordpress-beta-tester/trunk)
-
tags/3.6.4/CHANGES.md (modified) (1 diff)
-
tags/3.6.4/README.md (modified) (1 diff)
-
tags/3.6.4/readme.txt (modified) (4 diffs)
-
tags/3.6.4/src/WPBT/WPBT_Extras.php (modified) (1 diff)
-
tags/3.6.4/wp-beta-tester.php (modified) (1 diff)
-
trunk/CHANGES.md (modified) (1 diff)
-
trunk/README.md (modified) (1 diff)
-
trunk/readme.txt (modified) (4 diffs)
-
trunk/src/WPBT/WPBT_Extras.php (modified) (1 diff)
-
trunk/wp-beta-tester.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wordpress-beta-tester/tags/3.6.4/CHANGES.md
r3261736 r3326069 1 1 [unreleased] 2 3 #### 3.6.4 / 2025-07-10 4 * update readme 5 * fixed incorrect path to `delete_plugins()` 6 * check for `require_filesystem_credentials()` as missing during update. 2 7 3 8 #### 3.6.3 / 2025-03-25 -
wordpress-beta-tester/tags/3.6.4/README.md
r3166156 r3326069 1 1 # WordPress Beta Tester 2 2 * Tags: beta, advanced, testing 3 * Contributors: [ westi](https://github.com/westi), [mlteal](https://github.com/mlteal), [afragen](https://github.com/afragen), [pbiron](https://github.com/pbiron), [costdev](https:/github.com/costdev)3 * Contributors: [afragen](https://github.com/afragen), [costdev](https:/github.com/costdev), [pbiron](https://github.com/pbiron), [westi](https://github.com/westi), [mlteal](https://github.com/mlteal) 4 4 * License: GPLv2 5 5 * License URI: https://www.opensource.org/licenses/GPL-2.0 -
wordpress-beta-tester/tags/3.6.4/readme.txt
r3261743 r3326069 2 2 3 3 Tags: beta, advanced, testing 4 Contributors: westi, mlteal, afragen, pbiron, costdev4 Contributors: afragen, costdev, pbiron, mlteal, westi 5 5 License: GPLv2 6 6 License URI: https://www.opensource.org/licenses/GPL-2.0 … … 8 8 Requires PHP: 5.6 9 9 Tested up to: 6.8 10 Stable Tag: 3.6. 310 Stable Tag: 3.6.4 11 11 12 12 Allows you to easily upgrade for testing the next versions of WordPress. … … 32 32 33 33 ## Changelog 34 35 #### 3.6.4 / 2025-07-10 36 * update readme 37 * fixed incorrect path to `delete_plugins()` 38 * check for `require_filesystem_credentials()` as missing during update. 34 39 35 40 #### 3.6.3 / 2025-03-25 … … 364 369 2. This shows the Extra Settings page for the plugin 365 370 3. This shows the Dashboard callout 366 4. This shows the 'Report a Bug' tab -
wordpress-beta-tester/tags/3.6.4/src/WPBT/WPBT_Extras.php
r3261736 r3326069 220 220 221 221 // Needed as sometimes `delete_plugins()` not ready. 222 require_once ABSPATH . 'wp-admin/includes/file.php'; 223 add_action( 'init', fn() => delete_plugins( array( 'akismet/akismet.php' ) ) ); 222 require_once ABSPATH . 'wp-admin/includes/plugin.php'; 223 add_action( 224 'init', 225 function () { 226 if ( function_exists( 'request_filesystem_credentials' ) ) { 227 delete_plugins( array( 'akismet/akismet.php' ) ); 228 } 229 } 230 ); 224 231 } 225 232 } -
wordpress-beta-tester/tags/3.6.4/wp-beta-tester.php
r3261736 r3326069 14 14 * Description: Allows you to easily upgrade to Beta releases. 15 15 * Author: WordPress Upgrade/Install Team 16 * Version: 3.6. 316 * Version: 3.6.4 17 17 * Network: true 18 18 * Author URI: https://make.wordpress.org/core/components/upgrade-install/ -
wordpress-beta-tester/trunk/CHANGES.md
r3261736 r3326069 1 1 [unreleased] 2 3 #### 3.6.4 / 2025-07-10 4 * update readme 5 * fixed incorrect path to `delete_plugins()` 6 * check for `require_filesystem_credentials()` as missing during update. 2 7 3 8 #### 3.6.3 / 2025-03-25 -
wordpress-beta-tester/trunk/README.md
r3166156 r3326069 1 1 # WordPress Beta Tester 2 2 * Tags: beta, advanced, testing 3 * Contributors: [ westi](https://github.com/westi), [mlteal](https://github.com/mlteal), [afragen](https://github.com/afragen), [pbiron](https://github.com/pbiron), [costdev](https:/github.com/costdev)3 * Contributors: [afragen](https://github.com/afragen), [costdev](https:/github.com/costdev), [pbiron](https://github.com/pbiron), [westi](https://github.com/westi), [mlteal](https://github.com/mlteal) 4 4 * License: GPLv2 5 5 * License URI: https://www.opensource.org/licenses/GPL-2.0 -
wordpress-beta-tester/trunk/readme.txt
r3261743 r3326069 2 2 3 3 Tags: beta, advanced, testing 4 Contributors: westi, mlteal, afragen, pbiron, costdev4 Contributors: afragen, costdev, pbiron, mlteal, westi 5 5 License: GPLv2 6 6 License URI: https://www.opensource.org/licenses/GPL-2.0 … … 8 8 Requires PHP: 5.6 9 9 Tested up to: 6.8 10 Stable Tag: 3.6. 310 Stable Tag: 3.6.4 11 11 12 12 Allows you to easily upgrade for testing the next versions of WordPress. … … 32 32 33 33 ## Changelog 34 35 #### 3.6.4 / 2025-07-10 36 * update readme 37 * fixed incorrect path to `delete_plugins()` 38 * check for `require_filesystem_credentials()` as missing during update. 34 39 35 40 #### 3.6.3 / 2025-03-25 … … 364 369 2. This shows the Extra Settings page for the plugin 365 370 3. This shows the Dashboard callout 366 4. This shows the 'Report a Bug' tab -
wordpress-beta-tester/trunk/src/WPBT/WPBT_Extras.php
r3261736 r3326069 220 220 221 221 // Needed as sometimes `delete_plugins()` not ready. 222 require_once ABSPATH . 'wp-admin/includes/file.php'; 223 add_action( 'init', fn() => delete_plugins( array( 'akismet/akismet.php' ) ) ); 222 require_once ABSPATH . 'wp-admin/includes/plugin.php'; 223 add_action( 224 'init', 225 function () { 226 if ( function_exists( 'request_filesystem_credentials' ) ) { 227 delete_plugins( array( 'akismet/akismet.php' ) ); 228 } 229 } 230 ); 224 231 } 225 232 } -
wordpress-beta-tester/trunk/wp-beta-tester.php
r3261736 r3326069 14 14 * Description: Allows you to easily upgrade to Beta releases. 15 15 * Author: WordPress Upgrade/Install Team 16 * Version: 3.6. 316 * Version: 3.6.4 17 17 * Network: true 18 18 * Author URI: https://make.wordpress.org/core/components/upgrade-install/
Note: See TracChangeset
for help on using the changeset viewer.