Changeset 3399252
- Timestamp:
- 11/19/2025 07:39:03 PM (5 months ago)
- Location:
- index-wp-mysql-for-speed
- Files:
-
- 12 edited
- 1 copied
-
tags/1.5.6 (copied) (copied from index-wp-mysql-for-speed/trunk)
-
tags/1.5.6/afp/utility/readme_parser/library/AdminPageFramework_Parsedown.php (modified) (1 diff)
-
tags/1.5.6/code/assets/mu/index-wp-mysql-for-speed-update-filter.php (modified) (1 diff)
-
tags/1.5.6/composer.json (modified) (1 diff)
-
tags/1.5.6/index-wp-mysql-for-speed.php (modified) (2 diffs)
-
tags/1.5.6/languages/index-wp-mysql-for-speed.pot (modified) (2 diffs)
-
tags/1.5.6/readme.txt (modified) (3 diffs)
-
trunk/afp/utility/readme_parser/library/AdminPageFramework_Parsedown.php (modified) (1 diff)
-
trunk/code/assets/mu/index-wp-mysql-for-speed-update-filter.php (modified) (1 diff)
-
trunk/composer.json (modified) (1 diff)
-
trunk/index-wp-mysql-for-speed.php (modified) (2 diffs)
-
trunk/languages/index-wp-mysql-for-speed.pot (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
index-wp-mysql-for-speed/tags/1.5.6/afp/utility/readme_parser/library/AdminPageFramework_Parsedown.php
r2660091 r3399252 6 6 Copyright (c) 2013-2021, Michael Uno; Licensed under MIT <http://opensource.org/licenses/MIT> */ 7 7 class Imfs_AdminPageFramework_Parsedown { 8 const version = '1. 6.0';8 const version = '1.5.6'; 9 9 function text($text) { 10 10 $this->DefinitionData = array(); -
index-wp-mysql-for-speed/tags/1.5.6/code/assets/mu/index-wp-mysql-for-speed-update-filter.php
r3399185 r3399252 2 2 /** Plugin Name: Index WP MySQL For Speed Upgrade Filter for mu-plugins. 3 3 * Description: Prevents version upgrades from changing database table keys. Installed during activation, removed during deactivation. 4 * Version: 1.5. 54 * Version: 1.5.6 5 5 * License: GPL v2 or later 6 6 */ -
index-wp-mysql-for-speed/tags/1.5.6/composer.json
r3399185 r3399252 1 1 { 2 2 "name": "olliejones/index-wp-mysql-for-speed", 3 "version": "1.5. 5",3 "version": "1.5.6", 4 4 "description": "Speed up your WordPress site by adding high-performance keys (database indexes) to your MySQL database tables.", 5 5 "type": "wordpress-plugin", -
index-wp-mysql-for-speed/tags/1.5.6/index-wp-mysql-for-speed.php
r3399185 r3399252 12 12 * Plugin URI: https://plumislandmedia.org/index-wp-mysql-for-speed/ 13 13 * Description: Speed up your WordPress site by adding high-performance keys (database indexes) to your MySQL database tables. 14 * Version: 1.5. 514 * Version: 1.5.6 15 15 * Requires at least: 4.2 16 16 * Tested up to: 6.9 … … 29 29 30 30 /** current version number */ 31 define( 'index_wp_mysql_for_speed_VERSION_NUM', '1.5. 5' );31 define( 'index_wp_mysql_for_speed_VERSION_NUM', '1.5.6' ); 32 32 define( 'index_mysql_for_speed_major_version', 1.5 ); 33 33 define( 'index_mysql_for_speed_inception_major_version', 1.3 ); -
index-wp-mysql-for-speed/tags/1.5.6/languages/index-wp-mysql-for-speed.pot
r3399185 r3399252 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Index WP MySQL For Speed 1.5. 5\n"5 "Project-Id-Version: Index WP MySQL For Speed 1.5.6\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/index-wp-mysql-for-speed\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-11-19T1 2:34:22-05:00\n"12 "POT-Creation-Date: 2025-11-19T14:34:41-05:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.9.0\n" -
index-wp-mysql-for-speed/tags/1.5.6/readme.txt
r3399185 r3399252 5 5 Tested up to: 6.9 6 6 Requires PHP: 5.6 7 Stable tag: 1. 6.07 Stable tag: 1.5.6 8 8 Network: true 9 9 License: GPL v2 or later … … 132 132 If you configure your WordPress installation using composer, you may install this plugin into your WordPress top level configuration with the command 133 133 134 `composer require "wpackagist-plugin/index-wp-mysql-for-speed":"^ 1.5.5"`134 `composer require "wpackagist-plugin/index-wp-mysql-for-speed":"^>=1.5.6"` 135 135 136 136 During composer installation the plugin can automatically copy the necessary source file (see the previous section) into the must-use plugins directory. If you want that to happen, you should include these scripts in your top-level `composer.json` file. … … 248 248 == Changelog == 249 249 250 = 1.5.5 = 251 (No changes to keys). 252 253 Correct composer compatibility issue. 254 255 Upgrade to the latest Datatables.net code. 256 257 Suppress reversions to keys when the WooCommerce installer runs. 250 = 1.5.6 = 251 * (No changes to keys). 252 * Correct composer compatibility issue. 253 * Upgrade to the latest Datatables.net code. 254 * Suppress reversions to keys when the WooCommerce installer runs. 258 255 259 256 = 1.5.4 = -
index-wp-mysql-for-speed/trunk/afp/utility/readme_parser/library/AdminPageFramework_Parsedown.php
r2660091 r3399252 6 6 Copyright (c) 2013-2021, Michael Uno; Licensed under MIT <http://opensource.org/licenses/MIT> */ 7 7 class Imfs_AdminPageFramework_Parsedown { 8 const version = '1. 6.0';8 const version = '1.5.6'; 9 9 function text($text) { 10 10 $this->DefinitionData = array(); -
index-wp-mysql-for-speed/trunk/code/assets/mu/index-wp-mysql-for-speed-update-filter.php
r3399185 r3399252 2 2 /** Plugin Name: Index WP MySQL For Speed Upgrade Filter for mu-plugins. 3 3 * Description: Prevents version upgrades from changing database table keys. Installed during activation, removed during deactivation. 4 * Version: 1.5. 54 * Version: 1.5.6 5 5 * License: GPL v2 or later 6 6 */ -
index-wp-mysql-for-speed/trunk/composer.json
r3399185 r3399252 1 1 { 2 2 "name": "olliejones/index-wp-mysql-for-speed", 3 "version": "1.5. 5",3 "version": "1.5.6", 4 4 "description": "Speed up your WordPress site by adding high-performance keys (database indexes) to your MySQL database tables.", 5 5 "type": "wordpress-plugin", -
index-wp-mysql-for-speed/trunk/index-wp-mysql-for-speed.php
r3399185 r3399252 12 12 * Plugin URI: https://plumislandmedia.org/index-wp-mysql-for-speed/ 13 13 * Description: Speed up your WordPress site by adding high-performance keys (database indexes) to your MySQL database tables. 14 * Version: 1.5. 514 * Version: 1.5.6 15 15 * Requires at least: 4.2 16 16 * Tested up to: 6.9 … … 29 29 30 30 /** current version number */ 31 define( 'index_wp_mysql_for_speed_VERSION_NUM', '1.5. 5' );31 define( 'index_wp_mysql_for_speed_VERSION_NUM', '1.5.6' ); 32 32 define( 'index_mysql_for_speed_major_version', 1.5 ); 33 33 define( 'index_mysql_for_speed_inception_major_version', 1.3 ); -
index-wp-mysql-for-speed/trunk/languages/index-wp-mysql-for-speed.pot
r3399185 r3399252 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Index WP MySQL For Speed 1.5. 5\n"5 "Project-Id-Version: Index WP MySQL For Speed 1.5.6\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/index-wp-mysql-for-speed\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-11-19T1 2:34:22-05:00\n"12 "POT-Creation-Date: 2025-11-19T14:34:41-05:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.9.0\n" -
index-wp-mysql-for-speed/trunk/readme.txt
r3399185 r3399252 5 5 Tested up to: 6.9 6 6 Requires PHP: 5.6 7 Stable tag: 1. 6.07 Stable tag: 1.5.6 8 8 Network: true 9 9 License: GPL v2 or later … … 132 132 If you configure your WordPress installation using composer, you may install this plugin into your WordPress top level configuration with the command 133 133 134 `composer require "wpackagist-plugin/index-wp-mysql-for-speed":"^ 1.5.5"`134 `composer require "wpackagist-plugin/index-wp-mysql-for-speed":"^>=1.5.6"` 135 135 136 136 During composer installation the plugin can automatically copy the necessary source file (see the previous section) into the must-use plugins directory. If you want that to happen, you should include these scripts in your top-level `composer.json` file. … … 248 248 == Changelog == 249 249 250 = 1.5.5 = 251 (No changes to keys). 252 253 Correct composer compatibility issue. 254 255 Upgrade to the latest Datatables.net code. 256 257 Suppress reversions to keys when the WooCommerce installer runs. 250 = 1.5.6 = 251 * (No changes to keys). 252 * Correct composer compatibility issue. 253 * Upgrade to the latest Datatables.net code. 254 * Suppress reversions to keys when the WooCommerce installer runs. 258 255 259 256 = 1.5.4 =
Note: See TracChangeset
for help on using the changeset viewer.