Plugin Directory

Changeset 2772169


Ignore:
Timestamp:
08/18/2022 03:40:45 PM (4 years ago)
Author:
kshaner
Message:

Tagging 1.1.0

Location:
jarvis
Files:
4 deleted
3 edited
2 copied

Legend:

Unmodified
Added
Removed
  • jarvis/tags/1.1.0/jarvis.php

    r2360401 r2772169  
    44Plugin URI: http://www.wpjarvis.com
    55Description: Jarvis is your administration assistant, putting WordPress at your fingertips.
    6 Version: 1.0.6
     6Version: 1.1.0
    77Author: The Web Development Group, David Everett, Joan Piedra, Kurtis Shaner, Doug Axelrod
    88Author URI: http://www.wdg.co
     
    1313namespace Jarvis;
    1414
     15require_once __DIR__ . '/vendor/autoload.php';
     16
    1517define( 'JARVIS_PATH', __DIR__ );
    1618define( 'JARVIS_URI', plugins_url( '', __FILE__ ) );
    17 
    18 require_once 'src/php/plugin.php';
     19define( 'JARVIS_VERSION', '1.1.0' );
    1920
    2021Plugin::get_instance();
  • jarvis/tags/1.1.0/readme.txt

    r2771743 r2772169  
    88Requires at least: 4.8
    99Tested up to: 6.0.1
    10 Stable tag: 1.0.6
    11 Version: 1.0.6
    12 License: GPLv2 or later
    13 License URI: http://www.gnu.org/licenses/gpl-2.0.html
     10Stable tag: 1.1.0
     11Version: 1.1.0
     12License: MIT
     13License URI: https://opensource.org/licenses/mit-license.php
    1414Donate link: http://www.webdevelopmentgroup.com
    1515
     
    6565
    6666== Changelog ==
     67
     68= 1.1.0 =
     69* Drop IE11 support
     70* Add Modern and Dracula color schemes
     71* Refactor themes to use CSS variables
     72* Refactor the build process from a gulp build to es modules with rollup and bundle typeahead/bloodhound dependencies
     73* Introduce composer for autoloading and build scripts
     74* Introduce phpcs with WP Coding Standards
    6775
    6876= 1.0.6 =
  • jarvis/trunk/jarvis.php

    r2360401 r2772169  
    44Plugin URI: http://www.wpjarvis.com
    55Description: Jarvis is your administration assistant, putting WordPress at your fingertips.
    6 Version: 1.0.6
     6Version: 1.1.0
    77Author: The Web Development Group, David Everett, Joan Piedra, Kurtis Shaner, Doug Axelrod
    88Author URI: http://www.wdg.co
     
    1313namespace Jarvis;
    1414
     15require_once __DIR__ . '/vendor/autoload.php';
     16
    1517define( 'JARVIS_PATH', __DIR__ );
    1618define( 'JARVIS_URI', plugins_url( '', __FILE__ ) );
    17 
    18 require_once 'src/php/plugin.php';
     19define( 'JARVIS_VERSION', '1.1.0' );
    1920
    2021Plugin::get_instance();
  • jarvis/trunk/readme.txt

    r2771743 r2772169  
    88Requires at least: 4.8
    99Tested up to: 6.0.1
    10 Stable tag: 1.0.6
    11 Version: 1.0.6
    12 License: GPLv2 or later
    13 License URI: http://www.gnu.org/licenses/gpl-2.0.html
     10Stable tag: 1.1.0
     11Version: 1.1.0
     12License: MIT
     13License URI: https://opensource.org/licenses/mit-license.php
    1414Donate link: http://www.webdevelopmentgroup.com
    1515
     
    6565
    6666== Changelog ==
     67
     68= 1.1.0 =
     69* Drop IE11 support
     70* Add Modern and Dracula color schemes
     71* Refactor themes to use CSS variables
     72* Refactor the build process from a gulp build to es modules with rollup and bundle typeahead/bloodhound dependencies
     73* Introduce composer for autoloading and build scripts
     74* Introduce phpcs with WP Coding Standards
    6775
    6876= 1.0.6 =
Note: See TracChangeset for help on using the changeset viewer.