Plugin Directory

Changeset 3447167


Ignore:
Timestamp:
01/26/2026 02:41:52 PM (2 months ago)
Author:
DaanvandenBergh
Message:

Update to version 6.1.1 from GitHub

Location:
host-webfonts-local
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • host-webfonts-local/tags/6.1.1/host-webfonts-local.php

    r3444161 r3447167  
    44 * Plugin URI: https://daan.dev/wordpress/omgf/
    55 * Description: Increase GDPR/DSGVO compliance and leverage browser cache by automatically self-hosting Google Fonts.
    6  * Version: 6.1.0
     6 * Version: 6.1.1
    77 * Author: Daan from Daan.dev
    88 * Author URI: https://daan.dev
  • host-webfonts-local/tags/6.1.1/readme.txt

    r3444161 r3447167  
    44Requires at least: 5.9
    55Tested up to: 6.9
    6 Stable tag: 6.1.0
     6Stable tag: 6.1.1
    77Requires PHP: 7.3
    88License: GPLv2 or later
     
    8989== Changelog ==
    9090
     91= 6.1.1 | January 26th, 2026 =
     92* Fixed: font-weights would sometimes break when Smart Slider 3 or Groovy Menu was enabled.
     93
    9194= 6.1.0 | January 21st, 2026 =
    9295* Improved: OMGF now runs on wp-login.php.
  • host-webfonts-local/tags/6.1.1/src/Frontend/Process.php

    r3444161 r3447167  
    157157        add_filter( 'omgf_buffer_output', [ $this, 'remove_resource_hints' ], 11 );
    158158
    159         /** Only hook into our own filter if Smart Slider 3 or 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' ) ) {
     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' ) ) {
    161161            add_filter( 'omgf_buffer_output', [ $this, 'parse' ] );
    162162        }
  • host-webfonts-local/trunk/host-webfonts-local.php

    r3444161 r3447167  
    44 * Plugin URI: https://daan.dev/wordpress/omgf/
    55 * Description: Increase GDPR/DSGVO compliance and leverage browser cache by automatically self-hosting Google Fonts.
    6  * Version: 6.1.0
     6 * Version: 6.1.1
    77 * Author: Daan from Daan.dev
    88 * Author URI: https://daan.dev
  • host-webfonts-local/trunk/readme.txt

    r3444161 r3447167  
    44Requires at least: 5.9
    55Tested up to: 6.9
    6 Stable tag: 6.1.0
     6Stable tag: 6.1.1
    77Requires PHP: 7.3
    88License: GPLv2 or later
     
    8989== Changelog ==
    9090
     91= 6.1.1 | January 26th, 2026 =
     92* Fixed: font-weights would sometimes break when Smart Slider 3 or Groovy Menu was enabled.
     93
    9194= 6.1.0 | January 21st, 2026 =
    9295* Improved: OMGF now runs on wp-login.php.
  • host-webfonts-local/trunk/src/Frontend/Process.php

    r3444161 r3447167  
    157157        add_filter( 'omgf_buffer_output', [ $this, 'remove_resource_hints' ], 11 );
    158158
    159         /** Only hook into our own filter if Smart Slider 3 or 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' ) ) {
     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' ) ) {
    161161            add_filter( 'omgf_buffer_output', [ $this, 'parse' ] );
    162162        }
Note: See TracChangeset for help on using the changeset viewer.