Skip to content

Commit

Permalink
1.9.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
n7studios committed Aug 4, 2022
1 parent a7fd53d commit 487b9c6
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
14 changes: 11 additions & 3 deletions languages/convertkit.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# This file is distributed under the same license as the ConvertKit plugin.
msgid ""
msgstr ""
"Project-Id-Version: ConvertKit 1.9.8.1\n"
"Project-Id-Version: ConvertKit 1.9.8.2\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/convertkit-github\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2022-07-18T14:29:33+00:00\n"
"POT-Creation-Date: 2022-08-04T13:25:30+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.6.0\n"
"X-Domain: convertkit\n"
Expand Down Expand Up @@ -572,10 +572,18 @@ msgid "API request method %s is not supported in ConvertKit_API class."
msgstr ""

#: lib/class-convertkit-api.php:163
msgid "Rate limit hit."
msgid "ConvertKit API Error: Rate limit hit."
msgstr ""

#: lib/class-convertkit-api.php:164
msgid "ConvertKit API Error: Internal server error."
msgstr ""

#: lib/class-convertkit-api.php:165
msgid "ConvertKit API Error: Bad gateway."
msgstr ""

#: lib/class-convertkit-api.php:167
msgid "The response from the API is not of the expected type array."
msgstr ""

Expand Down
4 changes: 4 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ Full Plugin documentation can be found [here](https://help.convertkit.com/en/art

== Changelog ==

### 1.9.8.2 2022-08-04
* Fix: API: Show error notification when API returns HTTP 500 and 502 errors, instead of showing PHP warnings
* Fix: Bulk and Quick Edit: `for` label attribute now matches the field ID

### 1.9.8.1 2022-07-18
* Added: Refresh button for Form, Landing Page and Tag fields to fetch latest data from ConvertKit account
* Fix: Bulk Edit: Don't display fields when no Pages / Posts exist
Expand Down
4 changes: 2 additions & 2 deletions wp-convertkit.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Plugin Name: ConvertKit
* Plugin URI: https://convertkit.com/
* Description: Quickly and easily integrate ConvertKit forms into your site.
* Version: 1.9.8.1
* Version: 1.9.8.2
* Author: ConvertKit
* Author URI: https://convertkit.com/
* Text Domain: convertkit
Expand All @@ -25,7 +25,7 @@
define( 'CONVERTKIT_PLUGIN_FILE', plugin_basename( __FILE__ ) );
define( 'CONVERTKIT_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'CONVERTKIT_PLUGIN_PATH', __DIR__ );
define( 'CONVERTKIT_PLUGIN_VERSION', '1.9.8.1' );
define( 'CONVERTKIT_PLUGIN_VERSION', '1.9.8.2' );

// Load shared classes, if they have not been included by another ConvertKit Plugin.
if ( ! class_exists( 'ConvertKit_API' ) ) {
Expand Down

0 comments on commit 487b9c6

Please sign in to comment.