Version Description
- Added support for moved wp-content directories
Download this release
Release Info
Developer | connectthink |
Plugin | WP-SCSS |
Version | 1.1.2 |
Comparing to | |
See all releases |
Code changes from version 1.1.1 to 1.1.2
- readme.txt +6 -3
- wp-scss.php +4 -4
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: sass, scss, css
|
|
4 |
Plugin URI: https://github.com/ConnectThink/WP-SCSS
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 3.8
|
7 |
-
Stable tag: 1.1.
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/copyleft/gpl.html
|
10 |
|
@@ -59,9 +59,12 @@ If you are having issues with the plugin, create an issue on [github](https://gi
|
|
59 |
|
60 |
== Changelog ==
|
61 |
|
62 |
-
= 1.1 =
|
|
|
|
|
|
|
63 |
* Added error handling for file permissions issues
|
64 |
* Changed error log to .log for auto updating errors
|
65 |
|
66 |
-
= 1.0 =
|
67 |
* Initial Build
|
4 |
Plugin URI: https://github.com/ConnectThink/WP-SCSS
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 3.8
|
7 |
+
Stable tag: 1.1.2
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/copyleft/gpl.html
|
10 |
|
59 |
|
60 |
== Changelog ==
|
61 |
|
62 |
+
= 1.1.2 =
|
63 |
+
* Added support for moved wp-content directories
|
64 |
+
|
65 |
+
= 1.1.1 =
|
66 |
* Added error handling for file permissions issues
|
67 |
* Changed error log to .log for auto updating errors
|
68 |
|
69 |
+
= 1.0.0 =
|
70 |
* Initial Build
|
wp-scss.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
-
<?php
|
2 |
/**
|
3 |
* Plugin Name: WP-SCSS
|
4 |
* Plugin URI: https://github.com/ConnectThink/WP-SCSS
|
5 |
* Description: Compiles scss files live on wordpress.
|
6 |
-
* Version: 1.1.
|
7 |
* Author: Connect Think
|
8 |
* Author URI: http://connectthink.com
|
9 |
* License: GPLv3
|
@@ -30,7 +30,7 @@
|
|
30 |
|
31 |
// Plugin Paths
|
32 |
if (!defined('WPSCSS_THEME_DIR'))
|
33 |
-
define('WPSCSS_THEME_DIR',
|
34 |
|
35 |
if (!defined('WPSCSS_PLUGIN_NAME'))
|
36 |
define('WPSCSS_PLUGIN_NAME', trim(dirname(plugin_basename(__FILE__)), '/'));
|
@@ -46,7 +46,7 @@ if (!defined('WPSCSS_VERSION_KEY'))
|
|
46 |
define('WPSCSS_VERSION_KEY', 'wpscss_version');
|
47 |
|
48 |
if (!defined('WPSCSS_VERSION_NUM'))
|
49 |
-
define('WPSCSS_VERSION_NUM', '1.1.
|
50 |
|
51 |
// Add version to options table
|
52 |
add_option(WPSCSS_VERSION_KEY, WPSCSS_VERSION_NUM);
|
1 |
+
2<?php
|
2 |
/**
|
3 |
* Plugin Name: WP-SCSS
|
4 |
* Plugin URI: https://github.com/ConnectThink/WP-SCSS
|
5 |
* Description: Compiles scss files live on wordpress.
|
6 |
+
* Version: 1.1.2
|
7 |
* Author: Connect Think
|
8 |
* Author URI: http://connectthink.com
|
9 |
* License: GPLv3
|
30 |
|
31 |
// Plugin Paths
|
32 |
if (!defined('WPSCSS_THEME_DIR'))
|
33 |
+
define('WPSCSS_THEME_DIR', get_stylesheet_directory());
|
34 |
|
35 |
if (!defined('WPSCSS_PLUGIN_NAME'))
|
36 |
define('WPSCSS_PLUGIN_NAME', trim(dirname(plugin_basename(__FILE__)), '/'));
|
46 |
define('WPSCSS_VERSION_KEY', 'wpscss_version');
|
47 |
|
48 |
if (!defined('WPSCSS_VERSION_NUM'))
|
49 |
+
define('WPSCSS_VERSION_NUM', '1.1.2');
|
50 |
|
51 |
// Add version to options table
|
52 |
add_option(WPSCSS_VERSION_KEY, WPSCSS_VERSION_NUM);
|