Changeset 2343388
- Timestamp:
- 07/20/2020 11:07:43 AM (5 years ago)
- Location:
- jquery-manager/trunk
- Files:
-
- 1 added
- 4 edited
-
.travis.yml (modified) (1 diff)
-
jquery-manager.php (modified) (2 diffs)
-
languages (added)
-
package.json (modified) (1 diff)
-
phpcs.ruleset.xml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jquery-manager/trunk/.travis.yml
r2112677 r2343388 19 19 matrix: 20 20 include: 21 - php: 7.4 22 env: WP_VERSION=trunk 23 - php: 7.4 24 env: WP_VERSION=latest 21 25 - php: 7.3 22 26 env: WP_VERSION=latest 23 - php: 7.324 env: WP_VERSION=trunk25 27 - php: 7.2 26 28 env: WP_VERSION=latest -
jquery-manager/trunk/jquery-manager.php
r2343351 r2343388 13 13 * Plugin URI: https://github.com/Remzi1993/jquery-manager 14 14 * Description: Manage jQuery and jQuery Migrate, activate a specific jQuery and/or jQuery Migrate version. The ultimate jQuery debugging tool for WordPress. This plugin is an open source project, made possible by your contribution (code). Development is done on GitHub. 15 * Version: 1.10. 515 * Version: 1.10.6 16 16 * Author: Remzi Cavdar 17 17 * Author URI: https://twitter.com/remzicavdar 18 18 * License: GPLv3 19 19 * License URI: https://www.gnu.org/licenses/gpl-3.0 20 * Text Domain: wp-jquery-manager20 * Text Domain: jquery-manager 21 21 * Domain Path: /languages 22 22 */ … … 35 35 define( 'WP_JQUERY_MANAGER_PLUGIN_SLUG', 'wp-jquery-manager-plugin-settings' ); 36 36 define( 'WP_JQUERY_MANAGER_PLUGIN_ADMIN_URL', admin_url( 'tools.php?page=' . WP_JQUERY_MANAGER_PLUGIN_SLUG ) ); 37 define( 'WP_JQUERY_MANAGER_PLUGIN_TEXT_DOMAIN', ' wp-jquery-manager' );37 define( 'WP_JQUERY_MANAGER_PLUGIN_TEXT_DOMAIN', 'jquery-manager' ); 38 38 define( 'WP_JQUERY_MANAGER_PLUGIN_SITE_URL', get_site_url() ); 39 39 define( 'WP_JQUERY_MANAGER_PLUGIN_DOMAIN_NAME', $_SERVER['HTTP_HOST'] ); -
jquery-manager/trunk/package.json
r2343351 r2343388 1 1 { 2 2 "name": "jquery-manager", 3 "version": "1.10. 5",3 "version": "1.10.6", 4 4 "description": "Manage jQuery and jQuery Migrate on a WordPress website, select a specific jQuery and/or jQuery Migrate version. The ultimate jQuery debugging tool for WordPress. This plugin is a open source project, made possible by your contribution (code). Development is done on GitHub.", 5 5 "main": "jquery-manager.php", -
jquery-manager/trunk/phpcs.ruleset.xml
r2112677 r2343388 76 76 <properties> 77 77 <property name="text_domain" type="array"> 78 <element value="my-textdomain"/> 79 <element value="library-textdomain"/> 78 <element value="jquery-manager"/> 80 79 </property> 81 80 </properties> … … 85 84 <properties> 86 85 <property name="prefixes" type="array"> 87 <element value=" my_prefix"/>86 <element value="wp_jquery_manager"/> 88 87 </property> 89 88 </properties>
Note: See TracChangeset
for help on using the changeset viewer.