Changeset 3324330
- Timestamp:
- 07/08/2025 12:42:53 PM (9 months ago)
- Location:
- olympus-google-fonts
- Files:
-
- 14 edited
- 1 copied
-
tags/3.9.6 (copied) (copied from olympus-google-fonts/trunk)
-
tags/3.9.6/changelog.txt (modified) (1 diff)
-
tags/3.9.6/class-olympus-google-fonts.php (modified) (1 diff)
-
tags/3.9.6/includes/class-ogf-fonts.php (modified) (1 diff)
-
tags/3.9.6/includes/gutenberg/class-ogf-gutenberg-filters.php (modified) (1 diff)
-
tags/3.9.6/includes/gutenberg/output-css.php (modified) (1 diff)
-
tags/3.9.6/olympus-google-fonts.php (modified) (1 diff)
-
tags/3.9.6/readme.txt (modified) (1 diff)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/class-olympus-google-fonts.php (modified) (1 diff)
-
trunk/includes/class-ogf-fonts.php (modified) (1 diff)
-
trunk/includes/gutenberg/class-ogf-gutenberg-filters.php (modified) (1 diff)
-
trunk/includes/gutenberg/output-css.php (modified) (1 diff)
-
trunk/olympus-google-fonts.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
olympus-google-fonts/tags/3.9.6/changelog.txt
r3323421 r3324330 1 = 3.9.5 = 2 1 = 3.9.6 = 2 3 * Fix issue where if all theme fonts are removed, an error is thrown. 4 5 = 3.9.5 = 6 3 7 * Fix error when use Blubrry podcast plugin 4 8 * Fix null reference errors when get_current_screen() returns null -
olympus-google-fonts/tags/3.9.6/class-olympus-google-fonts.php
r3323421 r3324330 39 39 public function constants() { 40 40 if ( ! defined( 'OGF_VERSION' ) ) { 41 define( 'OGF_VERSION', '3.9. 5' );41 define( 'OGF_VERSION', '3.9.6' ); 42 42 } 43 43 -
olympus-google-fonts/tags/3.9.6/includes/class-ogf-fonts.php
r3323421 r3324330 50 50 */ 51 51 public function __construct() { 52 // If this is not the singleton instance, just initialize normally for backward compatibility. 53 if ( null !== self::$instance && self::$instance !== $this ) { 54 // This is a separate instance for backward compatibility. 55 $this->initialize(); 56 return; 57 } 58 59 // This is the singleton instance. 52 // Initialize the instance (works for both singleton and backward compatibility instances). 60 53 $this->initialize(); 61 54 } -
olympus-google-fonts/tags/3.9.6/includes/gutenberg/class-ogf-gutenberg-filters.php
r3323421 r3324330 17 17 */ 18 18 public function __construct() { 19 add_filter( 'wp_theme_json_data_ user', array( $this, 'add_font_families' ), 10, 1 );19 add_filter( 'wp_theme_json_data_default', array( $this, 'add_font_families' ), 10, 1 ); 20 20 } 21 21 -
olympus-google-fonts/tags/3.9.6/includes/gutenberg/output-css.php
r3323421 r3324330 22 22 23 23 /** 24 * Output the font CSS to wp_head.24 * Output the font CSS to admin_head. 25 25 */ 26 26 function ogf_gutenberg_output_css() { -
olympus-google-fonts/tags/3.9.6/olympus-google-fonts.php
r3323421 r3324330 6 6 * Plugin URI: https://wordpress.org/plugins/olympus-google-fonts/ 7 7 * Description: The easiest to customize fonts in WordPress. Optimized for Speed. 1000+ font choices. Supports Google Fonts, Adobe Fonts and Upload Fonts. 8 * Version: 3.9. 58 * Version: 3.9.6 9 9 * Author: Fonts Plugin 10 10 * Author URI: https://fontsplugin.com/?utm_source=wporg&utm_medium=readme&utm_campaign=description -
olympus-google-fonts/tags/3.9.6/readme.txt
r3323421 r3324330 6 6 Tested up to: 6.8 7 7 License: GPLv2 or later 8 Stable tag: 3.9. 58 Stable tag: 3.9.6 9 9 10 10 The easiest to customize fonts in WordPress. Optimized for Speed. 1000+ font choices. Supports Google Fonts, Adobe Fonts and Upload Fonts. -
olympus-google-fonts/trunk/changelog.txt
r3323421 r3324330 1 = 3.9.5 = 2 1 = 3.9.6 = 2 3 * Fix issue where if all theme fonts are removed, an error is thrown. 4 5 = 3.9.5 = 6 3 7 * Fix error when use Blubrry podcast plugin 4 8 * Fix null reference errors when get_current_screen() returns null -
olympus-google-fonts/trunk/class-olympus-google-fonts.php
r3323421 r3324330 39 39 public function constants() { 40 40 if ( ! defined( 'OGF_VERSION' ) ) { 41 define( 'OGF_VERSION', '3.9. 5' );41 define( 'OGF_VERSION', '3.9.6' ); 42 42 } 43 43 -
olympus-google-fonts/trunk/includes/class-ogf-fonts.php
r3323421 r3324330 50 50 */ 51 51 public function __construct() { 52 // If this is not the singleton instance, just initialize normally for backward compatibility. 53 if ( null !== self::$instance && self::$instance !== $this ) { 54 // This is a separate instance for backward compatibility. 55 $this->initialize(); 56 return; 57 } 58 59 // This is the singleton instance. 52 // Initialize the instance (works for both singleton and backward compatibility instances). 60 53 $this->initialize(); 61 54 } -
olympus-google-fonts/trunk/includes/gutenberg/class-ogf-gutenberg-filters.php
r3323421 r3324330 17 17 */ 18 18 public function __construct() { 19 add_filter( 'wp_theme_json_data_ user', array( $this, 'add_font_families' ), 10, 1 );19 add_filter( 'wp_theme_json_data_default', array( $this, 'add_font_families' ), 10, 1 ); 20 20 } 21 21 -
olympus-google-fonts/trunk/includes/gutenberg/output-css.php
r3323421 r3324330 22 22 23 23 /** 24 * Output the font CSS to wp_head.24 * Output the font CSS to admin_head. 25 25 */ 26 26 function ogf_gutenberg_output_css() { -
olympus-google-fonts/trunk/olympus-google-fonts.php
r3323421 r3324330 6 6 * Plugin URI: https://wordpress.org/plugins/olympus-google-fonts/ 7 7 * Description: The easiest to customize fonts in WordPress. Optimized for Speed. 1000+ font choices. Supports Google Fonts, Adobe Fonts and Upload Fonts. 8 * Version: 3.9. 58 * Version: 3.9.6 9 9 * Author: Fonts Plugin 10 10 * Author URI: https://fontsplugin.com/?utm_source=wporg&utm_medium=readme&utm_campaign=description -
olympus-google-fonts/trunk/readme.txt
r3323421 r3324330 6 6 Tested up to: 6.8 7 7 License: GPLv2 or later 8 Stable tag: 3.9. 58 Stable tag: 3.9.6 9 9 10 10 The easiest to customize fonts in WordPress. Optimized for Speed. 1000+ font choices. Supports Google Fonts, Adobe Fonts and Upload Fonts.
Note: See TracChangeset
for help on using the changeset viewer.