Version Description
Download this release
Release Info
Developer | DannyCooper |
Plugin | Google Fonts for WordPress |
Version | 2.1.9 |
Comparing to | |
See all releases |
Code changes from version 2.1.8 to 2.1.9
changelog.txt
CHANGED
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
1 |
= 2.1.8 =
|
2 |
|
3 |
* Fix text-transform control not showing correctly.
|
1 |
+
= 2.1.9 =
|
2 |
+
|
3 |
+
* Fix minor javascript error
|
4 |
+
|
5 |
= 2.1.8 =
|
6 |
|
7 |
* Fix text-transform control not showing correctly.
|
includes/customizer/controls/class-ogf-customize-typography-control.php
CHANGED
@@ -193,7 +193,7 @@ class OGF_Customize_Typography_Control extends WP_Customize_Control {
|
|
193 |
<span class="customize-control-title">{{ data.size.label }}</span>
|
194 |
<# } #>
|
195 |
<span class="slider-reset dashicons dashicons-image-rotate" slider-reset-value="{{ data.size.value }}"></span>
|
196 |
-
<div class="slider" slider-max-value="72" slider-step-value="1"></div>
|
197 |
<input class="customize-control-slider-value" {{{ data.size.link }}} type="number" value="{{ data.size.value }}">
|
198 |
</div>
|
199 |
</li>
|
@@ -207,7 +207,7 @@ class OGF_Customize_Typography_Control extends WP_Customize_Control {
|
|
207 |
<# } #>
|
208 |
<span class="slider-reset dashicons dashicons-image-rotate" slider-reset-value="{{ data.line_height.value }}"></span>
|
209 |
|
210 |
-
<div class="slider" slider-max-value="3" slider-step-value=".1"></div>
|
211 |
<input class="customize-control-slider-value" {{{ data.line_height.link }}} type="number" value="{{ data.line_height.value }}">
|
212 |
</div>
|
213 |
</li>
|
@@ -238,7 +238,7 @@ class OGF_Customize_Typography_Control extends WP_Customize_Control {
|
|
238 |
</select>
|
239 |
</li>
|
240 |
<# } #>
|
241 |
-
|
242 |
</div>
|
243 |
|
244 |
</ul>
|
193 |
<span class="customize-control-title">{{ data.size.label }}</span>
|
194 |
<# } #>
|
195 |
<span class="slider-reset dashicons dashicons-image-rotate" slider-reset-value="{{ data.size.value }}"></span>
|
196 |
+
<div class="slider" slider-min-value="1" slider-max-value="72" slider-step-value="1"></div>
|
197 |
<input class="customize-control-slider-value" {{{ data.size.link }}} type="number" value="{{ data.size.value }}">
|
198 |
</div>
|
199 |
</li>
|
207 |
<# } #>
|
208 |
<span class="slider-reset dashicons dashicons-image-rotate" slider-reset-value="{{ data.line_height.value }}"></span>
|
209 |
|
210 |
+
<div class="slider" slider-min-value="0" slider-max-value="3" slider-step-value=".1"></div>
|
211 |
<input class="customize-control-slider-value" {{{ data.line_height.link }}} type="number" value="{{ data.line_height.value }}">
|
212 |
</div>
|
213 |
</li>
|
238 |
</select>
|
239 |
</li>
|
240 |
<# } #>
|
241 |
+
|
242 |
</div>
|
243 |
|
244 |
</ul>
|
olympus-google-fonts.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Plugin Name: Fonts Plugin | Google Fonts Typography
|
6 |
* Plugin URI: https://wordpress.org/plugins/olympus-google-fonts/
|
7 |
* Description: The easiest to use Google Fonts typography plugin. No coding required. 900+ font choices.
|
8 |
-
* Version: 2.1.
|
9 |
* Author: Fonts Plugin
|
10 |
* Author URI: https://fontsplugin.com/?utm_source=wporg&utm_medium=readme&utm_campaign=description
|
11 |
* Text Domain: olympus-google-fonts
|
@@ -18,7 +18,7 @@
|
|
18 |
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
|
19 |
*/
|
20 |
|
21 |
-
define( 'OGF_VERSION', '2.1.
|
22 |
define( 'OGF_DIR_PATH', plugin_dir_path( __FILE__ ) );
|
23 |
define( 'OGF_DIR_URL', plugin_dir_url( __FILE__ ) );
|
24 |
|
5 |
* Plugin Name: Fonts Plugin | Google Fonts Typography
|
6 |
* Plugin URI: https://wordpress.org/plugins/olympus-google-fonts/
|
7 |
* Description: The easiest to use Google Fonts typography plugin. No coding required. 900+ font choices.
|
8 |
+
* Version: 2.1.9
|
9 |
* Author: Fonts Plugin
|
10 |
* Author URI: https://fontsplugin.com/?utm_source=wporg&utm_medium=readme&utm_campaign=description
|
11 |
* Text Domain: olympus-google-fonts
|
18 |
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
|
19 |
*/
|
20 |
|
21 |
+
define( 'OGF_VERSION', '2.1.9' );
|
22 |
define( 'OGF_DIR_PATH', plugin_dir_path( __FILE__ ) );
|
23 |
define( 'OGF_DIR_URL', plugin_dir_url( __FILE__ ) );
|
24 |
|
readme.txt
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
=== Fonts Plugin | Google Fonts Typography ===
|
2 |
-
Contributors: DannyCooper, googlefonts
|
3 |
Tags: google, fonts, google fonts, typography, elementor
|
4 |
Donate link: https://fontsplugin.com/#pricing
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.5
|
7 |
License: GPLv2 or later
|
8 |
-
Stable tag: 2.1.
|
9 |
|
10 |
The easiest to use Google Fonts Typography Plugin. No coding required. 900+ font choices.
|
11 |
|
1 |
=== Fonts Plugin | Google Fonts Typography ===
|
2 |
+
Contributors: DannyCooper, googlefonts, fontsplugin
|
3 |
Tags: google, fonts, google fonts, typography, elementor
|
4 |
Donate link: https://fontsplugin.com/#pricing
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.5
|
7 |
License: GPLv2 or later
|
8 |
+
Stable tag: 2.1.9
|
9 |
|
10 |
The easiest to use Google Fonts Typography Plugin. No coding required. 900+ font choices.
|
11 |
|