Widget CSS Classes - Version 1.5.4.1

Version Description

  • Tested with WP 5.5.
  • Update plugin owner.
Download this release

Release Info

Developer keraweb
Plugin Icon 128x128 Widget CSS Classes
Version 1.5.4.1
Comparing to
See all releases

Code changes from version 1.5.4 to 1.5.4.1

README.md CHANGED
@@ -6,9 +6,9 @@ Add custom classes and ids plus first, last, even, odd, and numbered classes to
6
  [![WordPress Plugin WP tested version](https://img.shields.io/wordpress/v/widget-css-classes.svg?style=flat)](https://wordpress.org/plugins/widget-css-classes/)
7
  [![WordPress Plugin downloads](https://img.shields.io/wordpress/plugin/dt/widget-css-classes.svg?style=flat)](https://wordpress.org/plugins/widget-css-classes/)
8
  [![WordPress Plugin rating](https://img.shields.io/wordpress/plugin/r/widget-css-classes.svg?style=flat)](https://wordpress.org/plugins/widget-css-classes/)
9
- [![License](https://img.shields.io/badge/license-GPL--2.0%2B-green.svg)](https://github.com/cleverness/widget-css-classes/blob/master/license.txt)
10
- [![Travis](https://secure.travis-ci.org/cleverness/widget-css-classes.png?branch=master)](http://travis-ci.org/cleverness/widget-css-classes)
11
- [![Code Climate](https://codeclimate.com/github/cleverness/widget-css-classes/badges/gpa.svg)](https://codeclimate.com/github/cleverness/widget-css-classes)
12
 
13
  ### Widget CSS Classes gives you the ability to add custom classes and ids to your WordPress widgets
14
 
@@ -49,4 +49,4 @@ _Please note that this plugin doesn't enable you to enter custom CSS. You'll nee
49
 
50
  ## More info and documentation
51
 
52
- [See our wiki!](https://github.com/cleverness/widget-css-classes/wiki)
6
  [![WordPress Plugin WP tested version](https://img.shields.io/wordpress/v/widget-css-classes.svg?style=flat)](https://wordpress.org/plugins/widget-css-classes/)
7
  [![WordPress Plugin downloads](https://img.shields.io/wordpress/plugin/dt/widget-css-classes.svg?style=flat)](https://wordpress.org/plugins/widget-css-classes/)
8
  [![WordPress Plugin rating](https://img.shields.io/wordpress/plugin/r/widget-css-classes.svg?style=flat)](https://wordpress.org/plugins/widget-css-classes/)
9
+ [![License](https://img.shields.io/badge/license-GPL--2.0%2B-green.svg)](https://github.com/JoryHogeveen/widget-css-classes/blob/master/license.txt)
10
+ [![Travis](https://img.shields.io/travis/com/JoryHogeveen/widget-css-classes)](https://travis-ci.com/JoryHogeveen/widget-css-classes)
11
+ [![Code Climate](https://img.shields.io/codeclimate/maintainability/JoryHogeveen/widget-css-classes)](https://codeclimate.com/github/JoryHogeveen/widget-css-classes)
12
 
13
  ### Widget CSS Classes gives you the ability to add custom classes and ids to your WordPress widgets
14
 
49
 
50
  ## More info and documentation
51
 
52
+ [See our wiki!](https://github.com/JoryHogeveen/widget-css-classes/wiki)
css/widget-css-classes.css CHANGED
@@ -1,6 +1,7 @@
1
  /**
2
  * Widget CSS Classes
3
  *
 
4
  * @author C.M. Kendrick <cindy@cleverness.org>
5
  * @package widget-css-classes
6
  * @version 1.5.2.1
1
  /**
2
  * Widget CSS Classes
3
  *
4
+ * @author Jory Hogeveen <info@keraweb.nl>
5
  * @author C.M. Kendrick <cindy@cleverness.org>
6
  * @package widget-css-classes
7
  * @version 1.5.2.1
includes/widget-css-classes-library.class.php CHANGED
@@ -3,6 +3,7 @@
3
  * Widget CSS Classes Plugin Library
4
  *
5
  * Method library
 
6
  * @author C.M. Kendrick <cindy@cleverness.org>
7
  * @package widget-css-classes
8
  * @version 1.5.2.1
@@ -74,8 +75,8 @@ class WCSSC_Lib {
74
  echo $plugin_data['Title'] // @codingStandardsIgnoreLine >> no valid esc function.
75
  . ' | ' . esc_attr__( 'Version', WCSSC_Lib::DOMAIN ) . ' ' . esc_html( $plugin_data['Version'] )
76
  . ' | ' . $plugin_data['Author'] // @codingStandardsIgnoreLine >> no valid esc function.
77
- . ' | <a href="http://codebrainmedia.com">CodeBrain Media</a>'
78
- . ' | <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=cindy@cleverness.org">' . esc_attr__( 'Donate', self::DOMAIN ) . '</a>
79
  <br />';
80
  }
81
 
3
  * Widget CSS Classes Plugin Library
4
  *
5
  * Method library
6
+ * @author Jory Hogeveen <info@keraweb.nl>
7
  * @author C.M. Kendrick <cindy@cleverness.org>
8
  * @package widget-css-classes
9
  * @version 1.5.2.1
75
  echo $plugin_data['Title'] // @codingStandardsIgnoreLine >> no valid esc function.
76
  . ' | ' . esc_attr__( 'Version', WCSSC_Lib::DOMAIN ) . ' ' . esc_html( $plugin_data['Version'] )
77
  . ' | ' . $plugin_data['Author'] // @codingStandardsIgnoreLine >> no valid esc function.
78
+ . ' | <a href="https://www.keraweb.nl">Keraweb</a>'
79
+ . ' | <a href="https://www.keraweb.nl/donate.php?for=widget-css-classes">' . esc_attr__( 'Donate', self::DOMAIN ) . '</a>
80
  <br />';
81
  }
82
 
includes/widget-css-classes-loader.class.php CHANGED
@@ -3,6 +3,7 @@
3
  * Widget CSS Classes Plugin Loader.
4
  *
5
  * Loader
 
6
  * @author C.M. Kendrick <cindy@cleverness.org>
7
  * @package widget-css-classes
8
  * @version 1.5.2.1
3
  * Widget CSS Classes Plugin Loader.
4
  *
5
  * Loader
6
+ * @author Jory Hogeveen <info@keraweb.nl>
7
  * @author C.M. Kendrick <cindy@cleverness.org>
8
  * @package widget-css-classes
9
  * @version 1.5.2.1
includes/widget-css-classes-settings.class.php CHANGED
@@ -3,6 +3,7 @@
3
  * Widget CSS Classes Plugin Settings
4
  *
5
  * Settings
 
6
  * @author C.M. Kendrick <cindy@cleverness.org>
7
  * @package widget-css-classes
8
  * @version 1.5.3
3
  * Widget CSS Classes Plugin Settings
4
  *
5
  * Settings
6
+ * @author Jory Hogeveen <info@keraweb.nl>
7
  * @author C.M. Kendrick <cindy@cleverness.org>
8
  * @package widget-css-classes
9
  * @version 1.5.3
includes/widget-css-classes.class.php CHANGED
@@ -3,6 +3,7 @@
3
  * Widget CSS Classes Plugin Loader
4
  *
5
  * Loader
 
6
  * @author C.M. Kendrick <cindy@cleverness.org>
7
  * @package widget-css-classes
8
  * @version 1.5.4
3
  * Widget CSS Classes Plugin Loader
4
  *
5
  * Loader
6
+ * @author Jory Hogeveen <info@keraweb.nl>
7
  * @author C.M. Kendrick <cindy@cleverness.org>
8
  * @package widget-css-classes
9
  * @version 1.5.4
languages/widget-css-classes-es_ES.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "POT-Creation-Date: 2016-01-13 14:44+0100\n"
6
  "PO-Revision-Date: 2016-01-13 14:45+0100\n"
7
  "Last-Translator: jelena kovacevic <jecajeca260@gmail.com>\n"
8
- "Language-Team: <cindy@cleverness.org>\n"
9
  "Language: es_ES\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
5
  "POT-Creation-Date: 2016-01-13 14:44+0100\n"
6
  "PO-Revision-Date: 2016-01-13 14:45+0100\n"
7
  "Last-Translator: jelena kovacevic <jecajeca260@gmail.com>\n"
8
+ "Language-Team: <info@keraweb.nl>\n"
9
  "Language: es_ES\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
languages/widget-css-classes-sk_SK.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "POT-Creation-Date: 2016-01-13 14:38+0100\n"
6
  "PO-Revision-Date: 2016-01-13 14:40+0100\n"
7
  "Last-Translator: \n"
8
- "Language-Team: <cindy@cleverness.org>\n"
9
  "Language: sk_SK\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
5
  "POT-Creation-Date: 2016-01-13 14:38+0100\n"
6
  "PO-Revision-Date: 2016-01-13 14:40+0100\n"
7
  "Last-Translator: \n"
8
+ "Language-Team: <info@keraweb.nl>\n"
9
  "Language: sk_SK\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
languages/widget-css-classes-sr_RS.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "POT-Creation-Date: 2016-01-13 14:41+0100\n"
6
  "PO-Revision-Date: 2016-01-13 14:44+0100\n"
7
  "Last-Translator: Borisa Djuraskovic <borisad@webhostinghub.com>\n"
8
- "Language-Team: <cindy@cleverness.org>\n"
9
  "Language: sr_RS\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
5
  "POT-Creation-Date: 2016-01-13 14:41+0100\n"
6
  "PO-Revision-Date: 2016-01-13 14:44+0100\n"
7
  "Last-Translator: Borisa Djuraskovic <borisad@webhostinghub.com>\n"
8
+ "Language-Team: <info@keraweb.nl>\n"
9
  "Language: sr_RS\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
languages/widget-css-classes.pot CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "POT-Creation-Date: 2015-12-22 23:40+0100\n"
6
  "PO-Revision-Date: 2015-12-22 23:40+0100\n"
7
  "Last-Translator: C.M. Kendrick <cindy@cleverness.org>\n"
8
- "Language-Team: <cindy@cleverness.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
5
  "POT-Creation-Date: 2015-12-22 23:40+0100\n"
6
  "PO-Revision-Date: 2015-12-22 23:40+0100\n"
7
  "Last-Translator: C.M. Kendrick <cindy@cleverness.org>\n"
8
+ "Language-Team: <info@keraweb.nl>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
readme.txt CHANGED
@@ -1,15 +1,13 @@
1
  === Widget CSS Classes ===
2
- Contributors: elusivelight, keraweb
3
- Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=cindy@cleverness.org
4
- Author URI: http://cleverness.org
5
- Plugin URI: https://github.com/cleverness/widget-css-classes
6
  Tags: widgets, classes, css, widget classes, widget css
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
  Requires at least: 3.3
10
- Tested up to: 5.2
11
  Requires PHP: 5.2.4
12
- Stable tag: 1.5.4
13
 
14
  Add custom classes and ids plus first, last, even, odd, and numbered classes to your widgets.
15
 
@@ -42,7 +40,7 @@ __This plugin also adds additional classes to widgets to help you style them eas
42
  * Compatible with Widget Logic, Widget Context, and WP Page Widget plugins
43
  * Has filters and hooks for customizing output including class names
44
 
45
- [Plugin Website](https://github.com/cleverness/widget-css-classes/wiki)
46
 
47
  == Installation ==
48
 
@@ -85,7 +83,7 @@ You can export the Settings from __Settings > Widget CSS Classes > Import/Export
85
 
86
  = What should I do if I find a bug? =
87
 
88
- Please file a [bug report on GitHub](https://github.com/cleverness/widget-css-classes/issues/new).
89
 
90
  == Screenshots ==
91
 
@@ -96,6 +94,10 @@ Please file a [bug report on GitHub](https://github.com/cleverness/widget-css-cl
96
 
97
  == Changelog ==
98
 
 
 
 
 
99
  = 1.5.4 =
100
  * **Compatibility:** Fix for old single widgets (remove notice). [#37](https://github.com/cleverness/widget-css-classes/issues/37) (props @westonruter)
101
  * Tested with WP 5.2.
@@ -224,4 +226,4 @@ Detailed info: [PR on GitHub](https://github.com/cleverness/widget-css-classes/p
224
  - Swedish translation by [Olle Gustafsson](http://www.ollegustafsson.com/)
225
  - Fix ids notice by [Ricardo Lüders](http://www.luders.com.br/)
226
 
227
- [GitHub Contributors](https://github.com/cleverness/widget-css-classes/graphs/contributors)
1
  === Widget CSS Classes ===
2
+ Contributors: keraweb, elusivelight
3
+ Donate link: https://www.keraweb.nl/donate.php?for=widget-css-classes
 
 
4
  Tags: widgets, classes, css, widget classes, widget css
5
  License: GPLv2 or later
6
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  Requires at least: 3.3
8
+ Tested up to: 6.1
9
  Requires PHP: 5.2.4
10
+ Stable tag: 1.5.4.1
11
 
12
  Add custom classes and ids plus first, last, even, odd, and numbered classes to your widgets.
13
 
40
  * Compatible with Widget Logic, Widget Context, and WP Page Widget plugins
41
  * Has filters and hooks for customizing output including class names
42
 
43
+ [Plugin Website](https://github.com/JoryHogeveen/widget-css-classes/wiki)
44
 
45
  == Installation ==
46
 
83
 
84
  = What should I do if I find a bug? =
85
 
86
+ Please file a [bug report on GitHub](https://github.com/JoryHogeveen/widget-css-classes/issues/new).
87
 
88
  == Screenshots ==
89
 
94
 
95
  == Changelog ==
96
 
97
+ = 1.5.4.1 =
98
+ * Tested with WP 5.5.
99
+ * Update plugin owner.
100
+
101
  = 1.5.4 =
102
  * **Compatibility:** Fix for old single widgets (remove notice). [#37](https://github.com/cleverness/widget-css-classes/issues/37) (props @westonruter)
103
  * Tested with WP 5.2.
226
  - Swedish translation by [Olle Gustafsson](http://www.ollegustafsson.com/)
227
  - Fix ids notice by [Ricardo Lüders](http://www.luders.com.br/)
228
 
229
+ [GitHub Contributors](https://github.com/JoryHogeveen/widget-css-classes/graphs/contributors)
widget-css-classes.php CHANGED
@@ -1,11 +1,11 @@
1
  <?php
2
  /**
3
  * Plugin Name: Widget CSS Classes
4
- * Version: 1.5.4
5
  * Description: Add custom, first, last, even, odd, and numbered classes to your widgets.
6
- * Author: C.M. Kendrick
7
- * Author URI: http://cleverness.org
8
- * Plugin URI: http://cleverness.org/plugins/widget-css-classes
9
  * Text Domain: widget-css-classes
10
  */
11
 
1
  <?php
2
  /**
3
  * Plugin Name: Widget CSS Classes
4
+ * Version: 1.5.4.1
5
  * Description: Add custom, first, last, even, odd, and numbered classes to your widgets.
6
+ * Author: Jory Hogeveen
7
+ * Author URI: https://www.keraweb.nl
8
+ * Plugin URI: https://wordpress.org/plugins/widget-css-classes/
9
  * Text Domain: widget-css-classes
10
  */
11