Changeset 3409448
- Timestamp:
- 12/03/2025 12:11:02 PM (3 months ago)
- Location:
- olympus-google-fonts
- Files:
-
- 14 edited
- 1 copied
-
tags/4.0.0 (copied) (copied from olympus-google-fonts/trunk)
-
tags/4.0.0/blocks/init.php (modified) (1 diff)
-
tags/4.0.0/changelog.txt (modified) (1 diff)
-
tags/4.0.0/class-olympus-google-fonts.php (modified) (1 diff)
-
tags/4.0.0/includes/class-ogf-clear-cache.php (modified) (1 diff)
-
tags/4.0.0/includes/gutenberg/output-css.php (modified) (2 diffs)
-
tags/4.0.0/olympus-google-fonts.php (modified) (1 diff)
-
tags/4.0.0/readme.txt (modified) (1 diff)
-
trunk/blocks/init.php (modified) (1 diff)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/class-olympus-google-fonts.php (modified) (1 diff)
-
trunk/includes/class-ogf-clear-cache.php (modified) (1 diff)
-
trunk/includes/gutenberg/output-css.php (modified) (2 diffs)
-
trunk/olympus-google-fonts.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
olympus-google-fonts/tags/4.0.0/blocks/init.php
r3329683 r3409448 71 71 ); 72 72 73 // Enqueue editor styles 74 wp_enqueue_style( 75 'olympus-google-fonts-block-editor-css', 76 plugins_url( '/build/index.css', __FILE__ ), 77 array( 'wp-edit-blocks' ), 78 $asset_file['version'] 79 ); 73 /** 74 * Currently this plugin is not adding any editor styles. 75 * 76 * wp_enqueue_style( 77 * 'olympus-google-fonts-block-editor', 78 * plugins_url( '/build/index.css', __FILE__ ), 79 * array( 'wp-edit-blocks' ), 80 * $asset_file['version'] 81 * ); 82 */ 80 83 81 84 wp_localize_script( 'olympus-google-fonts-block-js', 'ogf_custom_fonts_unique', ogf_custom_fonts_unique() ); -
olympus-google-fonts/tags/4.0.0/changelog.txt
r3385804 r3409448 1 = 4.0.0 = 2 3 * Fix issue with legacy Google Fonts URLs not being downloaded correctly in Pro version 4 * Remove unused editor styles from Gutenberg block editor 5 1 6 = 3.9.9 = 2 7 -
olympus-google-fonts/tags/4.0.0/class-olympus-google-fonts.php
r3385804 r3409448 39 39 public function constants() { 40 40 if ( ! defined( 'OGF_VERSION' ) ) { 41 define( 'OGF_VERSION', ' 3.9.9' );41 define( 'OGF_VERSION', '4.0.0' ); 42 42 } 43 43 -
olympus-google-fonts/tags/4.0.0/includes/class-ogf-clear-cache.php
r3323421 r3409448 101 101 $loader = new FPP_Host_Google_Fonts_Locally(); 102 102 $loader->delete_fonts_folder(); 103 delete_site_option( 'downloaded_font_files' ); 103 104 } 104 105 } -
olympus-google-fonts/tags/4.0.0/includes/gutenberg/output-css.php
r3324330 r3409448 52 52 $elements = array( 53 53 'ogf_body' => array( 54 'selectors' => '.editor-styles-wrapper p, .editor-styles-wrapper h2, .editor-styles-wrapper h3, .editor-styles-wrapper h4, .editor-styles-wrapper h5, .editor-styles-wrapper h6, #editor .editor-styles-wrapper .editor-post-title__block .editor-post-title__input',54 'selectors' => '.editor-styles-wrapper p, .editor-styles-wrapper h2, .editor-styles-wrapper h3, .editor-styles-wrapper h4, .editor-styles-wrapper h5, .editor-styles-wrapper h6, wp-block-post-title', 55 55 ), 56 56 'ogf_headings' => array( 57 'selectors' => ' #editor .editor-styles-wrapper .editor-post-title__block .editor-post-title__input, .editor-styles-wrapper h1, .editor-styles-wrapper h2, .editor-styles-wrapper h3, .editor-styles-wrapper h4, .editor-styles-wrapper h5, .editor-styles-wrapper h6',57 'selectors' => 'wp-block-post-title, .editor-styles-wrapper h1, .editor-styles-wrapper h2, .editor-styles-wrapper h3, .editor-styles-wrapper h4, .editor-styles-wrapper h5, .editor-styles-wrapper h6', 58 58 ), 59 59 'ogf_post_page_content' => array( … … 61 61 ), 62 62 'ogf_post_page_h1' => array( 63 'selectors' => ' #editor .editor-styles-wrapper .editor-post-title__block .editor-post-title__input, .editor-styles-wrapper h1',63 'selectors' => 'wp-block-post-title, .editor-styles-wrapper h1', 64 64 ), 65 65 'ogf_post_page_h2' => array( -
olympus-google-fonts/tags/4.0.0/olympus-google-fonts.php
r3385804 r3409448 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.98 * Version: 4.0.0 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/4.0.0/readme.txt
r3385804 r3409448 4 4 Donate link: https://fontsplugin.com/#pricing 5 5 Requires at least: 4.0 6 Tested up to: 6. 86 Tested up to: 6.9 7 7 License: GPLv2 or later 8 Stable tag: 3.9.98 Stable tag: 4.0.0 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/blocks/init.php
r3329683 r3409448 71 71 ); 72 72 73 // Enqueue editor styles 74 wp_enqueue_style( 75 'olympus-google-fonts-block-editor-css', 76 plugins_url( '/build/index.css', __FILE__ ), 77 array( 'wp-edit-blocks' ), 78 $asset_file['version'] 79 ); 73 /** 74 * Currently this plugin is not adding any editor styles. 75 * 76 * wp_enqueue_style( 77 * 'olympus-google-fonts-block-editor', 78 * plugins_url( '/build/index.css', __FILE__ ), 79 * array( 'wp-edit-blocks' ), 80 * $asset_file['version'] 81 * ); 82 */ 80 83 81 84 wp_localize_script( 'olympus-google-fonts-block-js', 'ogf_custom_fonts_unique', ogf_custom_fonts_unique() ); -
olympus-google-fonts/trunk/changelog.txt
r3385804 r3409448 1 = 4.0.0 = 2 3 * Fix issue with legacy Google Fonts URLs not being downloaded correctly in Pro version 4 * Remove unused editor styles from Gutenberg block editor 5 1 6 = 3.9.9 = 2 7 -
olympus-google-fonts/trunk/class-olympus-google-fonts.php
r3385804 r3409448 39 39 public function constants() { 40 40 if ( ! defined( 'OGF_VERSION' ) ) { 41 define( 'OGF_VERSION', ' 3.9.9' );41 define( 'OGF_VERSION', '4.0.0' ); 42 42 } 43 43 -
olympus-google-fonts/trunk/includes/class-ogf-clear-cache.php
r3323421 r3409448 101 101 $loader = new FPP_Host_Google_Fonts_Locally(); 102 102 $loader->delete_fonts_folder(); 103 delete_site_option( 'downloaded_font_files' ); 103 104 } 104 105 } -
olympus-google-fonts/trunk/includes/gutenberg/output-css.php
r3324330 r3409448 52 52 $elements = array( 53 53 'ogf_body' => array( 54 'selectors' => '.editor-styles-wrapper p, .editor-styles-wrapper h2, .editor-styles-wrapper h3, .editor-styles-wrapper h4, .editor-styles-wrapper h5, .editor-styles-wrapper h6, #editor .editor-styles-wrapper .editor-post-title__block .editor-post-title__input',54 'selectors' => '.editor-styles-wrapper p, .editor-styles-wrapper h2, .editor-styles-wrapper h3, .editor-styles-wrapper h4, .editor-styles-wrapper h5, .editor-styles-wrapper h6, wp-block-post-title', 55 55 ), 56 56 'ogf_headings' => array( 57 'selectors' => ' #editor .editor-styles-wrapper .editor-post-title__block .editor-post-title__input, .editor-styles-wrapper h1, .editor-styles-wrapper h2, .editor-styles-wrapper h3, .editor-styles-wrapper h4, .editor-styles-wrapper h5, .editor-styles-wrapper h6',57 'selectors' => 'wp-block-post-title, .editor-styles-wrapper h1, .editor-styles-wrapper h2, .editor-styles-wrapper h3, .editor-styles-wrapper h4, .editor-styles-wrapper h5, .editor-styles-wrapper h6', 58 58 ), 59 59 'ogf_post_page_content' => array( … … 61 61 ), 62 62 'ogf_post_page_h1' => array( 63 'selectors' => ' #editor .editor-styles-wrapper .editor-post-title__block .editor-post-title__input, .editor-styles-wrapper h1',63 'selectors' => 'wp-block-post-title, .editor-styles-wrapper h1', 64 64 ), 65 65 'ogf_post_page_h2' => array( -
olympus-google-fonts/trunk/olympus-google-fonts.php
r3385804 r3409448 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.98 * Version: 4.0.0 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
r3385804 r3409448 4 4 Donate link: https://fontsplugin.com/#pricing 5 5 Requires at least: 4.0 6 Tested up to: 6. 86 Tested up to: 6.9 7 7 License: GPLv2 or later 8 Stable tag: 3.9.98 Stable tag: 4.0.0 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.