Plugin Directory

Changeset 2987497


Ignore:
Timestamp:
11/01/2023 03:41:03 PM (2 years ago)
Author:
kshaner
Message:

version 1.1.1

Location:
jarvis/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • jarvis/trunk/composer.json

    r2772177 r2987497  
    22    "name": "wdgdc/jarvis",
    33    "type": "wordpress-plugin",
    4     "version": "1.1.0",
     4    "version": "1.1.1",
    55    "license": "MIT",
    66    "autoload": {
  • jarvis/trunk/dist/js/jarvis.js

    r2772177 r2987497  
    11/**
    22 * jarvis -  Jarvis is your admin assistant, putting WordPress at your fingertips via a quicksearch interface.
    3  * @version v1.1.0
     3 * @version v1.1.1
    44 * @link https://github.com/wdgdc/jarvis#readme
    55 * @license MIT
  • jarvis/trunk/jarvis.php

    r2772169 r2987497  
    44Plugin URI: http://www.wpjarvis.com
    55Description: Jarvis is your administration assistant, putting WordPress at your fingertips.
    6 Version: 1.1.0
     6Version: 1.1.1
    77Author: The Web Development Group, David Everett, Joan Piedra, Kurtis Shaner, Doug Axelrod
    88Author URI: http://www.wdg.co
     
    1717define( 'JARVIS_PATH', __DIR__ );
    1818define( 'JARVIS_URI', plugins_url( '', __FILE__ ) );
    19 define( 'JARVIS_VERSION', '1.1.0' );
     19define( 'JARVIS_VERSION', '1.1.1' );
    2020
    2121Plugin::get_instance();
  • jarvis/trunk/readme.txt

    r2772169 r2987497  
    88Requires at least: 4.8
    99Tested up to: 6.0.1
    10 Stable tag: 1.1.0
    11 Version: 1.1.0
     10Stable tag: 1.1.1
     11Version: 1.1.1
    1212License: MIT
    1313License URI: https://opensource.org/licenses/mit-license.php
     
    6565
    6666== Changelog ==
     67
     68= 1.1.1 =
     69* Fix PHP 8.1 compatibility
    6770
    6871= 1.1.0 =
  • jarvis/trunk/src/Plugin.php

    r2772177 r2987497  
    352352            sprintf(
    353353                '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 ) )
    356356            ),
    357357            'after'
  • jarvis/trunk/vendor/composer/installed.php

    r2772177 r2987497  
    11<?php return array(
    22    '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',
    55        'type' => 'wordpress-plugin',
    66        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        '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',
    1616            'type' => 'wordpress-plugin',
    1717            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.