Skip to content

Commit

Permalink
Bumped to version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdharmesh committed Apr 16, 2018
1 parent 2d9138f commit 22d0b27
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 8 deletions.
14 changes: 13 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: featured image, url, image url, image, woocommerce, remote featured image,
Requires PHP: 5.3
Requires at least: 4.0
Tested up to: 4.9
Stable tag: 1.0.2
Stable tag: 1.1.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -45,6 +45,12 @@ Featured Image by URL allows to use an external URL Images as Featured Image for
3. Log into WordPress and navigate to the "Plugins" screen.
4. Locate "Featured Image by URL" in the list and click the "Activate" link.

== Frequently Asked Questions ==
= Is this plugin works for all themes? =

**Maybe Not.** Plugin is works fine with most of themes but as you know Featured image is depends on themes So, This plugin may not work for some highly customized themes which are using non-extensible functions like `wp_get_attachment_url`.
**Please feel free to create ticket [Here](https://wordpress.org/support/plugin/featured-image-by-url) if this plugin not working well for you. we would be happy to help you**

== Screenshots ==

1. Fill the URL field with External Image URL and Click Preview button
Expand All @@ -56,6 +62,12 @@ Featured Image by URL allows to use an external URL Images as Featured Image for

== Changelog ==

= 1.1.0 =
* ADDED: Featured image by URL for Product variation
* IMPROVEMENT: UI improvements in Product Gallery by URLs
* IMPROVEMENT: Some Improvements
* FIXED: some bug fixes.

= 1.0.2 =
* Added support for WooCommece v3.3.2 and above

Expand Down
8 changes: 4 additions & 4 deletions featured-image-by-url.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Featured Image by URL
* Plugin URI: https://wordpress.org/plugins/featured-image-by-url/
* Description: This plugin allows to use an external URL Images as Featured Image for your post types. Includes support for Product Gallery (WooCommece).
* Version: 1.0.2
* Version: 1.1.0
* Author: Knawat Team
* Author URI: https://github.com/Knawat
* License: GPL-2.0+
Expand Down Expand Up @@ -76,14 +76,14 @@ private function __construct() { /* Do nothing here */ }
*
* @since 1.0.0
*/
public function __clone() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'featured-image-by-url' ), '1.0.2' ); }
public function __clone() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'featured-image-by-url' ), '1.1.0' ); }

/**
* A dummy magic method to prevent Featured_Image_By_URL from being unserialized.
*
* @since 1.0.0
*/
public function __wakeup() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'featured-image-by-url' ), '1.0.2' ); }
public function __wakeup() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'featured-image-by-url' ), '1.1.0' ); }


/**
Expand All @@ -97,7 +97,7 @@ private function setup_constants() {

// Plugin version.
if( ! defined( 'KNAWATFIBU_VERSION' ) ){
define( 'KNAWATFIBU_VERSION', '1.0.2' );
define( 'KNAWATFIBU_VERSION', '1.1.0' );
}

// Plugin folder Path.
Expand Down
6 changes: 3 additions & 3 deletions languages/featured-image-by-url.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# This file is distributed under the same license as the Featured Image by URL package.
msgid ""
msgstr ""
"Project-Id-Version: Featured Image by URL 1.0.2\n"
"Project-Id-Version: Featured Image by URL 1.1.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/featured-image-by-"
"url\n"
"POT-Creation-Date: 2018-04-16 06:16:32+00:00\n"
"POT-Creation-Date: 2018-04-16 06:24:46+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Expand All @@ -17,7 +17,7 @@ msgstr ""
msgid "Cheatin’ huh?"
msgstr ""

#. #-#-#-#-# featured-image-by-url.pot (Featured Image by URL 1.0.2) #-#-#-#-#
#. #-#-#-#-# featured-image-by-url.pot (Featured Image by URL 1.1.0) #-#-#-#-#
#. Plugin Name of the plugin/theme
#: includes/class-featured-image-by-url-admin.php:58
#: includes/class-featured-image-by-url-admin.php:275
Expand Down

0 comments on commit 22d0b27

Please sign in to comment.