Version Description
- 2018-11-07
- Revert previous jQuery bugfix (incompatible with IE 11).
- Slightly bigger icons for BBcode menu.
Download this release
Release Info
Developer | mpol |
Plugin | Gwolle Guestbook |
Version | 2.6.7 |
Comparing to | |
See all releases |
Code changes from version 2.6.6 to 2.6.7
- frontend/js/gwolle-gb-frontend.js +3 -6
- frontend/markitup/images/bold.png +0 -0
- frontend/markitup/images/clean.png +0 -0
- frontend/markitup/images/emoji.png +0 -0
- frontend/markitup/images/image.png +0 -0
- frontend/markitup/images/italic.png +0 -0
- frontend/markitup/images/link.png +0 -0
- frontend/markitup/images/list-bullet.png +0 -0
- frontend/markitup/images/list-numeric.png +0 -0
- frontend/markitup/images/picture.png +0 -0
- frontend/markitup/style.css +6 -6
- gwolle-gb.php +2 -2
- readme.txt +6 -1
frontend/js/gwolle-gb-frontend.js
CHANGED
@@ -211,19 +211,16 @@ jQuery(document).ready(function($) {
|
|
211 |
if ( id == 'gwolle_gb_privacy' ) {
|
212 |
var checked = jQuery('.gwolle_gb_form_ajax input#gwolle_gb_privacy').prop('checked');
|
213 |
if ( checked == true ) {
|
214 |
-
|
215 |
-
jQuery.extend( gwolle_gb_ajax_data, gwolle_gb_ajax_data2);
|
216 |
}
|
217 |
} else {
|
218 |
-
|
219 |
-
jQuery.extend( gwolle_gb_ajax_data, gwolle_gb_ajax_data2);
|
220 |
}
|
221 |
});
|
222 |
jQuery('.gwolle_gb_form_ajax textarea').each(function( index, value ) {
|
223 |
var val = jQuery( this ).val();
|
224 |
var id = jQuery( this ).attr('id');
|
225 |
-
|
226 |
-
jQuery.extend( gwolle_gb_ajax_data, gwolle_gb_ajax_data2);
|
227 |
});
|
228 |
|
229 |
jQuery.post( gwolle_gb_frontend_script.ajax_url, gwolle_gb_ajax_data, function( response ) {
|
211 |
if ( id == 'gwolle_gb_privacy' ) {
|
212 |
var checked = jQuery('.gwolle_gb_form_ajax input#gwolle_gb_privacy').prop('checked');
|
213 |
if ( checked == true ) {
|
214 |
+
gwolle_gb_ajax_data[id] = 'on';
|
|
|
215 |
}
|
216 |
} else {
|
217 |
+
gwolle_gb_ajax_data[id] = val;
|
|
|
218 |
}
|
219 |
});
|
220 |
jQuery('.gwolle_gb_form_ajax textarea').each(function( index, value ) {
|
221 |
var val = jQuery( this ).val();
|
222 |
var id = jQuery( this ).attr('id');
|
223 |
+
gwolle_gb_ajax_data[id] = val;
|
|
|
224 |
});
|
225 |
|
226 |
jQuery.post( gwolle_gb_frontend_script.ajax_url, gwolle_gb_ajax_data, function( response ) {
|
frontend/markitup/images/bold.png
CHANGED
Binary file
|
frontend/markitup/images/clean.png
CHANGED
Binary file
|
frontend/markitup/images/emoji.png
CHANGED
Binary file
|
frontend/markitup/images/image.png
DELETED
Binary file
|
frontend/markitup/images/italic.png
CHANGED
Binary file
|
frontend/markitup/images/link.png
CHANGED
Binary file
|
frontend/markitup/images/list-bullet.png
CHANGED
Binary file
|
frontend/markitup/images/list-numeric.png
CHANGED
Binary file
|
frontend/markitup/images/picture.png
CHANGED
Binary file
|
frontend/markitup/style.css
CHANGED
@@ -64,9 +64,9 @@
|
|
64 |
margin-right:0px;
|
65 |
}
|
66 |
.markItUpHeader ul .markItUpSeparator {
|
67 |
-
margin:0
|
68 |
-
width:1px;
|
69 |
-
height:
|
70 |
overflow:hidden;
|
71 |
background-color:#CCC;
|
72 |
}
|
@@ -100,10 +100,10 @@
|
|
100 |
}
|
101 |
#gwolle_gb .markItUpHeader ul a,
|
102 |
.gwolle_gb .markItUpHeader ul a {
|
103 |
-
display:block;
|
104 |
box-sizing: content-box;
|
105 |
-
width:
|
106 |
-
height:
|
107 |
text-indent:-10000px;
|
108 |
background-repeat:no-repeat;
|
109 |
padding: 3px 3px 1px 3px;
|
64 |
margin-right:0px;
|
65 |
}
|
66 |
.markItUpHeader ul .markItUpSeparator {
|
67 |
+
margin:0 8px;
|
68 |
+
width: 1px;
|
69 |
+
height: 20px;
|
70 |
overflow:hidden;
|
71 |
background-color:#CCC;
|
72 |
}
|
100 |
}
|
101 |
#gwolle_gb .markItUpHeader ul a,
|
102 |
.gwolle_gb .markItUpHeader ul a {
|
103 |
+
display: block;
|
104 |
box-sizing: content-box;
|
105 |
+
width: 20px;
|
106 |
+
height: 20px;
|
107 |
text-indent:-10000px;
|
108 |
background-repeat:no-repeat;
|
109 |
padding: 3px 3px 1px 3px;
|
gwolle-gb.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Gwolle Guestbook
|
4 |
Plugin URI: http://zenoweb.nl
|
5 |
Description: Gwolle Guestbook is not just another guestbook for WordPress. The goal is to provide an easy and slim way to integrate a guestbook into your WordPress powered site. Don't use your 'comment' section the wrong way - install Gwolle Guestbook and have a real guestbook.
|
6 |
-
Version: 2.6.
|
7 |
Author: Marcel Pol
|
8 |
Author URI: http://zenoweb.nl
|
9 |
License: GPLv2 or later
|
@@ -32,7 +32,7 @@ Domain Path: /lang/
|
|
32 |
|
33 |
|
34 |
// Plugin Version
|
35 |
-
define('GWOLLE_GB_VER', '2.6.
|
36 |
|
37 |
|
38 |
/*
|
3 |
Plugin Name: Gwolle Guestbook
|
4 |
Plugin URI: http://zenoweb.nl
|
5 |
Description: Gwolle Guestbook is not just another guestbook for WordPress. The goal is to provide an easy and slim way to integrate a guestbook into your WordPress powered site. Don't use your 'comment' section the wrong way - install Gwolle Guestbook and have a real guestbook.
|
6 |
+
Version: 2.6.7
|
7 |
Author: Marcel Pol
|
8 |
Author URI: http://zenoweb.nl
|
9 |
License: GPLv2 or later
|
32 |
|
33 |
|
34 |
// Plugin Version
|
35 |
+
define('GWOLLE_GB_VER', '2.6.7');
|
36 |
|
37 |
|
38 |
/*
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: Gwolle, mpol
|
|
3 |
Tags: guestbook, guest book, livre d'or, Gästebuch, review
|
4 |
Requires at least: 3.7
|
5 |
Tested up to: 4.9
|
6 |
-
Stable tag: 2.6.
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
Gwolle Guestbook is the WordPress guestbook you've just been looking for. Beautiful and easy.
|
@@ -416,6 +416,11 @@ But if you don't use standard comments, you can just as easily use the comment s
|
|
416 |
|
417 |
== Changelog ==
|
418 |
|
|
|
|
|
|
|
|
|
|
|
419 |
= 2.6.6 =
|
420 |
* 2018-10-30
|
421 |
* Only load admin files on wp-admin.
|
3 |
Tags: guestbook, guest book, livre d'or, Gästebuch, review
|
4 |
Requires at least: 3.7
|
5 |
Tested up to: 4.9
|
6 |
+
Stable tag: 2.6.7
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
Gwolle Guestbook is the WordPress guestbook you've just been looking for. Beautiful and easy.
|
416 |
|
417 |
== Changelog ==
|
418 |
|
419 |
+
= 2.6.7 =
|
420 |
+
* 2018-11-07
|
421 |
+
* Revert previous jQuery bugfix (incompatible with IE 11).
|
422 |
+
* Slightly bigger icons for BBcode menu.
|
423 |
+
|
424 |
= 2.6.6 =
|
425 |
* 2018-10-30
|
426 |
* Only load admin files on wp-admin.
|