Version Description
Download this release
Release Info
Developer | cbaldelomar |
Plugin | Shortcodes by Angie Makes |
Version | 1.24 |
Comparing to | |
See all releases |
Code changes from version 1.23 to 1.24
- README.md +1 -1
- includes/css/style.css +2 -1
- readme.txt +1 -1
- wc-shortcodes.php +2 -2
README.md
CHANGED
@@ -65,7 +65,7 @@ Use the shortcode manager in the TinyMCE text editor
|
|
65 |
|
66 |
## Changelog ##
|
67 |
|
68 |
-
### Version 1.
|
69 |
|
70 |
* Changed permission from read to manage_options
|
71 |
* Better code formatting on pages and posts.
|
65 |
|
66 |
## Changelog ##
|
67 |
|
68 |
+
### Version 1.24
|
69 |
|
70 |
* Changed permission from read to manage_options
|
71 |
* Better code formatting on pages and posts.
|
includes/css/style.css
CHANGED
@@ -862,7 +862,8 @@
|
|
862 |
*/
|
863 |
/* desert scheme ported from vim to google prettify */
|
864 |
pre.prettyprint {
|
865 |
-
display: block;
|
|
|
866 |
overflow: auto;
|
867 |
padding: 20px;
|
868 |
white-space: pre;
|
862 |
*/
|
863 |
/* desert scheme ported from vim to google prettify */
|
864 |
pre.prettyprint {
|
865 |
+
display: block;
|
866 |
+
background-color: #333;
|
867 |
overflow: auto;
|
868 |
padding: 20px;
|
869 |
white-space: pre;
|
readme.txt
CHANGED
@@ -86,7 +86,7 @@ Use the shortcode manager in the TinyMCE text editor
|
|
86 |
|
87 |
== Changelog ==
|
88 |
|
89 |
-
### Version 1.
|
90 |
|
91 |
* Changed permission from read to manage_options
|
92 |
* Better code formatting on pages and posts.
|
86 |
|
87 |
== Changelog ==
|
88 |
|
89 |
+
### Version 1.24
|
90 |
|
91 |
* Changed permission from read to manage_options
|
92 |
* Better code formatting on pages and posts.
|
wc-shortcodes.php
CHANGED
@@ -5,11 +5,11 @@ Plugin URI: http://wordpresscanvas.com/features/shortcodes/
|
|
5 |
Description: A family of shortcodes to enhance site functionality.
|
6 |
Author: Chris Baldelomar
|
7 |
Author URI: http://webplantmedia.com/
|
8 |
-
Version: 1.
|
9 |
License: GPLv2 or later
|
10 |
*/
|
11 |
|
12 |
-
define( 'WC_SHORTCODES_VERSION', '1.
|
13 |
define( 'WC_SHORTCODES_PREFIX', 'wc_shortcodes_' );
|
14 |
define( '_WC_SHORTCODES_PREFIX', '_wc_shortcodes_' );
|
15 |
define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
5 |
Description: A family of shortcodes to enhance site functionality.
|
6 |
Author: Chris Baldelomar
|
7 |
Author URI: http://webplantmedia.com/
|
8 |
+
Version: 1.24
|
9 |
License: GPLv2 or later
|
10 |
*/
|
11 |
|
12 |
+
define( 'WC_SHORTCODES_VERSION', '1.24' );
|
13 |
define( 'WC_SHORTCODES_PREFIX', 'wc_shortcodes_' );
|
14 |
define( '_WC_SHORTCODES_PREFIX', '_wc_shortcodes_' );
|
15 |
define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|