Plugin Directory

Changeset 3266607


Ignore:
Timestamp:
04/03/2025 09:24:31 PM (10 months ago)
Author:
afragen
Message:

Update to version 2.3.5 from GitHub

Location:
add-custom-header-images
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • add-custom-header-images/tags/2.3.5/CHANGES.md

    r3180134 r3266607  
    11#### [unreleased]
     2
     3#### 2.3.5 / 2025-04-03
     4* add GA to generate POT
     5* change startup action hook to `after_setup_theme` for translations
    26
    37#### 2.3.4 / 2024-11-01
  • add-custom-header-images/tags/2.3.5/add-custom-header-images.php

    r3180134 r3266607  
    99 * Plugin URI:        https://github.com/afragen/add-custom-header-images
    1010 * Description:       Remove default header images and add custom header images. Images must be added to new page titled <strong>The Headers</strong>.  Based upon a post from <a href="http://juliobiason.net/2011/10/25/twentyeleven-with-easy-rotating-header-images/">Julio Biason</a>.
    11  * Version:           2.3.4
     11 * Version:           2.3.5
    1212 * Author:            Andy Fragen
    1313 * Author URI:        https://thefragens.com
     
    292292}
    293293
     294// Using `after_setup_theme` to avoid WP 6.7 error for translations early.
    294295add_action(
    295     'plugins_loaded',
     296    'after_setup_theme',
    296297    function() {
    297298        new Add_Custom_Header_Images();
  • add-custom-header-images/tags/2.3.5/languages/add-custom-header-images.pot

    r2350583 r3266607  
    1 # Copyright (C) 2020 Andy Fragen
    2 # This file is distributed under the same license as the Add Custom Header Images plugin.
     1# Copyright (C) 2025 Andy Fragen
     2# This file is distributed under the GNU General Public License v2.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Add Custom Header Images 2.0.3\n"
    6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/add-custom-header-images\n"
     5"Project-Id-Version: Add Custom Header Images 2.3.5\n"
     6"Report-Msgid-Bugs-To: https://github.com/afragen/add-custom-header-images/issues\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    88"Language-Team: LANGUAGE <LL@li.org>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2020-08-01T18:20:53+00:00\n"
     12"POT-Creation-Date: 2025-04-03T21:22:37+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    14 "X-Generator: WP-CLI 2.4.0\n"
     14"X-Generator: WP-CLI 2.11.0\n"
    1515"X-Domain: add-custom-header-images\n"
    1616
    1717#. Plugin Name of the plugin
     18#: add-custom-header-images.php
    1819msgid "Add Custom Header Images"
    1920msgstr ""
    2021
    2122#. Plugin URI of the plugin
     23#: add-custom-header-images.php
    2224msgid "https://github.com/afragen/add-custom-header-images"
    2325msgstr ""
    2426
    2527#. Description of the plugin
     28#: add-custom-header-images.php
    2629msgid "Remove default header images and add custom header images. Images must be added to new page titled <strong>The Headers</strong>.  Based upon a post from <a href=\"http://juliobiason.net/2011/10/25/twentyeleven-with-easy-rotating-header-images/\">Julio Biason</a>."
    2730msgstr ""
    2831
    2932#. Author of the plugin
     33#: add-custom-header-images.php
    3034msgid "Andy Fragen"
    3135msgstr ""
    3236
    3337#. Author URI of the plugin
     38#: add-custom-header-images.php
    3439msgid "https://thefragens.com"
    3540msgstr ""
    3641
    37 #: add-custom-header-images.php:45
     42#: add-custom-header-images.php:59
    3843msgid "The Headers"
    3944msgstr ""
    4045
    41 #: add-custom-header-images.php:78
     46#: add-custom-header-images.php:94
    4247msgid "Add Custom Header Images requires a page titled <strong>The Headers</strong>."
    4348msgstr ""
  • add-custom-header-images/tags/2.3.5/readme.txt

    r3180134 r3266607  
    77Requires at least: 5.2
    88Requires PHP: 5.6
    9 Tested up to: 6.7
    10 Stable tag: 2.3.4
     9Tested up to: 6.8
     10Stable tag: 2.3.5
    1111
    1212## Description
     
    3030
    3131## Changelog
     32
     33#### 2.3.5 / 2025-04-03
     34* add GA to generate POT
     35* change startup action hook to `after_setup_theme` for translations
    3236
    3337#### 2.3.4 / 2024-11-01
  • add-custom-header-images/trunk/CHANGES.md

    r3180134 r3266607  
    11#### [unreleased]
     2
     3#### 2.3.5 / 2025-04-03
     4* add GA to generate POT
     5* change startup action hook to `after_setup_theme` for translations
    26
    37#### 2.3.4 / 2024-11-01
  • add-custom-header-images/trunk/add-custom-header-images.php

    r3180134 r3266607  
    99 * Plugin URI:        https://github.com/afragen/add-custom-header-images
    1010 * Description:       Remove default header images and add custom header images. Images must be added to new page titled <strong>The Headers</strong>.  Based upon a post from <a href="http://juliobiason.net/2011/10/25/twentyeleven-with-easy-rotating-header-images/">Julio Biason</a>.
    11  * Version:           2.3.4
     11 * Version:           2.3.5
    1212 * Author:            Andy Fragen
    1313 * Author URI:        https://thefragens.com
     
    292292}
    293293
     294// Using `after_setup_theme` to avoid WP 6.7 error for translations early.
    294295add_action(
    295     'plugins_loaded',
     296    'after_setup_theme',
    296297    function() {
    297298        new Add_Custom_Header_Images();
  • add-custom-header-images/trunk/languages/add-custom-header-images.pot

    r2350583 r3266607  
    1 # Copyright (C) 2020 Andy Fragen
    2 # This file is distributed under the same license as the Add Custom Header Images plugin.
     1# Copyright (C) 2025 Andy Fragen
     2# This file is distributed under the GNU General Public License v2.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Add Custom Header Images 2.0.3\n"
    6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/add-custom-header-images\n"
     5"Project-Id-Version: Add Custom Header Images 2.3.5\n"
     6"Report-Msgid-Bugs-To: https://github.com/afragen/add-custom-header-images/issues\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    88"Language-Team: LANGUAGE <LL@li.org>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2020-08-01T18:20:53+00:00\n"
     12"POT-Creation-Date: 2025-04-03T21:22:37+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    14 "X-Generator: WP-CLI 2.4.0\n"
     14"X-Generator: WP-CLI 2.11.0\n"
    1515"X-Domain: add-custom-header-images\n"
    1616
    1717#. Plugin Name of the plugin
     18#: add-custom-header-images.php
    1819msgid "Add Custom Header Images"
    1920msgstr ""
    2021
    2122#. Plugin URI of the plugin
     23#: add-custom-header-images.php
    2224msgid "https://github.com/afragen/add-custom-header-images"
    2325msgstr ""
    2426
    2527#. Description of the plugin
     28#: add-custom-header-images.php
    2629msgid "Remove default header images and add custom header images. Images must be added to new page titled <strong>The Headers</strong>.  Based upon a post from <a href=\"http://juliobiason.net/2011/10/25/twentyeleven-with-easy-rotating-header-images/\">Julio Biason</a>."
    2730msgstr ""
    2831
    2932#. Author of the plugin
     33#: add-custom-header-images.php
    3034msgid "Andy Fragen"
    3135msgstr ""
    3236
    3337#. Author URI of the plugin
     38#: add-custom-header-images.php
    3439msgid "https://thefragens.com"
    3540msgstr ""
    3641
    37 #: add-custom-header-images.php:45
     42#: add-custom-header-images.php:59
    3843msgid "The Headers"
    3944msgstr ""
    4045
    41 #: add-custom-header-images.php:78
     46#: add-custom-header-images.php:94
    4247msgid "Add Custom Header Images requires a page titled <strong>The Headers</strong>."
    4348msgstr ""
  • add-custom-header-images/trunk/readme.txt

    r3180134 r3266607  
    77Requires at least: 5.2
    88Requires PHP: 5.6
    9 Tested up to: 6.7
    10 Stable tag: 2.3.4
     9Tested up to: 6.8
     10Stable tag: 2.3.5
    1111
    1212## Description
     
    3030
    3131## Changelog
     32
     33#### 2.3.5 / 2025-04-03
     34* add GA to generate POT
     35* change startup action hook to `after_setup_theme` for translations
    3236
    3337#### 2.3.4 / 2024-11-01
Note: See TracChangeset for help on using the changeset viewer.