Plugin Directory

Changeset 2966760 for anrghg


Ignore:
Timestamp:
09/13/2023 09:17:10 PM (2 years ago)
Author:
anrghg
Message:

1.14.5.0

1.14.5 (2023-09-13)

  • Notes and sources: Debug font size of Note lists and Source lists.
  • Notes and sources: Remove gap between Note list label and Source list label in collapsed state.
Location:
anrghg
Files:
16 edited
1 copied

Legend:

Unmodified
Added
Removed
  • anrghg/tags/1.14.5/admin/options/settings-cb-paragraphs.php

    r2951898 r2966760  
    527527            sprintf(
    528528                // Translators: %s: `toggleChecked()`.---This information is optionally collapsible or hidden.
    529                 __( 'JavaScript is also used in the AMP %s action involved in this process.', 'anrghg' ),
     529                __( 'JavaScript is also used in the AMP action %s involved in this process.', 'anrghg' ),
    530530                '<code>toggleChecked()</code>'
    531531            ),
  • anrghg/tags/1.14.5/anrghg.php

    r2964844 r2966760  
    1414 * Tested PHP up to: 8.1
    1515 * CAUTION: The following field is parsed in the `stable tag` folder for upgrade configuration:
    16  * Version: 1.14.4
     16 * Version: 1.14.5
    1717 * Author: ANRGHG
    1818 * Author URI: https://anrghg.sunsite.fr
     
    117117 * @var string C_S_ANRGHG_VER  Plugin version constant.
    118118 */
    119 define( 'C_S_ANRGHG_VER', '1.14.4' );
     119define( 'C_S_ANRGHG_VER', '1.14.5' );
    120120
    121121/**
  • anrghg/tags/1.14.5/includes/complements.php

    r2964638 r2966760  
    122122     * @link https://wordpress.org/support/topic/footnotes-is-not-amp-compatible/#post-13819014
    123123     *
    124      * Implementation fostered by @milindmore22 and @westonruter from AMP project.
     124     * Implementation fostered by @milindmore22 and @westonruter from AMP Project.
    125125     * @contributor** @milindmore22
    126126     * @link https://github.com/ampproject/amp-wp/issues/5913#issuecomment-785306933
  • anrghg/tags/1.14.5/includes/contents.php

    r2964638 r2966760  
    408408                     * @since 0.25.0 Use new AMP action `toggleChecked()` to make table
    409409                     * of contents collapsible also when JavaScript is turned off.
     410                     * @courtesy @kristoferbaxter and @jridgewell from AMP Project.
     411                     * @contributor** @kristoferbaxter for the action name.
     412                     * @contributor** @jridgewell for the implementation.
    410413                     * @link https://github.com/ampproject/amphtml/pull/35795
     414                     * @link https://github.com/ampproject/amphtml/issues/35794
     415                     * @courtesy @zhangsu and @jridgewell for fixing the new action.
     416                     * @link https://github.com/ampproject/amphtml/issues/38312
     417                     * @link https://github.com/ampproject/amphtml/pull/38314
    411418                     * `toggleChecked()` was released on 2021-09-16.
    412419                     * @link https://github.com/ampproject/amphtml/releases/tag/2109102127000
  • anrghg/tags/1.14.5/includes/stylesplit.php

    r2964844 r2966760  
    526526         * backlinks of nested sources cannot expand the note, despite the unique IDs.
    527527         * @link https://developer.mozilla.org/en-US/docs/Web/CSS/:target-within#browser_compatibility
     528         * @since 1.14.5 Reduce gap between Note list label and Source list label in collapsed state.
     529         * It seems that the gap due to `.anrghg-complement-list-body` cannot be removed because
     530         * `:target-within` has no browser support.
    528531         *
    529532         * @see * Rules for table of contents and heading numbers.
     
    758761                        visibility: visible;
    759762                        opacity: 1;
     763                        font-size: $l_s_font_size;
    760764                        line-height: $l_s_list_row_line_height;
    761765                        padding: $l_s_list_row_padding 0 $l_s_list_row_padding;
     
    767771                        visibility: hidden;
    768772                        opacity: 0;
     773                        max-height: 0;
     774                        font-size: 0;
    769775                        line-height: 0;
    770                         padding-top: 0;
     776                        padding: 0;
    771777                        margin-top: $l_s_list_row_margin_top;
    772778                        transition: visibility 0s $l_s_transition_duration, opacity $l_s_transition_duration ease-out, line-height $l_s_transition_duration ease-in-out, padding-top $l_s_transition_duration ease-in-out, margin $l_s_transition_duration ease-in-out;
     
    779785                            visibility: visible;
    780786                            opacity: 1 !important;
     787                            max-height: unset;
     788                            font-size: $l_s_font_size;
    781789                            line-height: $l_s_list_row_line_height !important;
    782790                            padding: $l_s_list_row_padding 0 $l_s_list_row_padding !important;
     
    785793                    }
    786794
     795                    .anrghg-display-toggle:checked + .anrghg-complement-list .anrghg-complement-row:target,
     796                    .anrghg-display-toggle:checked + .anrghg-complement-list .anrghg-complement-row:target *,
    787797                    .anrghg-display-toggle:not(:checked) + .anrghg-complement-list .anrghg-complement-row:target,
    788798                    .anrghg-display-toggle:not(:checked) + .anrghg-complement-list .anrghg-complement-row:target * {
     799                        max-height: unset;
     800                        font-size: $l_s_font_size;
    789801                        line-height: $l_s_list_row_line_height;
    790802                        padding: $l_s_list_row_padding 0 $l_s_list_row_padding;
  • anrghg/tags/1.14.5/package.json

    r2964844 r2966760  
    11{
    22    "name": "anrghg",
    3     "version": " 1.14.4",
     3    "version": " 1.14.5",
    44    "description": "A.N.R.GHG Publishing Toolkit",
    55    "main": "index.js",
  • anrghg/tags/1.14.5/readme.txt

    r2964844 r2966760  
    88Requires PHP: 7.0
    99Tested PHP up to: 8.1
    10 Package Version: 1.14.4.0
    11 Version: 1.14.4
     10Package Version: 1.14.5.0
     11Version: 1.14.5
    1212CAUTION: The following field is parsed in `trunk/` for release configuration:
    13 Stable Tag: 1.14.4
     13Stable Tag: 1.14.5
    1414License: GPLv2 or later
    1515License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    625625== Changelog ==
    626626
     627= 1.14.5 (2023-09-13) =
     628
     629* Notes and sources: Debug font size of Note lists and Source lists.
     630* Notes and sources: Remove gap between Note list label and Source list label in collapsed state.
     631
    627632= 1.14.4 (2023-09-09) =
    628633
  • anrghg/tags/1.14.5/svn-revs.txt

    r2964844 r2966760  
    1111Past revisions:
    1212
     131.14.4.0       2964844  2023-09-09 20:45:10 +0000 (Sat, 09 Sep 2023)
    13141.14.3.0       2964790  2023-09-09 15:11:19 +0000 (Sat, 09 Sep 2023)
    14151.14.2.0       2964638  2023-09-08 20:31:28 +0000 (Fri, 08 Sep 2023)
  • anrghg/trunk/admin/options/settings-cb-paragraphs.php

    r2951898 r2966760  
    527527            sprintf(
    528528                // Translators: %s: `toggleChecked()`.---This information is optionally collapsible or hidden.
    529                 __( 'JavaScript is also used in the AMP %s action involved in this process.', 'anrghg' ),
     529                __( 'JavaScript is also used in the AMP action %s involved in this process.', 'anrghg' ),
    530530                '<code>toggleChecked()</code>'
    531531            ),
  • anrghg/trunk/anrghg.php

    r2964844 r2966760  
    1414 * Tested PHP up to: 8.1
    1515 * CAUTION: The following field is parsed in the `stable tag` folder for upgrade configuration:
    16  * Version: 1.14.4
     16 * Version: 1.14.5
    1717 * Author: ANRGHG
    1818 * Author URI: https://anrghg.sunsite.fr
     
    117117 * @var string C_S_ANRGHG_VER  Plugin version constant.
    118118 */
    119 define( 'C_S_ANRGHG_VER', '1.14.4' );
     119define( 'C_S_ANRGHG_VER', '1.14.5' );
    120120
    121121/**
  • anrghg/trunk/includes/complements.php

    r2964638 r2966760  
    122122     * @link https://wordpress.org/support/topic/footnotes-is-not-amp-compatible/#post-13819014
    123123     *
    124      * Implementation fostered by @milindmore22 and @westonruter from AMP project.
     124     * Implementation fostered by @milindmore22 and @westonruter from AMP Project.
    125125     * @contributor** @milindmore22
    126126     * @link https://github.com/ampproject/amp-wp/issues/5913#issuecomment-785306933
  • anrghg/trunk/includes/contents.php

    r2964638 r2966760  
    408408                     * @since 0.25.0 Use new AMP action `toggleChecked()` to make table
    409409                     * of contents collapsible also when JavaScript is turned off.
     410                     * @courtesy @kristoferbaxter and @jridgewell from AMP Project.
     411                     * @contributor** @kristoferbaxter for the action name.
     412                     * @contributor** @jridgewell for the implementation.
    410413                     * @link https://github.com/ampproject/amphtml/pull/35795
     414                     * @link https://github.com/ampproject/amphtml/issues/35794
     415                     * @courtesy @zhangsu and @jridgewell for fixing the new action.
     416                     * @link https://github.com/ampproject/amphtml/issues/38312
     417                     * @link https://github.com/ampproject/amphtml/pull/38314
    411418                     * `toggleChecked()` was released on 2021-09-16.
    412419                     * @link https://github.com/ampproject/amphtml/releases/tag/2109102127000
  • anrghg/trunk/includes/stylesplit.php

    r2964844 r2966760  
    526526         * backlinks of nested sources cannot expand the note, despite the unique IDs.
    527527         * @link https://developer.mozilla.org/en-US/docs/Web/CSS/:target-within#browser_compatibility
     528         * @since 1.14.5 Reduce gap between Note list label and Source list label in collapsed state.
     529         * It seems that the gap due to `.anrghg-complement-list-body` cannot be removed because
     530         * `:target-within` has no browser support.
    528531         *
    529532         * @see * Rules for table of contents and heading numbers.
     
    758761                        visibility: visible;
    759762                        opacity: 1;
     763                        font-size: $l_s_font_size;
    760764                        line-height: $l_s_list_row_line_height;
    761765                        padding: $l_s_list_row_padding 0 $l_s_list_row_padding;
     
    767771                        visibility: hidden;
    768772                        opacity: 0;
     773                        max-height: 0;
     774                        font-size: 0;
    769775                        line-height: 0;
    770                         padding-top: 0;
     776                        padding: 0;
    771777                        margin-top: $l_s_list_row_margin_top;
    772778                        transition: visibility 0s $l_s_transition_duration, opacity $l_s_transition_duration ease-out, line-height $l_s_transition_duration ease-in-out, padding-top $l_s_transition_duration ease-in-out, margin $l_s_transition_duration ease-in-out;
     
    779785                            visibility: visible;
    780786                            opacity: 1 !important;
     787                            max-height: unset;
     788                            font-size: $l_s_font_size;
    781789                            line-height: $l_s_list_row_line_height !important;
    782790                            padding: $l_s_list_row_padding 0 $l_s_list_row_padding !important;
     
    785793                    }
    786794
     795                    .anrghg-display-toggle:checked + .anrghg-complement-list .anrghg-complement-row:target,
     796                    .anrghg-display-toggle:checked + .anrghg-complement-list .anrghg-complement-row:target *,
    787797                    .anrghg-display-toggle:not(:checked) + .anrghg-complement-list .anrghg-complement-row:target,
    788798                    .anrghg-display-toggle:not(:checked) + .anrghg-complement-list .anrghg-complement-row:target * {
     799                        max-height: unset;
     800                        font-size: $l_s_font_size;
    789801                        line-height: $l_s_list_row_line_height;
    790802                        padding: $l_s_list_row_padding 0 $l_s_list_row_padding;
  • anrghg/trunk/package.json

    r2964844 r2966760  
    11{
    22    "name": "anrghg",
    3     "version": " 1.14.4",
     3    "version": " 1.14.5",
    44    "description": "A.N.R.GHG Publishing Toolkit",
    55    "main": "index.js",
  • anrghg/trunk/readme.txt

    r2964844 r2966760  
    88Requires PHP: 7.0
    99Tested PHP up to: 8.1
    10 Package Version: 1.14.4.0
    11 Version: 1.14.4
     10Package Version: 1.14.5.0
     11Version: 1.14.5
    1212CAUTION: The following field is parsed in `trunk/` for release configuration:
    13 Stable Tag: 1.14.4
     13Stable Tag: 1.14.5
    1414License: GPLv2 or later
    1515License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    625625== Changelog ==
    626626
     627= 1.14.5 (2023-09-13) =
     628
     629* Notes and sources: Debug font size of Note lists and Source lists.
     630* Notes and sources: Remove gap between Note list label and Source list label in collapsed state.
     631
    627632= 1.14.4 (2023-09-09) =
    628633
  • anrghg/trunk/svn-revs.txt

    r2964844 r2966760  
    1111Past revisions:
    1212
     131.14.4.0       2964844  2023-09-09 20:45:10 +0000 (Sat, 09 Sep 2023)
    13141.14.3.0       2964790  2023-09-09 15:11:19 +0000 (Sat, 09 Sep 2023)
    14151.14.2.0       2964638  2023-09-08 20:31:28 +0000 (Fri, 08 Sep 2023)
Note: See TracChangeset for help on using the changeset viewer.