Changeset 3447167
- Timestamp:
- 01/26/2026 02:41:52 PM (2 months ago)
- Location:
- host-webfonts-local
- Files:
-
- 6 edited
- 1 copied
-
tags/6.1.1 (copied) (copied from host-webfonts-local/trunk)
-
tags/6.1.1/host-webfonts-local.php (modified) (1 diff)
-
tags/6.1.1/readme.txt (modified) (2 diffs)
-
tags/6.1.1/src/Frontend/Process.php (modified) (1 diff)
-
trunk/host-webfonts-local.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/Frontend/Process.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
host-webfonts-local/tags/6.1.1/host-webfonts-local.php
r3444161 r3447167 4 4 * Plugin URI: https://daan.dev/wordpress/omgf/ 5 5 * Description: Increase GDPR/DSGVO compliance and leverage browser cache by automatically self-hosting Google Fonts. 6 * Version: 6.1. 06 * Version: 6.1.1 7 7 * Author: Daan from Daan.dev 8 8 * Author URI: https://daan.dev -
host-webfonts-local/tags/6.1.1/readme.txt
r3444161 r3447167 4 4 Requires at least: 5.9 5 5 Tested up to: 6.9 6 Stable tag: 6.1. 06 Stable tag: 6.1.1 7 7 Requires PHP: 7.3 8 8 License: GPLv2 or later … … 89 89 == Changelog == 90 90 91 = 6.1.1 | January 26th, 2026 = 92 * Fixed: font-weights would sometimes break when Smart Slider 3 or Groovy Menu was enabled. 93 91 94 = 6.1.0 | January 21st, 2026 = 92 95 * Improved: OMGF now runs on wp-login.php. -
host-webfonts-local/tags/6.1.1/src/Frontend/Process.php
r3444161 r3447167 157 157 add_filter( 'omgf_buffer_output', [ $this, 'remove_resource_hints' ], 11 ); 158 158 159 /** Only hook into our own filter if Smart Slider 3 orGroovy Menu aren't active, as they have their own output filter. */160 if ( ! function_exists( 'smart_slider_3_plugins_loaded' ) ||! function_exists( 'groovy_menu_init_classes' ) ) {159 /** Only hook into our own filter if Smart Slider 3 and Groovy Menu aren't active, as they have their own output filter. */ 160 if ( ! function_exists( 'smart_slider_3_plugins_loaded' ) && ! function_exists( 'groovy_menu_init_classes' ) ) { 161 161 add_filter( 'omgf_buffer_output', [ $this, 'parse' ] ); 162 162 } -
host-webfonts-local/trunk/host-webfonts-local.php
r3444161 r3447167 4 4 * Plugin URI: https://daan.dev/wordpress/omgf/ 5 5 * Description: Increase GDPR/DSGVO compliance and leverage browser cache by automatically self-hosting Google Fonts. 6 * Version: 6.1. 06 * Version: 6.1.1 7 7 * Author: Daan from Daan.dev 8 8 * Author URI: https://daan.dev -
host-webfonts-local/trunk/readme.txt
r3444161 r3447167 4 4 Requires at least: 5.9 5 5 Tested up to: 6.9 6 Stable tag: 6.1. 06 Stable tag: 6.1.1 7 7 Requires PHP: 7.3 8 8 License: GPLv2 or later … … 89 89 == Changelog == 90 90 91 = 6.1.1 | January 26th, 2026 = 92 * Fixed: font-weights would sometimes break when Smart Slider 3 or Groovy Menu was enabled. 93 91 94 = 6.1.0 | January 21st, 2026 = 92 95 * Improved: OMGF now runs on wp-login.php. -
host-webfonts-local/trunk/src/Frontend/Process.php
r3444161 r3447167 157 157 add_filter( 'omgf_buffer_output', [ $this, 'remove_resource_hints' ], 11 ); 158 158 159 /** Only hook into our own filter if Smart Slider 3 orGroovy Menu aren't active, as they have their own output filter. */160 if ( ! function_exists( 'smart_slider_3_plugins_loaded' ) ||! function_exists( 'groovy_menu_init_classes' ) ) {159 /** Only hook into our own filter if Smart Slider 3 and Groovy Menu aren't active, as they have their own output filter. */ 160 if ( ! function_exists( 'smart_slider_3_plugins_loaded' ) && ! function_exists( 'groovy_menu_init_classes' ) ) { 161 161 add_filter( 'omgf_buffer_output', [ $this, 'parse' ] ); 162 162 }
Note: See TracChangeset
for help on using the changeset viewer.