Plugin Directory

Changeset 3444161


Ignore:
Timestamp:
01/21/2026 02:23:17 PM (2 months ago)
Author:
DaanvandenBergh
Message:

Update to version 6.1.0 from GitHub

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

Legend:

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

    r3406873 r3444161  
    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.0.11
     6 * Version: 6.1.0
    77 * Author: Daan from Daan.dev
    88 * Author URI: https://daan.dev
  • host-webfonts-local/tags/6.1.0/readme.txt

    r3406873 r3444161  
    44Requires at least: 5.9
    55Tested up to: 6.9
    6 Stable tag: 6.0.11
     6Stable tag: 6.1.0
    77Requires PHP: 7.3
    88License: GPLv2 or later
     
    8989== Changelog ==
    9090
     91= 6.1.0 | January 21st, 2026 =
     92* Improved: OMGF now runs on wp-login.php.
     93
    9194= 6.0.11 | December 1st, 2025 =
    9295* Tested with WP 6.9
  • host-webfonts-local/tags/6.1.0/src/Admin/Settings/Advanced.php

    r3406873 r3444161  
    9797            sprintf(
    9898                __(
    99                     'Enable this option (on all instances) if you\'re planning to use %s in a (variation of a) Development > Testing > Acceptance/Staging > Production workflow. %s',
     99                    'Enable this option (on all instances) to make it easier to migrate between Development/Testing/Staging/Production environments. %s',
    100100                    'host-webfonts-local'
    101101                ),
  • host-webfonts-local/tags/6.1.0/src/Frontend/Process.php

    r3336803 r3444161  
    150150        add_action( 'wp_head', [ $this, 'add_preloads' ], 3 );
    151151        add_action( 'template_redirect', [ $this, 'maybe_buffer_output' ], 3 );
     152        add_action( 'login_init', [ $this, 'maybe_buffer_output' ], 3 );
    152153        /**
    153154         * @since v5.3.10 parse() runs on priority 10. Run this afterward, to make sure e.g. the <preload> -> <noscript> approach some theme
  • host-webfonts-local/trunk/host-webfonts-local.php

    r3406873 r3444161  
    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.0.11
     6 * Version: 6.1.0
    77 * Author: Daan from Daan.dev
    88 * Author URI: https://daan.dev
  • host-webfonts-local/trunk/readme.txt

    r3406873 r3444161  
    44Requires at least: 5.9
    55Tested up to: 6.9
    6 Stable tag: 6.0.11
     6Stable tag: 6.1.0
    77Requires PHP: 7.3
    88License: GPLv2 or later
     
    8989== Changelog ==
    9090
     91= 6.1.0 | January 21st, 2026 =
     92* Improved: OMGF now runs on wp-login.php.
     93
    9194= 6.0.11 | December 1st, 2025 =
    9295* Tested with WP 6.9
  • host-webfonts-local/trunk/src/Admin/Settings/Advanced.php

    r3406873 r3444161  
    9797            sprintf(
    9898                __(
    99                     'Enable this option (on all instances) if you\'re planning to use %s in a (variation of a) Development > Testing > Acceptance/Staging > Production workflow. %s',
     99                    'Enable this option (on all instances) to make it easier to migrate between Development/Testing/Staging/Production environments. %s',
    100100                    'host-webfonts-local'
    101101                ),
  • host-webfonts-local/trunk/src/Frontend/Process.php

    r3336803 r3444161  
    150150        add_action( 'wp_head', [ $this, 'add_preloads' ], 3 );
    151151        add_action( 'template_redirect', [ $this, 'maybe_buffer_output' ], 3 );
     152        add_action( 'login_init', [ $this, 'maybe_buffer_output' ], 3 );
    152153        /**
    153154         * @since v5.3.10 parse() runs on priority 10. Run this afterward, to make sure e.g. the <preload> -> <noscript> approach some theme
Note: See TracChangeset for help on using the changeset viewer.