Skip to content

Commit

Permalink
1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
webmandesign committed Feb 4, 2019
1 parent 3b79104 commit 0199497
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 11 deletions.
12 changes: 12 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Reykjavik Changelog

## 1.4.2

* **Fix**: Displaying default background image URL when no image set in theme options

### Files changed:

changelog.md
readme.txt
style.css
includes/customize/class-customize-styles.php


## 1.4.1

* **Fix**: Background image URL escaping in CSS code
Expand Down
8 changes: 4 additions & 4 deletions includes/customize/class-customize-styles.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @copyright WebMan Design, Oliver Juhas
*
* @since 1.0.0
* @version 1.4.0
* @version 1.4.2
*
* Contents:
*
Expand Down Expand Up @@ -66,13 +66,13 @@ public static function init() {
* Get custom CSS.
*
* @since 1.0.0
* @version 1.4.0
* @version 1.4.2
*/
public static function get_css() {

// Variables

$output = '';
$css = '';


// Processing
Expand All @@ -84,7 +84,7 @@ public static function get_css() {

// Output

return (string) apply_filters( 'wmhook_reykjavik_customize_styles_get_css', $output );
return (string) apply_filters( 'wmhook_reykjavik_customize_styles_get_css', $css );

} // /get_css

Expand Down
9 changes: 3 additions & 6 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: webmandesign
Tags: one-column, two-columns, right-sidebar, grid-layout, flexible-header, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-image-header, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, blog, e-commerce, portfolio
Requires at least: 4.7.0
Tested up to: 5.0.3
Stable tag: 1.4.1
Stable tag: 1.4.2
License: GNU General Public License v3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -37,11 +37,8 @@ Please see `changelog.md` file.

== Upgrade Notice ==

= 1.4.1 =
* Fixing background image URL escaping in CSS code.

= 1.4.0 =
* Using CSS variables instead of generating a customized stylesheet, improving security, improving code, improving accessibility.
= 1.4.2 =
Fixing displaying default background image URL when no image set in theme options.


== Resources ==
Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Theme Name: Reykjavik
Theme URI: https://www.webmandesign.eu/portfolio/reykjavik-wordpress-theme/
Author: WebMan Design
Author URI: https://www.webmandesign.eu/
Version: 1.4.1
Version: 1.4.2
Text Domain: reykjavik
Domain Path: /languages
License: GNU General Public License v3
Expand Down

0 comments on commit 0199497

Please sign in to comment.