Styles - Version 0.5.3

Version Description

  • Allow fonts to load over HTTP or HTTPS
Download this release

Release Info

Developer brainstormmedia
Plugin Icon Styles
Version 0.5.3
Comparing to
See all releases

Code changes from version 0.5.2 to 0.5.3

Files changed (3) hide show
  1. classes/storm-css-processor.php +1 -1
  2. readme.txt +8 -2
  3. styles.php +1 -1
classes/storm-css-processor.php CHANGED
@@ -224,7 +224,7 @@ class Storm_CSS_Processor {
224
  */
225
  public function post_process( $styles ) {
226
  foreach ( $this->google_fonts as $family => $src ) {
227
- $imports .= "@import url(http://fonts.googleapis.com/css?family=$src);\r";
228
  }
229
 
230
  $styles->css->contents = $imports.$styles->css->contents;
224
  */
225
  public function post_process( $styles ) {
226
  foreach ( $this->google_fonts as $family => $src ) {
227
+ $imports .= "@import url(//fonts.googleapis.com/css?family=$src);\r";
228
  }
229
 
230
  $styles->css->contents = $imports.$styles->css->contents;
readme.txt CHANGED
@@ -6,18 +6,20 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
6
  Tags: css, stylesheet, scss, sass, scaffold, less, admin, gui, color picker, gradient, image upload, google fonts, user interface, twentyten, twentyeleven
7
  Requires at least: 3.1
8
  Tested up to: 3.4
9
- Stable tag: 0.5.2
10
 
11
  Change the appearance of supported themes using zero code. Creates appearance options for images, colors, gradients, and fonts.
12
 
13
  == Description ==
14
 
 
 
15
  Styles allows you to edit the appearance of themes that don't provide an interface in the WordPress admin for doing so. Themes supported by the free version include:
16
 
17
  * TwentyTen
18
  * TwentyEleven
19
 
20
- Theme support is provided by a remote API, so the plugin will update as more themes are added. We plan to release support for more themes in as a paid add-on to Styles. Have a specific theme you'd like to see supported? [Vote on themes here](https://www.google.com/moderator/?authuser=2#16/e=1f6d0a).
21
 
22
  Styles provides:
23
 
@@ -113,6 +115,10 @@ For general purpose CSS processing, you'll be much better off using one of the m
113
 
114
  == Upgrade Notice ==
115
 
 
 
 
 
116
  * Fix transparent background option
117
  * Fix display of unavailable theme options
118
 
6
  Tags: css, stylesheet, scss, sass, scaffold, less, admin, gui, color picker, gradient, image upload, google fonts, user interface, twentyten, twentyeleven
7
  Requires at least: 3.1
8
  Tested up to: 3.4
9
+ Stable tag: 0.5.3
10
 
11
  Change the appearance of supported themes using zero code. Creates appearance options for images, colors, gradients, and fonts.
12
 
13
  == Description ==
14
 
15
+ **Note:** There are plans to modify this plugin to tie-in with the new WordPress 3.4 theme customizer, but it requires a considerable rewrite. The final version would setup the Theme Customizer based on CSS only. If you're interested in contributing, please get in contact.
16
+
17
  Styles allows you to edit the appearance of themes that don't provide an interface in the WordPress admin for doing so. Themes supported by the free version include:
18
 
19
  * TwentyTen
20
  * TwentyEleven
21
 
22
+ Theme support is provided by a remote API, so support can be updated as more themes are added. We hope to release support for more themes as add-ons to Styles. Have a specific theme you'd like to see supported? [Vote on themes here](https://www.google.com/moderator/?authuser=2#16/e=1f6d0a).
23
 
24
  Styles provides:
25
 
115
 
116
  == Upgrade Notice ==
117
 
118
+ = 0.5.3 =
119
+ * Allow fonts to load over HTTP or HTTPS
120
+
121
+ = 0.5.2 =
122
  * Fix transparent background option
123
  * Fix display of unavailable theme options
124
 
styles.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Styles
4
  Plugin URI: http://stylesplugin.com
5
  Description: Change the appearance of your theme using the WordPress admin. Creates WordPress theme options for images, colors, gradients, and fonts.
6
- Version: 0.5.2
7
  Author: Brainstorm Media
8
  Author URI: http://brainstormmedia.com
9
  */
3
  Plugin Name: Styles
4
  Plugin URI: http://stylesplugin.com
5
  Description: Change the appearance of your theme using the WordPress admin. Creates WordPress theme options for images, colors, gradients, and fonts.
6
+ Version: 0.5.3
7
  Author: Brainstorm Media
8
  Author URI: http://brainstormmedia.com
9
  */