Changeset 2987497
- Timestamp:
- 11/01/2023 03:41:03 PM (2 years ago)
- Location:
- jarvis/trunk
- Files:
-
- 6 edited
-
composer.json (modified) (1 diff)
-
dist/js/jarvis.js (modified) (1 diff)
-
jarvis.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
src/Plugin.php (modified) (1 diff)
-
vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jarvis/trunk/composer.json
r2772177 r2987497 2 2 "name": "wdgdc/jarvis", 3 3 "type": "wordpress-plugin", 4 "version": "1.1. 0",4 "version": "1.1.1", 5 5 "license": "MIT", 6 6 "autoload": { -
jarvis/trunk/dist/js/jarvis.js
r2772177 r2987497 1 1 /** 2 2 * jarvis - Jarvis is your admin assistant, putting WordPress at your fingertips via a quicksearch interface. 3 * @version v1.1. 03 * @version v1.1.1 4 4 * @link https://github.com/wdgdc/jarvis#readme 5 5 * @license MIT -
jarvis/trunk/jarvis.php
r2772169 r2987497 4 4 Plugin URI: http://www.wpjarvis.com 5 5 Description: Jarvis is your administration assistant, putting WordPress at your fingertips. 6 Version: 1.1. 06 Version: 1.1.1 7 7 Author: The Web Development Group, David Everett, Joan Piedra, Kurtis Shaner, Doug Axelrod 8 8 Author URI: http://www.wdg.co … … 17 17 define( 'JARVIS_PATH', __DIR__ ); 18 18 define( 'JARVIS_URI', plugins_url( '', __FILE__ ) ); 19 define( 'JARVIS_VERSION', '1.1. 0' );19 define( 'JARVIS_VERSION', '1.1.1' ); 20 20 21 21 Plugin::get_instance(); -
jarvis/trunk/readme.txt
r2772169 r2987497 8 8 Requires at least: 4.8 9 9 Tested up to: 6.0.1 10 Stable tag: 1.1. 011 Version: 1.1. 010 Stable tag: 1.1.1 11 Version: 1.1.1 12 12 License: MIT 13 13 License URI: https://opensource.org/licenses/mit-license.php … … 65 65 66 66 == Changelog == 67 68 = 1.1.1 = 69 * Fix PHP 8.1 compatibility 67 70 68 71 = 1.1.0 = -
jarvis/trunk/src/Plugin.php
r2772177 r2987497 352 352 sprintf( 353 353 'window.jarvis = new Jarvis(%s, %s);', 354 wp_json_encode( $this->get_options(), ( WP_DEBUG ? JSON_PRETTY_PRINT : null) ),355 wp_json_encode( $this->get_suggestions(), ( WP_DEBUG ? JSON_PRETTY_PRINT : null) )354 wp_json_encode( $this->get_options(), ( WP_DEBUG ? JSON_PRETTY_PRINT : 0 ) ), 355 wp_json_encode( $this->get_suggestions(), ( WP_DEBUG ? JSON_PRETTY_PRINT : 0 ) ) 356 356 ), 357 357 'after' -
jarvis/trunk/vendor/composer/installed.php
r2772177 r2987497 1 1 <?php return array( 2 2 'root' => array( 3 'pretty_version' => '1.1. 0',4 'version' => '1.1. 0.0',3 'pretty_version' => '1.1.1', 4 'version' => '1.1.1.0', 5 5 'type' => 'wordpress-plugin', 6 6 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'wdgdc/jarvis' => array( 14 'pretty_version' => '1.1. 0',15 'version' => '1.1. 0.0',14 'pretty_version' => '1.1.1', 15 'version' => '1.1.1.0', 16 16 'type' => 'wordpress-plugin', 17 17 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.