Changeset 3049253
- Timestamp:
- 03/11/2024 04:09:31 PM (2 years ago)
- Location:
- sortable-dashboard-to-do-list
- Files:
-
- 2 edited
-
tags/1.0.3/readme.txt (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sortable-dashboard-to-do-list/tags/1.0.3/readme.txt
r3049125 r3049253 1 === Sortable Dashboard To-Do List===2 Contributors: Jeffinho2016 ,jfgmedia3 Tags: dashboard, to-do, task, list, admin1 === JS Error Logger === 2 Contributors: Jeffinho2016 3 Tags: javascript, js, error, log, debug 4 4 Requires at least: 5.0 5 Tested up to: 6.4. 26 Stable tag: 1.0 .25 Tested up to: 6.4.3 6 Stable tag: 1.0 7 7 Requires PHP: 7.1.0 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 10 11 Adds a to-do list to the WordPress dashboard.11 Logs front-end javascript errors on the back-end. 12 12 13 13 == Description == 14 14 15 The plugin adds a sortable to-do list to your WP dashboard. This can be useful for developers, or even for content writers.15 The plugin catches most JS errors, logs them, and displays them on the backend. 16 16 17 Its features:17 Here are some of its features: 18 18 <ul> 19 19 <li> 20 To-do list item creation, edition and deletion via ajax. No page reload.20 Except for the plugin settings, there is no database storage involved. Log is written in a ".log" file. 21 21 </li> 22 22 <li> 23 To-do items are timestamped. You'll never forget when they were created, or when you last edited them.23 Display latest JS errors in a dashboard widget. 24 24 </li> 25 25 <li> 26 Option to display the to-do list on the website (for the current logged-in user only).26 Refresh errors from the dashboard widget. 27 27 </li> 28 28 <li> 29 Website list can be collapsed and expanded. But website items can currently NOT be edited or sorted.29 See the full error log on a separate page. 30 30 </li> 31 31 <li> 32 Website list remembers its last display state (showed or collapsed) 32 Ignore errors if the user agent contains a specific string. 33 33 </li> 34 34 <li> 35 Website list remembers the size, position and state of opened to-do items 35 Ignore errors if the error contains a specific string. 36 36 </li> 37 37 <li> 38 Possibility to decide to not show some to-do items on the website.38 Ignore errors if the script url contains a specific string. 39 39 </li> 40 40 <li> 41 The list is individual. Each user has their own list. 42 </li> 43 <li> 44 For multisite, it's one list per user and per site. 41 See which page and which script triggered the errors. 45 42 </li> 46 43 </ul> 44 45 = Additional Options = 46 The plugin cleans the log every 24 hours, to only keep the last 100 entries. 47 To enable more entries, there's the "js-error-logger-max-log-entries" WP filter, which takes the number of entries as the parameter. 48 49 To prevent logging errors coming from infinite loops, the plugin will not log more than 10 errors per page load. 50 To increase or decrease this number, there's the "js-error-logger-max-errors-per-page" WP filter, which takes the number of errors as the parameter. 51 52 By default, the plugin will call the server each time an error is triggered. 53 If you wish to make only one server call when the page visibility changes (tab change, browser reduced, etc...), use the "js-error-logger-send-on-visibility-change" WP filter, and set its return value to true. 54 55 = Multisite = 56 The plugin works with multisite. There's one error log per site. 47 57 48 58 == Installation == 49 59 50 60 1. Visit the Plugins page within your dashboard and select "Add New" 51 2. Search for " Sortable Dashboard To-Do List"61 2. Search for "JS Error Logger" 52 62 3. Click "Install" 63 64 == Screenshots == 65 66 1. The To-Do List dashboard widget 67 2. The website list, in its collapsed (left) and expanded (right) forms 68 3. The website list, with a bunch of tasks opened for consultation 53 69 54 70 == Upgrade Notice == 55 71 Not available at the moment 56 72 57 == Frequently Asked Questions ==58 59 = Will this plugin slow down my site? =60 61 It will have no impact on site speed whatsoever. The plugin only launches for users that have the ability to edit posts.62 63 73 == Changelog == 64 65 = 1.0.3 =66 * Fix: Some translatable strings were not on the correct text domain67 68 = 1.0.2 =69 * Added an uninstall hook to remove all plugin traces from database on uninstall70 71 = 1.0.1 =72 * Added JFG Media as author and contributor73 74 74 75 = 1.0 = -
sortable-dashboard-to-do-list/trunk/readme.txt
r3049130 r3049253 1 === Sortable Dashboard To-Do List===2 Contributors: Jeffinho2016 ,jfgmedia3 Tags: dashboard, to-do, task, list, admin1 === JS Error Logger === 2 Contributors: Jeffinho2016 3 Tags: javascript, js, error, log, debug 4 4 Requires at least: 5.0 5 Tested up to: 6.4. 26 Stable tag: 1.0 .35 Tested up to: 6.4.3 6 Stable tag: 1.0 7 7 Requires PHP: 7.1.0 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 10 11 Adds a to-do list to the WordPress dashboard.11 Logs front-end javascript errors on the back-end. 12 12 13 13 == Description == 14 14 15 The plugin adds a sortable to-do list to your WP dashboard. This can be useful for developers, or even for content writers.15 The plugin catches most JS errors, logs them, and displays them on the backend. 16 16 17 Its features:17 Here are some of its features: 18 18 <ul> 19 19 <li> 20 To-do list item creation, edition and deletion via ajax. No page reload.20 Except for the plugin settings, there is no database storage involved. Log is written in a ".log" file. 21 21 </li> 22 22 <li> 23 To-do items are timestamped. You'll never forget when they were created, or when you last edited them.23 Display latest JS errors in a dashboard widget. 24 24 </li> 25 25 <li> 26 Option to display the to-do list on the website (for the current logged-in user only).26 Refresh errors from the dashboard widget. 27 27 </li> 28 28 <li> 29 Website list can be collapsed and expanded. But website items can currently NOT be edited or sorted.29 See the full error log on a separate page. 30 30 </li> 31 31 <li> 32 Website list remembers its last display state (showed or collapsed) 32 Ignore errors if the user agent contains a specific string. 33 33 </li> 34 34 <li> 35 Website list remembers the size, position and state of opened to-do items 35 Ignore errors if the error contains a specific string. 36 36 </li> 37 37 <li> 38 Possibility to decide to not show some to-do items on the website.38 Ignore errors if the script url contains a specific string. 39 39 </li> 40 40 <li> 41 The list is individual. Each user has their own list. 42 </li> 43 <li> 44 For multisite, it's one list per user and per site. 41 See which page and which script triggered the errors. 45 42 </li> 46 43 </ul> 44 45 = Additional Options = 46 The plugin cleans the log every 24 hours, to only keep the last 100 entries. 47 To enable more entries, there's the "js-error-logger-max-log-entries" WP filter, which takes the number of entries as the parameter. 48 49 To prevent logging errors coming from infinite loops, the plugin will not log more than 10 errors per page load. 50 To increase or decrease this number, there's the "js-error-logger-max-errors-per-page" WP filter, which takes the number of errors as the parameter. 51 52 By default, the plugin will call the server each time an error is triggered. 53 If you wish to make only one server call when the page visibility changes (tab change, browser reduced, etc...), use the "js-error-logger-send-on-visibility-change" WP filter, and set its return value to true. 54 55 = Multisite = 56 The plugin works with multisite. There's one error log per site. 47 57 48 58 == Installation == 49 59 50 60 1. Visit the Plugins page within your dashboard and select "Add New" 51 2. Search for " Sortable Dashboard To-Do List"61 2. Search for "JS Error Logger" 52 62 3. Click "Install" 63 64 == Screenshots == 65 66 1. The To-Do List dashboard widget 67 2. The website list, in its collapsed (left) and expanded (right) forms 68 3. The website list, with a bunch of tasks opened for consultation 53 69 54 70 == Upgrade Notice == 55 71 Not available at the moment 56 72 57 == Frequently Asked Questions ==58 59 = Will this plugin slow down my site? =60 61 It will have no impact on site speed whatsoever. The plugin only launches for users that have the ability to edit posts.62 63 73 == Changelog == 64 65 = 1.0.3 =66 * Fix: Some translatable strings were not on the correct text domain67 68 = 1.0.2 =69 * Added an uninstall hook to remove all plugin traces from database on uninstall70 71 = 1.0.1 =72 * Added JFG Media as author and contributor73 74 74 75 = 1.0 =
Note: See TracChangeset
for help on using the changeset viewer.