release 2.2.4 to replace 2.2.3 ASAP

git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@2440595 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
pewgeuges 2020-12-16 12:06:11 +00:00
parent f3318e524f
commit e5831a42b3
12 changed files with 96 additions and 45 deletions

View file

@ -17,8 +17,9 @@
* 2.2.0 add options, redistribute, update strings 2020-12-12T2135+0100 * 2.2.0 add options, redistribute, update strings 2020-12-12T2135+0100
* 2.2.0 shortcode for reference container custom position 2020-12-13T2055+0100 * 2.2.0 shortcode for reference container custom position 2020-12-13T2055+0100
* 2.2.2 Custom CSS settings container migration 2020-12-15T0709+0100 * 2.2.2 Custom CSS settings container migration 2020-12-15T0709+0100
* 2.2.4 move backlink symbol selection under previous tab 2020-12-16T1244+0100
* *
* Last modified: 2020-12-15T0928+0100 * Last modified: 2020-12-16T1256+0100
*/ */
/** /**
@ -118,6 +119,7 @@ class MCI_Footnotes_Layout_Settings extends MCI_Footnotes_LayoutEngine {
$l_arr_MetaBoxes[] = $this->addMetaBox("settings", "excerpts", __("Footnotes in excerpts", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "Excerpts"); $l_arr_MetaBoxes[] = $this->addMetaBox("settings", "excerpts", __("Footnotes in excerpts", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "Excerpts");
$l_arr_MetaBoxes[] = $this->addMetaBox("settings", "love", MCI_Footnotes_Config::C_STR_PLUGIN_HEADING_NAME . ' ' . MCI_Footnotes_Config::C_STR_LOVE_SYMBOL_HEADING, "Love"); $l_arr_MetaBoxes[] = $this->addMetaBox("settings", "love", MCI_Footnotes_Config::C_STR_PLUGIN_HEADING_NAME . ' ' . MCI_Footnotes_Config::C_STR_LOVE_SYMBOL_HEADING, "Love");
$l_arr_MetaBoxes[] = $this->addMetaBox("customize", "hyperlink-arrow", __("Backlink symbol", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "HyperlinkArrow");
$l_arr_MetaBoxes[] = $this->addMetaBox("customize", "superscript", __("Referrer typesetting and formatting", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "Superscript"); $l_arr_MetaBoxes[] = $this->addMetaBox("customize", "superscript", __("Referrer typesetting and formatting", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "Superscript");
$l_arr_MetaBoxes[] = $this->addMetaBox("customize", "mouse-over-box", __("Tooltips", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "MouseOverBox"); $l_arr_MetaBoxes[] = $this->addMetaBox("customize", "mouse-over-box", __("Tooltips", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "MouseOverBox");
$l_arr_MetaBoxes[] = $this->addMetaBox("customize", "mouse-over-box-truncation", __("Tooltip truncation", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "MouseOverBoxTruncation"); $l_arr_MetaBoxes[] = $this->addMetaBox("customize", "mouse-over-box-truncation", __("Tooltip truncation", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "MouseOverBoxTruncation");
@ -159,23 +161,25 @@ class MCI_Footnotes_Layout_Settings extends MCI_Footnotes_LayoutEngine {
); );
// basic responsive page layout options: // basic responsive page layout options:
$l_arr_PageLayoutOptions = array( $l_arr_PageLayoutOptions = array(
"none" => __("no additional external style sheet", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "none" => __("No", MCI_Footnotes_Config::C_STR_PLUGIN_NAME),
"reference-container" => __("only to the reference container", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "reference-container" => __("to the reference container exclusively", MCI_Footnotes_Config::C_STR_PLUGIN_NAME),
"page-content" => __("to the div element starting below the post title", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "entry-content" => __("to the div element starting below the post title", MCI_Footnotes_Config::C_STR_PLUGIN_NAME),
"main-content" => __("to the main element including the post title", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "main-content" => __("to the main element including the post title", MCI_Footnotes_Config::C_STR_PLUGIN_NAME),
); );
// options for the separating punctuation between backlinks: // options for the separating punctuation between backlinks:
// Unicode names are conventionally uppercase. $l_arr_Separators = array(
$l_arr_Separators = array( // Unicode character names are conventionally uppercase.
"comma" => __("COMMA", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "comma" => __("COMMA", MCI_Footnotes_Config::C_STR_PLUGIN_NAME),
"semicolon" => __("SEMICOLON", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "semicolon" => __("SEMICOLON", MCI_Footnotes_Config::C_STR_PLUGIN_NAME),
"en_dash" => __("EN DASH", MCI_Footnotes_Config::C_STR_PLUGIN_NAME) "en_dash" => __("EN DASH", MCI_Footnotes_Config::C_STR_PLUGIN_NAME)
); );
// options for the terminating punctuation after backlinks: // options for the terminating punctuation after backlinks:
// The Unicode name of RIGHT PARENTHESIS was originally more accurate because it is bidi-mirrored. // The Unicode name of RIGHT PARENTHESIS was originally more accurate because
// this character is bidi-mirrored. Lets use the Unicode 1.0 name.
// The wrong names were enforced in spite of Unicode, that subsequently scrambled to correct. // The wrong names were enforced in spite of Unicode, that subsequently scrambled to correct.
$l_arr_Terminators = array( $l_arr_Terminators = array(
"period" => __("FULL STOP", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "period" => __("FULL STOP", MCI_Footnotes_Config::C_STR_PLUGIN_NAME),
// Unicode 1.0 name of RIGHT PARENTHESIS (represented as a left parenthesis in right-to-left scripts):
"parenthesis" => __("CLOSING PARENTHESIS", MCI_Footnotes_Config::C_STR_PLUGIN_NAME), "parenthesis" => __("CLOSING PARENTHESIS", MCI_Footnotes_Config::C_STR_PLUGIN_NAME),
"colon" => __("COLON", MCI_Footnotes_Config::C_STR_PLUGIN_NAME) "colon" => __("COLON", MCI_Footnotes_Config::C_STR_PLUGIN_NAME)
); );
@ -225,9 +229,7 @@ class MCI_Footnotes_Layout_Settings extends MCI_Footnotes_LayoutEngine {
"label-symbol" => $this->addLabel(MCI_Footnotes_Settings::C_BOOL_REFERENCE_CONTAINER_BACKLINK_SYMBOL_ENABLE, __("Display a backlink symbol:", MCI_Footnotes_Config::C_STR_PLUGIN_NAME)), "label-symbol" => $this->addLabel(MCI_Footnotes_Settings::C_BOOL_REFERENCE_CONTAINER_BACKLINK_SYMBOL_ENABLE, __("Display a backlink symbol:", MCI_Footnotes_Config::C_STR_PLUGIN_NAME)),
"symbol-enable" => $this->addSelectBox(MCI_Footnotes_Settings::C_BOOL_REFERENCE_CONTAINER_BACKLINK_SYMBOL_ENABLE, $l_arr_Enabled), "symbol-enable" => $this->addSelectBox(MCI_Footnotes_Settings::C_BOOL_REFERENCE_CONTAINER_BACKLINK_SYMBOL_ENABLE, $l_arr_Enabled),
"symbol-options" => $this->addSelectBox(MCI_Footnotes_Settings::C_STR_HYPERLINK_ARROW, MCI_Footnotes_Convert::getArrow()), "notice-symbol" => __("Please choose or input the symbol at the top of the next dashboard tab.", MCI_Footnotes_Config::C_STR_PLUGIN_NAME),
"symbol-custom" => $this->addTextBox(MCI_Footnotes_Settings::C_STR_HYPERLINK_ARROW_USER_DEFINED),
"notice-symbol" => __("Your input overrides the selection.", MCI_Footnotes_Config::C_STR_PLUGIN_NAME),
"label-switch" => $this->addLabel(MCI_Footnotes_Settings::C_BOOL_REFERENCE_CONTAINER_BACKLINK_SYMBOL_SWITCH, __("Symbol appended, not prepended:", MCI_Footnotes_Config::C_STR_PLUGIN_NAME)), "label-switch" => $this->addLabel(MCI_Footnotes_Settings::C_BOOL_REFERENCE_CONTAINER_BACKLINK_SYMBOL_SWITCH, __("Symbol appended, not prepended:", MCI_Footnotes_Config::C_STR_PLUGIN_NAME)),
"switch" => $this->addSelectBox(MCI_Footnotes_Settings::C_BOOL_REFERENCE_CONTAINER_BACKLINK_SYMBOL_SWITCH, $l_arr_Enabled), "switch" => $this->addSelectBox(MCI_Footnotes_Settings::C_BOOL_REFERENCE_CONTAINER_BACKLINK_SYMBOL_SWITCH, $l_arr_Enabled),
@ -736,6 +738,22 @@ class MCI_Footnotes_Layout_Settings extends MCI_Footnotes_LayoutEngine {
* *
* @since 2.1.4 moved to Settings > Reference container > Display a backlink symbol * @since 2.1.4 moved to Settings > Reference container > Display a backlink symbol
*/ */
public function HyperlinkArrow() {
// load template file
$l_obj_Template = new MCI_Footnotes_Template(MCI_Footnotes_Template::C_STR_DASHBOARD, "customize-hyperlink-arrow");
// replace all placeholders
$l_obj_Template->replace(
array(
"label-symbol" => $this->addLabel(MCI_Footnotes_Settings::C_STR_HYPERLINK_ARROW, __("Select the backlink symbol:", MCI_Footnotes_Config::C_STR_PLUGIN_NAME)),
"symbol-options" => $this->addSelectBox(MCI_Footnotes_Settings::C_STR_HYPERLINK_ARROW, MCI_Footnotes_Convert::getArrow()),
"symbol-custom" => $this->addTextBox(MCI_Footnotes_Settings::C_STR_HYPERLINK_ARROW_USER_DEFINED),
"notice-symbol" => __("Your input overrides the selection.", MCI_Footnotes_Config::C_STR_PLUGIN_NAME),
"description-symbol" => __("This setting cannot be moved into the reference container settings, because each tab is saved in a different place, so moving a setting breaks user data. Our apologies for having done so with this setting now moved back to the tab it pre-existed under.", MCI_Footnotes_Config::C_STR_PLUGIN_NAME),
)
);
// display template with replaced placeholders
echo $l_obj_Template->getContent();
}
/** /**
* Displays the custom css box. * Displays the custom css box.

View file

@ -22,8 +22,9 @@
* 2.1.6 set default priority level of the_content to 98 2020-12-10T0447+0100 * 2.1.6 set default priority level of the_content to 98 2020-12-10T0447+0100
* 2.2.0 reference container custom position shortcode 2020-12-13T2056+0100 * 2.2.0 reference container custom position shortcode 2020-12-13T2056+0100
* 2.2.2 Custom CSS settings container migration 2020-12-15T0709+0100 * 2.2.2 Custom CSS settings container migration 2020-12-15T0709+0100
* 2.2.4 move backlink symbol selection under previous tab 2020-12-16T1256+0100
* *
* Last modified: 2020-12-15T0744+0100 * Last modified: 2020-12-16T1256+0100
*/ */
@ -552,6 +553,8 @@ class MCI_Footnotes_Settings {
self::C_STR_REFERENCE_CONTAINER_POSITION_SHORTCODE => '[[references]]', self::C_STR_REFERENCE_CONTAINER_POSITION_SHORTCODE => '[[references]]',
self::C_BOOL_REFERENCE_CONTAINER_START_PAGE_ENABLE => 'yes', self::C_BOOL_REFERENCE_CONTAINER_START_PAGE_ENABLE => 'yes',
// backlink symbol:
self::C_BOOL_REFERENCE_CONTAINER_3COLUMN_LAYOUT_ENABLE => 'no', self::C_BOOL_REFERENCE_CONTAINER_3COLUMN_LAYOUT_ENABLE => 'no',
self::C_BOOL_REFERENCE_CONTAINER_BACKLINK_SYMBOL_ENABLE => 'yes', self::C_BOOL_REFERENCE_CONTAINER_BACKLINK_SYMBOL_ENABLE => 'yes',
self::C_BOOL_REFERENCE_CONTAINER_BACKLINK_SYMBOL_SWITCH => 'no', self::C_BOOL_REFERENCE_CONTAINER_BACKLINK_SYMBOL_SWITCH => 'no',
@ -598,6 +601,9 @@ class MCI_Footnotes_Settings {
"footnotes_storage_custom" => array( "footnotes_storage_custom" => array(
self::C_STR_HYPERLINK_ARROW => '↑',
self::C_STR_HYPERLINK_ARROW_USER_DEFINED => '',
self::C_STR_FOOTNOTES_TOOLTIP_READON_LABEL => 'Continue reading', self::C_STR_FOOTNOTES_TOOLTIP_READON_LABEL => 'Continue reading',
self::C_BOOL_FOOTNOTES_REFERRER_SUPERSCRIPT_TAGS => 'yes', self::C_BOOL_FOOTNOTES_REFERRER_SUPERSCRIPT_TAGS => 'yes',
@ -663,8 +669,6 @@ class MCI_Footnotes_Settings {
self::C_INT_FOOTNOTES_MOUSE_OVER_BOX_MAX_WIDTH => 450, self::C_INT_FOOTNOTES_MOUSE_OVER_BOX_MAX_WIDTH => 450,
self::C_STR_FOOTNOTES_MOUSE_OVER_BOX_SHADOW_COLOR => '#666666', self::C_STR_FOOTNOTES_MOUSE_OVER_BOX_SHADOW_COLOR => '#666666',
self::C_STR_HYPERLINK_ARROW => '↑',
self::C_STR_HYPERLINK_ARROW_USER_DEFINED => '',
// Custom CSS migrates to a dedicated tab: // Custom CSS migrates to a dedicated tab:
self::C_STR_CUSTOM_CSS => '', self::C_STR_CUSTOM_CSS => '',

View file

@ -30,7 +30,7 @@
* 2.2.0 support for custom position shortcode for reference container 2020-12-13T2058+0100 * 2.2.0 support for custom position shortcode for reference container 2020-12-13T2058+0100
* 2.2.3 custom CSS from new setting in header after legacy 2020-12-15T1128+0100 * 2.2.3 custom CSS from new setting in header after legacy 2020-12-15T1128+0100
* *
* Last modified: 2020-12-15T1128+0100 * Last modified: 2020-12-15T1140+0100
*/ */
// If called directly, abort: // If called directly, abort:
@ -258,11 +258,13 @@ class MCI_Footnotes_Task {
printf(" box-shadow: 2px 2px 11px %s;", $l_str_BoxShadowColor); printf(" box-shadow: 2px 2px 11px %s;", $l_str_BoxShadowColor);
} }
echo "}\r\n"; echo "}\r\n";
// set custom CSS to override settings, not conversely: // set custom CSS to override settings, not conversely:
echo MCI_Footnotes_Settings::instance()->get(MCI_Footnotes_Settings::C_STR_CUSTOM_CSS); // if dashboard tab migration acknowledged, disable legacy in case it was not cut:
if (!MCI_Footnotes_Convert::toBool(MCI_Footnotes_Settings::instance()->get(MCI_Footnotes_Settings::C_BOOL_CUSTOM_CSS_MIGRATED))) {
echo MCI_Footnotes_Settings::instance()->get(MCI_Footnotes_Settings::C_STR_CUSTOM_CSS);
}
echo MCI_Footnotes_Settings::instance()->get(MCI_Footnotes_Settings::C_STR_CUSTOM_CSS_NEW); echo MCI_Footnotes_Settings::instance()->get(MCI_Footnotes_Settings::C_STR_CUSTOM_CSS_NEW);
?> ?>
</style> </style>
<?php <?php

View file

@ -1,5 +1,5 @@
/** /**
* Basic responsive layout for the page content div * Basic responsive layout for the entry content div
* *
* Based on Hello Elementor v2.3.0 Basic responsive layout * Based on Hello Elementor v2.3.0 Basic responsive layout
* themes/hello-elementor/theme.css:8..31 * themes/hello-elementor/theme.css:8..31

View file

@ -9,6 +9,7 @@
* Since v2.1.4 of Footnotes * Since v2.1.4 of Footnotes
* *
* Last modified for v2.2.2 2020-12-15T1004+0100 * Last modified for v2.2.2 2020-12-15T1004+0100
* Last modified for v2.2.4 2020-12-16T0625+0100
* *
* The enqueuing of this style sheet is optional and can be * The enqueuing of this style sheet is optional and can be
* enabled in the Reference container settings. * enabled in the Reference container settings.
@ -29,13 +30,15 @@ This style sheet lets Footnotes reference containers come
into the benefit of the basic responsive layout style rules into the benefit of the basic responsive layout style rules
that would apply if the page were not built with Elementor. that would apply if the page were not built with Elementor.
This is mainly useful with Hello Elementor but it helps fix This is mainly useful with Hello Elementor, but it may help
also other themes like Twenty Twenty-One. fix also other themes like Twenty Twenty-One for display in
older browsers not yet supporting CSS variables.
*/ */
main, main,
.main-content, .main-content,
.site-main { .site-main,
div.hentry {
margin: 0 auto; margin: 0 auto;
} }
@ -43,7 +46,8 @@ main,
main, main,
.main-content, .main-content,
.site-main { .site-main,
div.hentry {
padding: 0 10px; padding: 0 10px;
} }
} }
@ -52,7 +56,8 @@ main,
main, main,
.main-content, .main-content,
.site-main { .site-main,
div.hentry {
max-width: 500px; max-width: 500px;
} }
} }
@ -61,7 +66,8 @@ main,
main, main,
.main-content, .main-content,
.site-main { .site-main,
div.hentry {
max-width: 600px; max-width: 600px;
} }
} }
@ -70,7 +76,8 @@ main,
main, main,
.main-content, .main-content,
.site-main { .site-main,
div.hentry {
max-width: 800px; max-width: 800px;
} }
} }
@ -79,7 +86,8 @@ main,
main, main,
.main-content, .main-content,
.site-main { .site-main,
div.hentry {
max-width: 960px; max-width: 960px;
} }
} }

View file

@ -8,7 +8,7 @@
* *
* Since v2.1.4 of Footnotes * Since v2.1.4 of Footnotes
* *
* Last modified for v2.2.2 2020-12-15T1046+0100 * Last modified for v2.2.4 2020-12-16T0624+0100
* *
* The enqueuing of this style sheet is optional and can be * The enqueuing of this style sheet is optional and can be
* enabled in the Reference container settings. * enabled in the Reference container settings.
@ -29,11 +29,13 @@ This style sheet lets Footnotes reference containers come
into the benefit of the basic responsive layout style rules into the benefit of the basic responsive layout style rules
that would apply if the page were not built with Elementor. that would apply if the page were not built with Elementor.
This is mainly useful with Hello Elementor but it helps fix This is mainly useful with Hello Elementor, but it may help
also other themes like Twenty Twenty-One. fix also other themes like Twenty Twenty-One for display in
older browsers not yet supporting CSS variables.
*/ */
.entry-content div.footnotes_reference_container, .entry-content div.footnotes_reference_container,
.entry-content > .footnotes_reference_container,
main div.footnotes_reference_container { main div.footnotes_reference_container {
margin: 0 auto; margin: 0 auto;
} }
@ -41,7 +43,8 @@ main div.footnotes_reference_container {
@media (max-width: 575px) { @media (max-width: 575px) {
.entry-content div.footnotes_reference_container, .entry-content div.footnotes_reference_container,
main div.footnotes_reference_container { .entry-content > .footnotes_reference_container,
main div.footnotes_reference_container {
padding: 0 10px; padding: 0 10px;
} }
} }
@ -49,6 +52,7 @@ main div.footnotes_reference_container {
@media (min-width: 576px) { @media (min-width: 576px) {
.entry-content div.footnotes_reference_container, .entry-content div.footnotes_reference_container,
.entry-content > .footnotes_reference_container,
main div.footnotes_reference_container { main div.footnotes_reference_container {
max-width: 500px; max-width: 500px;
} }
@ -57,6 +61,7 @@ main div.footnotes_reference_container {
@media (min-width: 768px) { @media (min-width: 768px) {
.entry-content div.footnotes_reference_container, .entry-content div.footnotes_reference_container,
.entry-content > .footnotes_reference_container,
main div.footnotes_reference_container { main div.footnotes_reference_container {
max-width: 600px; max-width: 600px;
} }
@ -65,6 +70,7 @@ main div.footnotes_reference_container {
@media (min-width: 992px) { @media (min-width: 992px) {
.entry-content div.footnotes_reference_container, .entry-content div.footnotes_reference_container,
.entry-content > .footnotes_reference_container,
main div.footnotes_reference_container { main div.footnotes_reference_container {
max-width: 800px; max-width: 800px;
} }
@ -73,6 +79,7 @@ main div.footnotes_reference_container {
@media (min-width: 1200px) { @media (min-width: 1200px) {
.entry-content div.footnotes_reference_container, .entry-content div.footnotes_reference_container,
.entry-content > .footnotes_reference_container,
main div.footnotes_reference_container { main div.footnotes_reference_container {
max-width: 960px; max-width: 960px;
} }

View file

@ -5,14 +5,14 @@
* Created-Time: 16:21 * Created-Time: 16:21
* Since: 1.0 * Since: 1.0
* *
* Version: 2.2.2 * Version: 2.2.4
* *
* Classes added to public.css may be added to the * Classes added to public.css may be added to the
* list documenting CSS classes for Custom CSS if * list documenting CSS classes for Custom CSS if
* recommended for general use. * recommended for general use.
* List in templates/dashboard/customize-css.html * List in templates/dashboard/customize-css.html
* *
* Last modified: 2020-12-15T0844+0100 * Last modified: 2020-12-16T1302+0100
*/ */
@ -195,8 +195,6 @@ Classes:
.footnote_backlink = <a> or <span> if identical footnotes are combined, or in second <td> in 3-column table .footnote_backlink = <a> or <span> if identical footnotes are combined, or in second <td> in 3-column table
.footnote_index_arrow = nested <span>, symbol only .footnote_index_arrow = nested <span>, symbol only
.footnote_plugin_text = second <td>, or third <td> in 3-column table .footnote_plugin_text = second <td>, or third <td> in 3-column table
*/ */
/* /*

View file

@ -5,9 +5,9 @@
* Created-Time: 16:21 * Created-Time: 16:21
* Since: 1.0 * Since: 1.0
* *
* Version: 2.2.2 * Version: 2.2.4
* *
* Last modified: 2020-12-15T1020+0100 * Last modified: 2020-12-16T1302+0100
*/ */

View file

@ -4,12 +4,12 @@
Plugin URI: https://wordpress.org/plugins/footnotes/ Plugin URI: https://wordpress.org/plugins/footnotes/
Description: time to bring footnotes to your website! footnotes are known from offline publishing and everybody takes them for granted when reading a magazine. Description: time to bring footnotes to your website! footnotes are known from offline publishing and everybody takes them for granted when reading a magazine.
Author: Mark Cheret Author: Mark Cheret
Version: 2.2.3 Version: 2.2.4
Author URI: http://cheret.de/plugins/footnotes-2/ Author URI: http://cheret.de/plugins/footnotes-2/
Text Domain: footnotes Text Domain: footnotes
Domain Path: /languages Domain Path: /languages
*/ */
define( 'FOOTNOTES_VERSION', '2.2.3' ); define( 'FOOTNOTES_VERSION', '2.2.4' );
/* /*
Copyright 2020 Mark Cheret (email: mark@cheret.de) Copyright 2020 Mark Cheret (email: mark@cheret.de)

View file

@ -4,7 +4,7 @@ Tags: footnote, footnotes, bibliography, formatting, notes, Post, posts, referen
Requires at least: 3.9 Requires at least: 3.9
Tested up to: 5.6 Tested up to: 5.6
Requires PHP: 5.6 Requires PHP: 5.6
Stable Tag: 2.2.3 Stable Tag: 2.2.4
License: GPLv3 or later License: GPLv3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html License URI: http://www.gnu.org/licenses/gpl-3.0.html
@ -80,6 +80,10 @@ Visit this swift write-up from a **footnotes** user by the name of **Southwest**
== Changelog == == Changelog ==
= 2.2.4 =
- Bugfix: Reference container: Backlink symbol selection: moved back to previous tab “Referrers and tooltips”
- Bugfix: Custom CSS: make inserting existing in header depend on migration complete checkbox status
= 2.2.3 = = 2.2.3 =
- Bugfix: Custom CSS: insert new in header after existing - Bugfix: Custom CSS: insert new in header after existing

View file

@ -0,0 +1,15 @@
<div class="footnotes_description">
<p>[[description-symbol]]</p>
</div>
<table id="customize_hyperlink_arrow" class="widefat fixed">
<tbody>
<tr>
<td>[[label-symbol]]</td>
<td>
[[symbol-options]]
[[symbol-custom]]
<span class="footnotes_notice">[[notice-symbol]]</span>
</td>
</tr>
</tbody>
</table>

View file

@ -30,12 +30,7 @@
</tr> </tr>
<tr> <tr>
<td>[[label-symbol]]</td> <td>[[label-symbol]]</td>
<td> <td>[[symbol-enable]] <span class="footnotes_notice">[[notice-symbol]]</span></td>
[[symbol-enable]]
[[symbol-options]]
[[symbol-custom]]
<span class="footnotes_notice">[[notice-symbol]]</span>
</td>
</tr> </tr>
<tr> <tr>
<td>[[label-switch]]</td> <td>[[label-switch]]</td>