PluginProbe
Easy Footnotes / 1.0.12
Easy Footnotes v1.0.12
trunk 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.10 1.1.11 1.1.12 1.1.13 1.1.14 1.1.2 All 32 releases
← All changes | readme.txt +59 -5 1.0.3 → 1.0.12 View file →
@@ -2,10 +2,10 @@
2 2 Contributors: yingling017
3 3 Donate link: http://jasonyingling.me
4 4 Tags: footnotes, read, blogging, hover, tooltips, editing, endnotes, Formatting, writing, bibliography, notes, reference
5 5 Requires at least: 3.0.1
6 -Tested up to: 4.1
7 -Stable tag: 1.0.3
6 +Tested up to: 4.9.1
7 +Stable tag: 1.0.12
8 8 License: GPLv2 or later
9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html
10 10
11 11 Easy Footnotes let's you quickly and easily add footnotes throughout your WordPress posts using a simple shortcode in the text editor.
@@ -35,13 +35,13 @@
35 35 I know, but that's not really a question.
36 36
37 37 = Oh right, why is that so awesome? =
38 38
39 -Because it's easy. And it's integrated with the qTip2 jQuery plugin to display your footnotes in lovely tooltips on hover. Plus it automatically numbers your footnotes in the order you enter them into your post.
39 +Because it's easy. And it's integrated with the qTip2 jQuery plugin to display your footnotes in lovely tooltips on hover. Plus it automatically numbers your footnotes in the order you enter them into your post.
40 40
41 41 = Any plans for the future? =
42 42
43 -Yeah, I'll be integrating more of qTip's options for displaying the tooltips. Give users the ability to set their own icons and labels. And much more as I get user feedback.
43 +Yeah, I'll be integrating more of qTip's options for displaying the tooltips. Give users the ability to set their own icons and labels. And much more as I get user feedback.
44 44
45 45 = That sounds great, but I was thinking more personally. You know, are you up to anything tonight? Want to grab some pizza? =
46 46
47 47 How did you even get in here?
@@ -57,8 +57,35 @@
57 57 2. Several footnotes (feetnote?) at the bottom of the post.
58 58
59 59 == Changelog ==
60 60
61 += 1.0.12 =
62 +* Changing how footnotes are numbered to avoid duplicates caused by `the_content` filtering being applied earlier in themes.
63 +
64 += 1.0.11 =
65 +* Fixed bug to prevent tooltips from opening off the screen
66 +
67 += 1.0.10 =
68 +* Added in extra sanitization for user inputs within admin
69 +
70 += 1.0.9 =
71 +* Fixed issue causing notice of undefined index on admin screen. Adjustment to how footnote's handle html special chars.
72 +
73 += 1.0.8 =
74 +* Added the Qtip2 unfocus event for hiding footnotes on iPad and other touch devices.
75 +
76 += 1.0.7 =
77 +* Fixed issue where Footnote title was showing on pages without any footnotes once activated through the settings. Also changed the priority of the add_filter('the_content') call to be 20 in order to show above Jetpack Related Posts
78 +
79 += 1.0.6 =
80 +* Added the ability to insert a title above the footnote section at the bottom of the post content. This is controlled in the Easy Footnotes Settings page that can be found under Settings in the WordPress Dashboard.
81 +
82 += 1.0.5 =
83 +* Updating logic for appending footnotes to the bottom of posts. Now only appends to single posts, custom post types and pages that are using the main post query. Also fixed footnote count when multiple posts are shown in the content on one page, such as the home page. Footnotes outside of the single post also now link to the footnote within the single post.
84 +
85 += 1.0.4 =
86 +* Fixed bug where footnotes were being appended to the end of the content on home pages and ignoring the more tag
87 +
61 88 = 1.0.3 =
62 89 * Added a delay of 400ms to the footnote closing so it stays open better when hovered
63 90
64 91 = 1.0.2 =
@@ -81,5 +108,32 @@
81 108 = 1.0.2 =
82 109 I messed up the version tag on 1.0.1. Just upping it 1.0.2 for precautions.
83 110
84 111 = 1.0.3 =
85 -Added a 400ms delay to the footnote closing via qTip. This allows the footnote to stay open better when mousing into for access to links.
112 +Added a 400ms delay to the footnote closing via qTip. This allows the footnote to stay open better when mousing into for access to links.
113 +
114 += 1.0.4 =
115 +Fixed bug where footnotes were being appended to the end of the content on home pages and ignoring the more tag
116 +
117 += 1.0.5 =
118 +Updated logic for appending footnotes to the bottom of single posts and pages. Now using is_singular and is_main_query as opposed to just is_single. This allows for appending posts to the bottom of posts, custom post types, and pages. Also fixed logic for numbering posts on the home page when showing multiple posts. Footnotes outside of the single post also now link to the footnote within the single post.
119 +
120 += 1.0.6 =
121 +Added the ability to insert a title above the footnote section at the bottom of the post content. This is controlled in the Easy Footnotes Settings page that can be found under Settings in the WordPress Dashboard.
122 +
123 += 1.0.7 =
124 +Fixed issue where Footnote title was showing on pages without any footnotes once activated through the settings. Also changed the priority of the add_filter('the_content') call to be 20 in order to show above Jetpack Related Posts
125 +
126 += 1.0.8 =
127 +Improved footnote usability on touch devices.
128 +
129 += 1.0.9 =
130 +Fixed issue causing notice of undefined index on admin screen. Adjustment to how footnote's handle html special chars.
131 +
132 += 1.0.10 =
133 +Sanitizing inputs
134 +
135 += 1.0.11 =
136 +Fixed bug to prevent tooltips from opening off the screen
137 +
138 += 1.0.12 =
139 +Changing how footnotes are numbered to avoid duplicates caused by `the_content` filtering being applied earlier in themes.