Version Description
- Cleaned up trunk, tags and readme.txt to show correct changelog and update notice.
Download this release
Release Info
Developer | Benbodhi |
Plugin | SVG Support |
Version | 2.1.2 |
Comparing to | |
See all releases |
Code changes from version 2.1.1 to 2.1.2
- readme.txt +13 -6
- svg-support.php +2 -2
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: svg, vector, css, style, mime, mime type, embed, img, inline
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 3.9.1
|
7 |
-
Stable tag: 2.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -106,9 +106,13 @@ I will put the answers to any questions asked here.
|
|
106 |
|
107 |
== Changelog ==
|
108 |
|
|
|
|
|
|
|
|
|
109 |
= 2.1.1 =
|
110 |
|
111 |
-
* Fixed JS file conditional - worked in local testing but not live
|
112 |
|
113 |
= 2.1 =
|
114 |
|
@@ -116,7 +120,7 @@ I will put the answers to any questions asked here.
|
|
116 |
|
117 |
= 2.0 =
|
118 |
|
119 |
-
*
|
120 |
* Whole plugin completely re-written and re-structured.
|
121 |
* Added option to restrict SVG uploads to administrators only.
|
122 |
* Added field for custom CSS target class.
|
@@ -128,6 +132,10 @@ I will put the answers to any questions asked here.
|
|
128 |
|
129 |
== Upgrade Notice ==
|
130 |
|
|
|
|
|
|
|
|
|
131 |
= 2.1.1 =
|
132 |
|
133 |
* Update to conditional in JS file
|
@@ -155,9 +163,8 @@ I will put the answers to any questions asked here.
|
|
155 |
**Idea Behind / Philosophy:** I needed an easy way to include SVG support in sites instead of having to copy and paste the code for each one. I found a [really cool snippet](http://stackoverflow.com/questions/11978995/how-to-change-color-of-svg-image-using-css-jquery-svg-image-replacement) of jQuery written by Drew Baker a while ago and have used it (modified for WordPress) a few times until I was inspired to build it all into a plugin for ease of use and to share with others. Now styling SVG elements is super easy :)
|
156 |
|
157 |
== Future Features ==
|
158 |
-
*
|
159 |
-
*
|
160 |
-
* Option to choose specific user ID's and restrict usage for everyone else (helpful if you have multiple administrators)
|
161 |
|
162 |
Again, feel free to [shoot me suggestions](mailto:wp@benbodhi.com)
|
163 |
|
4 |
Tags: svg, vector, css, style, mime, mime type, embed, img, inline
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 3.9.1
|
7 |
+
Stable tag: 2.1.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
106 |
|
107 |
== Changelog ==
|
108 |
|
109 |
+
= 2.1.2 =
|
110 |
+
|
111 |
+
* Cleaned up trunk, tags and readme.txt to show correct changelog and update notice.
|
112 |
+
|
113 |
= 2.1.1 =
|
114 |
|
115 |
+
* Fixed JS file conditional - worked in local testing but not live.
|
116 |
|
117 |
= 2.1 =
|
118 |
|
120 |
|
121 |
= 2.0 =
|
122 |
|
123 |
+
* Added an admin settings page with instructions plus options for restricting to admin use only and setting a custom CSS target class.
|
124 |
* Whole plugin completely re-written and re-structured.
|
125 |
* Added option to restrict SVG uploads to administrators only.
|
126 |
* Added field for custom CSS target class.
|
132 |
|
133 |
== Upgrade Notice ==
|
134 |
|
135 |
+
= 2.1.2 =
|
136 |
+
|
137 |
+
* Alittle bit of house cleaning, updates to changelog and readme.txt for correct output with current version.
|
138 |
+
|
139 |
= 2.1.1 =
|
140 |
|
141 |
* Update to conditional in JS file
|
163 |
**Idea Behind / Philosophy:** I needed an easy way to include SVG support in sites instead of having to copy and paste the code for each one. I found a [really cool snippet](http://stackoverflow.com/questions/11978995/how-to-change-color-of-svg-image-using-css-jquery-svg-image-replacement) of jQuery written by Drew Baker a while ago and have used it (modified for WordPress) a few times until I was inspired to build it all into a plugin for ease of use and to share with others. Now styling SVG elements is super easy :)
|
164 |
|
165 |
== Future Features ==
|
166 |
+
* Option to choose which user ID can access the settings
|
167 |
+
* Option to choose specific user ID's for usage restriction (both helpful if you have multiple administrators)
|
|
|
168 |
|
169 |
Again, feel free to [shoot me suggestions](mailto:wp@benbodhi.com)
|
170 |
|
svg-support.php
CHANGED
@@ -8,7 +8,7 @@ Author URI: http://benbodhi.com
|
|
8 |
Text Domain: svgsupport
|
9 |
Domain Path: /languages
|
10 |
License: GPL2
|
11 |
-
Version: 2.1.
|
12 |
*/
|
13 |
/* Copyright 2013 Benbodhi (email : wp@benbodhi.com)
|
14 |
|
@@ -29,7 +29,7 @@ Version: 2.1.1
|
|
29 |
/********************************************
|
30 |
* GLOBAL VARIABLES
|
31 |
********************************************/
|
32 |
-
$plugin_version = '2.1.
|
33 |
define( 'BODHI_SVGS_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); // define the absolute plugin path for includes
|
34 |
$bodhi_svgs_options = get_option('bodhi_svgs_settings'); // retrieve our plugin settings from the options table
|
35 |
|
8 |
Text Domain: svgsupport
|
9 |
Domain Path: /languages
|
10 |
License: GPL2
|
11 |
+
Version: 2.1.2
|
12 |
*/
|
13 |
/* Copyright 2013 Benbodhi (email : wp@benbodhi.com)
|
14 |
|
29 |
/********************************************
|
30 |
* GLOBAL VARIABLES
|
31 |
********************************************/
|
32 |
+
$plugin_version = '2.1.2'; // for use on admin pages
|
33 |
define( 'BODHI_SVGS_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); // define the absolute plugin path for includes
|
34 |
$bodhi_svgs_options = get_option('bodhi_svgs_settings'); // retrieve our plugin settings from the options table
|
35 |
|