Plugin Directory

Changeset 1839454


Ignore:
Timestamp:
03/13/2018 03:31:41 PM (8 years ago)
Author:
ClearcodeHQ
Message:

Version 1.0.1

Location:
cc-deploy
Files:
69 added
12 edited

Legend:

Unmodified
Added
Removed
  • cc-deploy/trunk/README.txt

    r1745357 r1839454  
    33Tags: git, deploy, repository, deployment, github, bitbucket, stash, clearcode, piotrpress
    44Requires at least: 4.8.2
    5 Tested up to: 4.8.2
     5Tested up to: 4.9.4
    66Stable tag: trunk
    77License: GPLv3
     
    5454== Changelog ==
    5555
     56= 1.0.1 =
     57*Release date: 13.03.2018*
     58
     59* Fixed: Compatibility with WooCommerce.
     60
    5661= 1.0.0 =
    5762*Release date: 10.10.2017*
  • cc-deploy/trunk/includes/db.php

    r1745357 r1839454  
    22
    33/*
    4     Copyright (C) 2017 by Clearcode <https://clearcode.cc>
     4    Copyright (C) 2018 by Clearcode <https://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
  • cc-deploy/trunk/includes/deploy.php

    r1745357 r1839454  
    22
    33/*
    4     Copyright (C) 2017 by Clearcode <https://clearcode.cc>
     4    Copyright (C) 2018 by Clearcode <https://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
  • cc-deploy/trunk/includes/mail.php

    r1745357 r1839454  
    22
    33/*
    4     Copyright (C) 2017 by Clearcode <https://clearcode.cc>
     4    Copyright (C) 2018 by Clearcode <https://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
  • cc-deploy/trunk/includes/rest.php

    r1745357 r1839454  
    22
    33/*
    4     Copyright (C) 2017 by Clearcode <https://clearcode.cc>
     4    Copyright (C) 2018 by Clearcode <https://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
  • cc-deploy/trunk/includes/settings.php

    r1745357 r1839454  
    22
    33/*
    4     Copyright (C) 2017 by Clearcode <https://clearcode.cc>
     4    Copyright (C) 2018 by Clearcode <https://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
  • cc-deploy/trunk/includes/table.php

    r1745357 r1839454  
    22
    33/*
    4     Copyright (C) 2017 by Clearcode <https://clearcode.cc>
     4    Copyright (C) 2018 by Clearcode <https://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
  • cc-deploy/trunk/plugin.php

    r1745357 r1839454  
    22
    33/**
    4  * Plugin Name
     4 * CC-Deploy
    55 *
    66 * @package     CC-Deploy
    77 * @author      PiotrPress
    8  * @copyright   2017 Clearcode
     8 * @copyright   2018 Clearcode
    99 * @license     GPL-3.0+
    1010 *
     
    1313 * Plugin URI:  https://wordpress.org/plugins/cc-deploy
    1414 * Description: This plugin allows you to deploy your WordPress site source code from git repository using webhooks.
    15  * Version:     1.0.0
     15 * Version:     1.0.1
    1616 * Author:      Clearcode
    1717 * Author URI:  https://clearcode.cc
     
    2121 * License URI: http://www.gnu.org/licenses/gpl-3.0.txt
    2222
    23    Copyright (C) 2017 by Clearcode <https://clearcode.cc>
     23   Copyright (C) 2018 by Clearcode <https://clearcode.cc>
    2424   and associates (see AUTHORS.txt file).
    2525
  • cc-deploy/trunk/uninstall.php

    r1745357 r1839454  
    22
    33/*
    4     Copyright (C) 2017 by Clearcode <https://clearcode.cc>
     4    Copyright (C) 2018 by Clearcode <https://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
  • cc-deploy/trunk/vendor/clearcode/wordpress-framework/src/v1/Filterer.php

    r1745357 r1839454  
    22
    33/*
    4     Copyright (C) 2017 by Clearcode <https://clearcode.cc>
     4    Copyright (C) 2018 by Clearcode <https://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
  • cc-deploy/trunk/vendor/clearcode/wordpress-framework/src/v1/Plugin.php

    r1745357 r1839454  
    22
    33/*
    4     Copyright (C) 2017 by Clearcode <https://clearcode.cc>
     4    Copyright (C) 2018 by Clearcode <https://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
     
    8484            foreach( $data as $key => $value ) {
    8585                $key = strtolower( $key );
    86                 static::$$key = $value;
     86                if ( isset( static::$$key ) ) static::$$key = $value;
    8787            }
    8888        }
  • cc-deploy/trunk/vendor/clearcode/wordpress-framework/src/v1/Singleton.php

    r1745357 r1839454  
    22
    33/*
    4     Copyright (C) 2017 by Clearcode <https://clearcode.cc>
     4    Copyright (C) 2018 by Clearcode <https://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
Note: See TracChangeset for help on using the changeset viewer.