Plugin Directory

Changeset 2216116


Ignore:
Timestamp:
12/21/2019 01:28:48 AM (6 years ago)
Author:
10quality
Message:

Updating to 1.0.6

Location:
social-feeder/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • social-feeder/trunk/README.txt

    r2206927 r2216116  
    66Requires PHP: 5.4
    77Tested up to: 5.3
    8 Stable tag: 1.0.5
     8Stable tag: 1.0.6
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    7272== Changelog ==
    7373
     74= 1.0.6 =
     75*Release Date - 20 December 2019*
     76
     77* Framework files updated.
     78
    7479= 1.0.5 =
    7580*Release Date - 5 December 2019*
  • social-feeder/trunk/app/Config/app.php

    r2206927 r2216116  
    2121    ],
    2222
    23     'version' => '1.0.5',
     23    'version' => '1.0.6',
    2424
    2525    'autoenqueue' => [
  • social-feeder/trunk/plugin.php

    r2206927 r2216116  
    44Plugin URI: https://www.10quality.com/product/social-feeder-pro/
    55Description: Social media feeds plugin. Includes [ Widget and Shortcode ] to integrate and display [ Facebook, Twitter and Instagram ] feed.
    6 Version: 1.0.5
     6Version: 1.0.6
    77Author: 10 Quality
    88Author URI: https://www.10quality.com/
  • social-feeder/trunk/vendor/10quality/wpmvc-core/src/psr4/Bridge.php

    r2206185 r2216116  
    2121 * @license MIT
    2222 * @package WPMVC
    23  * @version 3.1.5
     23 * @version 3.1.8
    2424 */
    2525abstract class Bridge implements Plugable
     
    268268    {
    269269        $this->mvc->view->show( $view, $params );
     270    }
     271
     272    /**
     273     * Returns view based on the parameters passed by.
     274     * @since 3.1.8
     275     *
     276     * @param string $view   Name and location of the view within "theme/views" path.
     277     * @param array  $params View parameters passed by.
     278     *
     279     * @return string
     280     */
     281    public function get_view( $view, $params = array() )
     282    {
     283        return $this->mvc->view->get( $view, $params );
    270284    }
    271285
     
    863877    {
    864878        for ( $i = count( $this->models )-1; $i >= 0; --$i ) {
    865             if ( $this->models[$i]->type === $type )
     879            if ( is_object( $this->models[$i] )
     880                && $this->models[$i]->type === $type
     881            )
    866882                add_post_type_support( $type, $this->models[$i]->registry_supports );
    867883        }
  • social-feeder/trunk/vendor/10quality/wpmvc-core/src/psr4/Contracts/Loggable.php

    r2097713 r2216116  
    1212 * @license MIT
    1313 * @package Amostajo\WPPluginCore
    14  * @version 1.0.0
     14 * @version 3.1.8
    1515 */
    1616interface Loggable
     
    4343     * @param array $values  Value(s) to debug.
    4444     */
    45     public static function debug( $message, $values = [] );
     45    public static function debug( $message, $values = null );
    4646
    4747    /**
  • social-feeder/trunk/vendor/10quality/wpmvc-core/src/psr4/Log.php

    r2206927 r2216116  
    1414 * @license MIT
    1515 * @package WPMVC
    16  * @version 3.1.7
     16 * @version 3.1.8
    1717 */
    1818class Log implements Loggable
     
    9393     * @param array $values  Value(s) to debug.
    9494     */
    95     public static function debug( $message, $values = [] )
     95    public static function debug( $message, $values = null )
    9696    {
    9797        $logger = self::instance();
    9898        if ( $logger ) {
    9999            $logger->debug(
    100                 $message,
    101                 is_array( $values )
    102                     ? $values
    103                     : ( is_object( $values )
    104                         ? (array)$values
    105                         : [ $values ]
     100                is_string( $message ) ? $message : 'value',
     101                $values === null && ! is_string( $message )
     102                    ? ( is_array( $message ) ? $message : [ $message ] )
     103                    : ( is_array( $values )
     104                        ? $values
     105                        : ( is_object( $values )
     106                            ? (array)$values
     107                            : [ $values ]
     108                        )
    106109                    )
    107110            );
  • social-feeder/trunk/vendor/composer/installed.json

    r2206927 r2216116  
    575575    {
    576576        "name": "10quality/wpmvc-core",
    577         "version": "v3.1.7",
    578         "version_normalized": "3.1.7.0",
     577        "version": "v3.1.8",
     578        "version_normalized": "3.1.8.0",
    579579        "source": {
    580580            "type": "git",
    581581            "url": "https://github.com/10quality/wpmvc-core.git",
    582             "reference": "9c7294d7d2d9ea4e85ed06737cdbce7e7d2e4adb"
    583         },
    584         "dist": {
    585             "type": "zip",
    586             "url": "https://api.github.com/repos/10quality/wpmvc-core/zipball/9c7294d7d2d9ea4e85ed06737cdbce7e7d2e4adb",
    587             "reference": "9c7294d7d2d9ea4e85ed06737cdbce7e7d2e4adb",
     582            "reference": "ea6981d478141087c5de83dcee55901156f1599c"
     583        },
     584        "dist": {
     585            "type": "zip",
     586            "url": "https://api.github.com/repos/10quality/wpmvc-core/zipball/ea6981d478141087c5de83dcee55901156f1599c",
     587            "reference": "ea6981d478141087c5de83dcee55901156f1599c",
    588588            "shasum": ""
    589589        },
     
    598598            "phpunit/phpunit": "7.5.*"
    599599        },
    600         "time": "2019-12-06T01:09:17+00:00",
     600        "time": "2019-12-14T01:30:41+00:00",
    601601        "type": "library",
    602602        "installation-source": "source",
Note: See TracChangeset for help on using the changeset viewer.