Version Description
Download this release
Release Info
Developer | barry.hughes |
Plugin | Image Widget |
Version | 4.4.5 |
Comparing to | |
See all releases |
Code changes from version 4.4.4 to 4.4.5
- image-widget.php +1 -1
- index.php +0 -0
- lang/image-widget.pot +0 -0
- lib/ImageWidgetDeprecated.php +0 -0
- lib/index.php +0 -0
- readme.txt +7 -3
- resources/css/admin.css +0 -0
- resources/index.php +0 -0
- resources/js/image-widget.deprecated.js +0 -0
- resources/js/image-widget.deprecated.upload-fixer.js +0 -0
- resources/js/image-widget.js +1 -1
- resources/js/index.php +0 -0
- views/index.php +0 -0
- views/widget-admin.deprecated.php +0 -0
- views/widget-admin.php +0 -0
- views/widget.php +0 -0
image-widget.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Image Widget
|
|
4 |
Plugin URI: http://wordpress.org/plugins/image-widget/
|
5 |
Description: A simple image widget that uses the native WordPress media manager to add image widgets to your site. <strong><a href="http://m.tri.be/19my">Image Widget Plus</a> - Multiple images, slider and more.</strong>
|
6 |
Author: Modern Tribe, Inc.
|
7 |
-
Version: 4.4.
|
8 |
Author URI: http://m.tri.be/iwpdoc
|
9 |
Text Domain: image-widget
|
10 |
Domain Path: /lang
|
4 |
Plugin URI: http://wordpress.org/plugins/image-widget/
|
5 |
Description: A simple image widget that uses the native WordPress media manager to add image widgets to your site. <strong><a href="http://m.tri.be/19my">Image Widget Plus</a> - Multiple images, slider and more.</strong>
|
6 |
Author: Modern Tribe, Inc.
|
7 |
+
Version: 4.4.5
|
8 |
Author URI: http://m.tri.be/iwpdoc
|
9 |
Text Domain: image-widget
|
10 |
Domain Path: /lang
|
index.php
CHANGED
File without changes
|
lang/image-widget.pot
CHANGED
File without changes
|
lib/ImageWidgetDeprecated.php
CHANGED
File without changes
|
lib/index.php
CHANGED
File without changes
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Image Widget ===
|
2 |
-
Contributors: ModernTribe,
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4BSPTNFFY6AL6
|
4 |
Tags: widget, image, ad, banner, simple, upload, sidebar, retina, admin, thickbox, resize, arabic, brazilian portuguese, dutch, german, hebrew, italian, japanese, polish, spanish, swedish, widget-only
|
5 |
Requires at least: 3.5
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 4.4.
|
8 |
|
9 |
A simple image widget that uses the native WordPress media manager to add image widgets to your site.
|
10 |
|
@@ -206,6 +206,10 @@ For more info on the philosophy here, check out our [blog post](http://tri.be/de
|
|
206 |
|
207 |
== Changelog ==
|
208 |
|
|
|
|
|
|
|
|
|
209 |
= [4.4.4] 2017-06-01 =
|
210 |
|
211 |
* Tweak - Improve upsell notices display logic [78676]
|
1 |
=== Image Widget ===
|
2 |
+
Contributors: ModernTribe, aguseo, borkweb, barry.hughes, bordoni, brianjessee, brook-tribe, cliffpaulick, courane01, faction23, GeoffBel, geoffgraham, ggwicz, jbrinley, leahkoerper, lucatume, mastromktg, mat-lipe, MZAWeb, neillmcshea, nicosantos, patriciahillebrandt, peterchester, reid.peifer, roblagatta, ryancurban, shane.pearlman, shelbelliott, tribecari, vicskf, zbtirrell
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4BSPTNFFY6AL6
|
4 |
Tags: widget, image, ad, banner, simple, upload, sidebar, retina, admin, thickbox, resize, arabic, brazilian portuguese, dutch, german, hebrew, italian, japanese, polish, spanish, swedish, widget-only
|
5 |
Requires at least: 3.5
|
6 |
+
Tested up to: 4.8
|
7 |
+
Stable tag: 4.4.5
|
8 |
|
9 |
A simple image widget that uses the native WordPress media manager to add image widgets to your site.
|
10 |
|
206 |
|
207 |
== Changelog ==
|
208 |
|
209 |
+
= [4.4.5] 2017-06-14 =
|
210 |
+
|
211 |
+
* Fix issue with image URLs in the widget admin interface [80659]
|
212 |
+
|
213 |
= [4.4.4] 2017-06-01 =
|
214 |
|
215 |
* Tweak - Improve upsell notices display logic [78676]
|
resources/css/admin.css
CHANGED
File without changes
|
resources/index.php
CHANGED
File without changes
|
resources/js/image-widget.deprecated.js
CHANGED
File without changes
|
resources/js/image-widget.deprecated.upload-fixer.js
CHANGED
File without changes
|
resources/js/image-widget.js
CHANGED
@@ -31,7 +31,7 @@ jQuery(document).ready(function($){
|
|
31 |
render : function( widget_id, widget_id_string, attachment ) {
|
32 |
|
33 |
var $attachment_id = $( document.getElementById( widget_id_string + 'attachment_id' ) );
|
34 |
-
var $image_url = $( document.getElementById( widget_id_string + '
|
35 |
|
36 |
$("#" + widget_id_string + 'preview').html(imageWidget.imgHTML( attachment ));
|
37 |
|
31 |
render : function( widget_id, widget_id_string, attachment ) {
|
32 |
|
33 |
var $attachment_id = $( document.getElementById( widget_id_string + 'attachment_id' ) );
|
34 |
+
var $image_url = $( document.getElementById( widget_id_string + 'imageurl' ) );
|
35 |
|
36 |
$("#" + widget_id_string + 'preview').html(imageWidget.imgHTML( attachment ));
|
37 |
|
resources/js/index.php
CHANGED
File without changes
|
views/index.php
CHANGED
File without changes
|
views/widget-admin.deprecated.php
CHANGED
File without changes
|
views/widget-admin.php
CHANGED
File without changes
|
views/widget.php
CHANGED
File without changes
|