Plugin Directory

Changeset 2343388


Ignore:
Timestamp:
07/20/2020 11:07:43 AM (5 years ago)
Author:
remzicavdar
Message:
  • Fixed text domain issue
  • Updated dev tools configs
Location:
jquery-manager/trunk
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • jquery-manager/trunk/.travis.yml

    r2112677 r2343388  
    1919matrix:
    2020  include:
     21    - php: 7.4
     22      env: WP_VERSION=trunk
     23    - php: 7.4
     24      env: WP_VERSION=latest
    2125    - php: 7.3
    2226      env: WP_VERSION=latest
    23     - php: 7.3
    24       env: WP_VERSION=trunk
    2527    - php: 7.2
    2628      env: WP_VERSION=latest
  • jquery-manager/trunk/jquery-manager.php

    r2343351 r2343388  
    1313 * Plugin URI:      https://github.com/Remzi1993/jquery-manager
    1414 * 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.5
     15 * Version:         1.10.6
    1616 * Author:          Remzi Cavdar
    1717 * Author URI:      https://twitter.com/remzicavdar
    1818 * License:         GPLv3
    1919 * License URI:     https://www.gnu.org/licenses/gpl-3.0
    20  * Text Domain:     wp-jquery-manager
     20 * Text Domain:     jquery-manager
    2121 * Domain Path:     /languages
    2222 */
     
    3535define( 'WP_JQUERY_MANAGER_PLUGIN_SLUG', 'wp-jquery-manager-plugin-settings' );
    3636define( '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' );
     37define( 'WP_JQUERY_MANAGER_PLUGIN_TEXT_DOMAIN', 'jquery-manager' );
    3838define( 'WP_JQUERY_MANAGER_PLUGIN_SITE_URL', get_site_url() );
    3939define( 'WP_JQUERY_MANAGER_PLUGIN_DOMAIN_NAME', $_SERVER['HTTP_HOST'] );
  • jquery-manager/trunk/package.json

    r2343351 r2343388  
    11{
    22    "name": "jquery-manager",
    3     "version": "1.10.5",
     3    "version": "1.10.6",
    44    "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.",
    55    "main": "jquery-manager.php",
  • jquery-manager/trunk/phpcs.ruleset.xml

    r2112677 r2343388  
    7676        <properties>
    7777            <property name="text_domain" type="array">
    78                 <element value="my-textdomain"/>
    79                 <element value="library-textdomain"/>
     78                <element value="jquery-manager"/>
    8079            </property>
    8180        </properties>
     
    8584        <properties>
    8685            <property name="prefixes" type="array">
    87                 <element value="my_prefix"/>
     86                <element value="wp_jquery_manager"/>
    8887            </property>
    8988        </properties>
Note: See TracChangeset for help on using the changeset viewer.