Plugin Directory

Changeset 1975028


Ignore:
Timestamp:
11/15/2018 04:17:46 PM (7 years ago)
Author:
robmcvey
Message:

Squashed commit of the following:

commit dbc1ae481fa2133e5f6296616fe034430cc6bd7b
Author: Rob McVey <robmcvey@…>
Date: Thu Nov 15 16:11:41 2018 +0000

Version update

commit 95d7bb01f9059be9c06d19df3388c38c22cedf4a
Author: Rob McVey <robmcvey@…>
Date: Thu Nov 15 15:46:42 2018 +0000

Improve error messages

commit 211a43cd9cf3e0d7dd61e81eb8b9b53e352821f7
Author: robmcvey <robmcvey@b8457f37-d9ea-0310-8a92-e5e31aec5664>
Date: Thu Sep 21 08:39:23 2017 +0000

Squashed commit of the following:

commit 2135e0ed46dbdf34d93bb5ea15be00ae612d2118
Author: Rob McVey <robmcvey@…>
Date: Wed Sep 20 15:11:52 2017 +0100

Version 1.2.3 Set Featured image when creating draft

When moving a non-auto published post to drafts, the featured image should be set if it is available

git-svn-id: https://plugins.svn.wordpress.org/copify/trunk@1733528 b8457f37-d9ea-0310-8a92-e5e31aec5664

Location:
copify/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • copify/trunk/Lib/CopifyWordpress.php

    r1733528 r1975028  
    1212 * Plugin version
    1313 */
    14     protected $version = '1.2.3';
     14    protected $version = '1.2.4';
    1515
    1616/**
     
    802802            $expectedToken = sha1($CopifyLoginDetails['CopifyEmail'] . $CopifyLoginDetails['CopifyApiKey']);
    803803            if ($expectedToken != $token) {
    804                 throw new Exception('Permission denied', 403);
     804                throw new Exception('Permission denied: API Key is not set correctly.', 403);
    805805            }
    806806            // Version check only
  • copify/trunk/Test/Lib/CopifyWordpressTest.php

    r1733528 r1975028  
    6464        $this->CopifyWordpress->expects($this->once())
    6565            ->method('outputJson')
    66             ->with(array('message' => 'Permission denied'));
     66            ->with(array('message' => 'Permission denied: API Key is not set correctly.'));
    6767        $this->CopifyWordpress->expects($this->once())
    6868            ->method('setheader')
     
    305305        $this->CopifyWordpress = $this->getMock('CopifyWordpress', array('wordpress', 'outputJson', 'setheader'));
    306306        $version = $this->CopifyWordpress->getVersion();
    307         $this->assertEquals('1.2.3', $version);
     307        $this->assertEquals('1.2.4', $version);
    308308        $mockVal = array(
    309309            'CopifyEmail' => 'foo@bar.com',
  • copify/trunk/copify.php

    r1733528 r1975028  
    44Plugin URI: https://github.com/copify/copify-wordpress
    55Description: Automatically publish unique, relevant content every week from Copify's team of professional writers.
    6 Version: 1.2.3
     6Version: 1.2.4
    77Author: Rob McVey
    88Author URI: http://uk.copify.com/
  • copify/trunk/readme.txt

    r1733528 r1975028  
    11=== Copify ===
    22
    3 Version: 1.2.3
     3Version: 1.2.4
    44Contributors: robmcvey
    55Tags: blog writers, automatic blogging, post writers, auto blogging, content, copywriting, copywriters, blogging, writers, writing, seo
    66Requires at least: 3.2.0
    7 Tested up to: 4.7.0
     7Tested up to: 5.0.0
    88Stable tag: trunk
    99Github Stable tag: master
     
    3939
    4040== Changelog ==
     41
     42= 1.2.4 =
     43* More verbose errors
     44* Tested up to WordPress 5.0
    4145
    4246= 1.2.3 =
Note: See TracChangeset for help on using the changeset viewer.