Plugin Directory

Changeset 3237581


Ignore:
Timestamp:
02/10/2025 04:45:22 AM (13 months ago)
Author:
painlessanalytics
Message:

Update to version 0.9.12 from GitHub

Location:
painless-analytics
Files:
34 added
4 deleted
5 edited
1 copied

Legend:

Unmodified
Added
Removed
  • painless-analytics/tags/0.9.12/README.md

    r3237559 r3237581  
    1 # HTML Page Sitemap WordPress Plugin
    2 HTML Page Sitemap WordPress Plugin, By [Angelo Mandato](https://angelo.mandato.com).
     1# Painless Analytics WordPress Plugin
     2Painless Analytics WordPress Plugin, more details coming soon.
    33
    4 [HTML Page Sitemap on GitHub](https://github.com/mandato-wordpress/html-sitemap)
    5 
    6 [HTML Page Sitemap on WordPress.org](https://wordpress.org/plugins/html-sitemap/)
    7 
  • painless-analytics/tags/0.9.12/readme.txt

    r3237559 r3237581  
    1 === HTML Page Sitemap ===
    2 Contributors: amandato
    3 Donate link: http://angelo.mandato.com/contact/
    4 Tags: html sitemap, sitemap, page, pages, shortcode
    5 Requires at least: 2.7
     1=== Painless Analytics ===
     2Contributors: amandato, painlessanalytics
     3Tags: analytics, statistics, stats, metrics, traffic
     4Donate link: https://www.painlessanalytics.com
     5Requires at least: 5.5
    66Tested up to: 6.7.1
    7 Stable tag: 1.3.5
    8 Requires PHP: 4.3
     7Requires PHP: 5.4
     8Stable tag: 0.9.12
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1111
    12 Adds an HTML (Not XML) sitemap of your pages (not posts) by entering the shortcode [html_sitemap], perfect for those who use WordPress as a CMS.
     12Simplified web analytics focused on the metrics that matter most.
    1313
    1414== Description ==
    15 This simple plugin adds an HTML (Not XML) sitemap of your pages (not posts) by entering the shortcode [html_sitemap] in the page content. This simple plugin is configured with the `[html_sitemap]` shortcode. This plugin can display a sitemap with specific depths, from a specific parent page and include/exclude specific children. Shortcode attributes include `sort_column`, `sort_order`, `exclude`, `include`, `depth`, `child_of`, `meta_key`, `meta_value`, `authors`, `number`,  `offset`, `post_type`,  and `post_status`, everything the [`wp_list_pages`](https://codex.wordpress.org/Function_Reference/wp_list_pages) function accepts. In addition to the `wp_list_pages` options you can also set `class`, `id`, and `ordered_list_type` options.
    1615
    17 **This plugin is perfect for those who use WordPress as a CMS.**
     16**[Painless Analytics](https://www.painlessanalytics.com/)** is a new web analytics service that reports the metrics that matter the most.
    1817
    19 Please see documentation for the [`wp_list_pages`](https://codex.wordpress.org/Function_Reference/wp_list_pages) for a complete list of options.
     18**Note:** This plugin interacts with the **[Painless Analytics](https://www.painlessanalytics.com/)** API to retrieve and include analytics tracking code on your website. By using this plugin, your site communicates with the Painless Analytics service. Please refer to their [Privacy Policy](https://www.painlessanalytics.com/company/legal/privacy/) and [Terms of Use](https://www.painlessanalytics.com/company/legal/terms/) to learn more.
    2019
    21 The following options may be configured in addition to options documented in [`wp_list_pages`](https://codex.wordpress.org/Function_Reference/wp_list_pages):
     20**An account (FREE or paid) from [Painless Analytics](https://www.painlessanalytics.com/) is required to use this plugin**
    2221
    23 The `class` and `id` attributes may specified set class or id values for the initial HTML Page Sitemap `<ul>` list tag.
     22== Additional Info ==
    2423
    25 The `child_of` attribute value can be a numeric page ID (integer), or use the custom value CURRENT or PARENT. The value "CURRENT" will use the current page's ID. The value "PARENT" will uses the curent page's parent ID.
     24This plugin simplifies the implementation of Painless Analytics web analytics service onto a website. This plugin requires a valid Painless Analytics *link code* in order to function.
    2625
    27 The `ordered_list_type` attribute is an HTML Page Sitemap plugin exclusive option for specfiying an ordered list type. Not setting a ordered_list_type will use an unordered list (default).
     26Painless Analytics does not track personal identifiable information (PII) or use cookies. Painless Analytics JavaScript code is loaded asynchronously, it does not interfere with other page operations or cause page loading delays.
    2827
    29 * `ordered_list_type="1"` - The list items will be numbered with numbers
    30 * `ordered_list_type="A"` - The list items will be numbered with uppercase letters
    31 * `ordered_list_type="a"` - The list items will be numbered with lowercase letters
    32 * `ordered_list_type="I"` - The list items will be numbered with uppercase roman numbers
    33 * `ordered_list_type="i"` - The list items will be numbered with lowercase roman numbers
     28== Installation ==
    3429
    35 Note: This plugin only works with Hierarchical Custom Post Types. This plugin will not work if your post type is not heirarchical.
    36 
    37 = Examples =
    38 First example shows how to add a sitemap for the entire site.
    39 
    40 `[html_sitemap]`
    41 
    42 Example shortcode will add a sitemap to a page displaying a depth limit of 3 and exclude page ID 708.
    43 
    44 `[html_sitemap depth=3 exclude=708]`
    45 
    46 Example shortcode will add a sitemap to a page displaying only children and grandchildren of the current page.
    47 
    48 `[html_sitemap depth=2 child_of=CURRENT]`
    49 
    50 Example shortcode will add a sitemap to a page displaying children and grandchildren of the parent page (would include the curent page as well).
    51 
    52 `[html_sitemap depth=2 child_of=PARENT]`
    53 
    54 Example shortcode will add a sitemap displaying the page modified date with the pages sorted by the menu order number.
    55 
    56 `[html_sitemap show_date=modified sort_column=menu_order]`
    57 
    58 Example shortcode excluding multiple pages with ids 708, 1024 and 42.
    59 
    60 `[html_sitemap exclude="708,1024,42"]`
    61 
    62 Example shortcode will add a class attribute to the `<ul>` tag.
    63 
    64 `[html_sitemap class="custom-class"]`
    65 
    66 Example shortcode will add an id attribute to the `<ul>` tag.
    67 
    68 `[html_sitemap id="custom-element-id"]`
    69 
    70 Example shortcode will display an ordered list using lowercase letters with a depth of 1.
    71 
    72 `[html_sitemap ordered_list_type="a" depth=1]`
    73 
    74 For the latest information visit the website.
    75 
    76 [http://www.pluginspodcast.com/plugins/html-page-sitemap/](http://www.pluginspodcast.com/plugins/html-page-sitemap/)
    77 
    78 = ATTENTION: HTML-SITEMAP SHORTCODE HAS CHANGED =
    79 Though `html-sitemap` still works, the new HTML Sitemap shortcode is `html_sitemap`. The dash/hyphen may not get processed correctly if other plugins use the same prefix such as the Syntax Highlighter plugin. [read more](http://core.trac.wordpress.org/ticket/11948), [and more](http://core.trac.wordpress.org/ticket/17657)
    80 
    81 == Frequently Asked Questions ==
    82 
    83  = Why is there no settings page for the plugin? =
    84  I put together this plugin in less than 2 hours, this readme.txt actually took longer to create. This plugin is meant to be simple and easy to use. To keep it simple, it doesn't add settings to your database or clutter to your admin screens.
    85  
    86 == Installation ==
    8730= Automatic Plugin Installation =
    8831Install using the [built-in plugin installer](https://codex.wordpress.org/Administration_Screens#Add_New_Plugins):
    8932
    90331. Go to Plugins > Add New.
    91 2. Type in "HTML Page Sitemap" in *Search* Plugins box.
    92 3. Find "HTML Page Sitemap" in the search results.
     342. Type in "Painless Analytics" in *Search* Plugins box.
     353. Find "Painless Analytics" in the search results.
    93364. Click *Install Now* to install the WordPress Plugin.
    94375. Click Activate to activate it.
    95 6. Add the shortcode [html_sitemap] to the page(s) of your choice.
     386. Go to Painless Analytics settings page to setup tracking.
    9639
    9740= Manual Plugin Installation =
    9841
    99 1. Download this plugin to your desktop.
    100 2. Extract the plugin zip file (or compressed folder) to your desktop.
     421. Download this plugin to your computer.
     432. Extract the plugin zip file (or compressed folder).
    101443. With your FTP program, upload the plugin folder to the wp-content/plugins folder in your WordPress directory online.
    102 4. Go to Plugins screen and find "HTML Page Sitemap" plugin in the list.
     454. Go to Plugins screen and find "Painless Analytics" plugin in the list.
    103465. Click Activate to activate it.
    104 6. Add the shortcode [html_sitemap] to the page(s) of your choice.
     476. Go to Painless Analytics settings page to setup tracking.
     48
     49== Frequently Asked Questions ==
     50
     51= Does Painless Analytics replace or conflict with Google Analytics? =
     52No, you can use Google Analytics with Painless Analytics.
     53
     54= Does Painless Analytics work with Google Tag Manager? =
     55Yes. Instead of installing this plugin you could add Painless Analytics to GTM, though we do not recommend that.
     56
     57= Where do I get a Painless Analytics embed code? =
     58Painless Analytics embed codes are available at [painlessanalytics.com](https://www.painlessanalytics.com/). FREE and paid plans are available. Each embed code is unique to each website registered at Painless Analytics.
     59
     60= Does this replace other web analytics? =
     61No! If you already have analytics setup with other tools or services we strongly suggest you them in place.
     62Painless Analytics is intended to make your life easier, but if it doesn't help you, no worries.
    10563
    10664== Screenshots ==
    107 1. HTML Page Sitemap in the Default WordPress theme.
     651. Painless Analytics initial setup
     662. Painless Analytics setup, enter your embed code and click 'Save Changes'
     673. Painless Analytics is now enabled on your site
    10868
    10969== Changelog ==
    11070
    111 = 1.3.5 =
    112 * Released on 2/09/2025
    113 * Tested with WordPress up to version 6.7.1
    114 * Project now managed on [GitHub](https://github.com/mandato-wordpress/html-sitemap)
     71= 0.9.12 =
     72* 02/09/2025
     73* Tested with 6.7.1
    11574
     75= 0.9.9 =
     76* 11/07/2024
     77* Setup GitHub to deploy to svn
    11678
    117 = 1.3.4 =
    118 * Released on 8/13/2024
    119 * Tested with WordPress up to version 6.6
    120 * Readme.txt updated to latest requirements (ref: https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/)
     79= 0.9.5 =
     80* 11/06/2024
     81* Added banner and icon images for the assets folder.
    12182
     83= 0.9.4 =
     84* 10/03/2024
     85* Added `wp_unslash()` when sanitizing `HTTP_HOST` per instruction from the official Plugin Check plugin
    12286
    123 = 1.3.3 =
    124 * Released on 3/14/2020
    125 * Tested with WordPress up to version 5.4
     87= 0.9.3 =
     88* 10/03/2024
     89* Added documentation of use of a 3rd Party or external service (Painless Analytics)
     90* Moved API url to be a private member variable of the Painless Analytics class
     91* Fixed Internationalization issue: text domain not set in the header.php
     92* Made `sanitizeSettings()` a member function (no longer static) to reference member variables of object
     93* Added `sanitize_text_field()` to `$_SERVER['HTTP_HOST']`
     94* Standardized on `painlessanalytics_` prefix for functions and global object names
     95* For security, all files now `exit()` if they are accessed directly
     96* Confirmed the settings page form is using appropriate nonce code
     97* Replaced `dirname(__FILE__)` calls to use defines `PAINLESSANALYTICS_PLUGIN_PATH` and `PAINLESSANALYTICS_PLUGIN_URL` in the core plugin file
    12698
     99= 0.9.2 =
     100* 08/26/2024
     101* Updated the text-domain to match new slug name _painless-analytics_
    127102
    128 = 1.3.2 =
    129 * Released on 10/05/2018
    130 * Fixed warning messages in PHP7 when modifying the $args value when it is not an array.
     103= 0.9.1 =
     104* 08/26/2024
     105* Added new logic to setup embed code by using a Link Code available from Painless Analytics
    131106
     107= 0.9.0 =
     108Initial release of Painless Analytics plugin
    132109
    133 = 1.3.1 =
    134 * Released on 1/8/2018
    135 * Added a blank index.php to root plugin folder for extra security.
    136 * Tested with WordPress up to version 4.9.1
    137 
    138 
    139 = 1.3 =
    140 * Released on 11/24/2015
    141 * Added `ordered_list_type` option to use an ordered list rather than unordered. (Thanks Allie for the feature suggestion!)
    142 * Tested with WordPress 4.4 beta 4
    143 
    144 
    145 = 1.2 =
    146 * Released on 9/15/2015
    147 * Tested with WordPress 4.3.
    148 * Added class and id attribute options for specifying HTML class and/or id attributes in the unordered list `<ul>`. (Thanks phorbidden for the feature suggestion!)
    149 * Updated readme, added additional examples for the class and id attribute options.
    150 
    151 
    152 = 1.1.4 =
    153 * Released on 1/11/2015
    154 * Tested with WordPress 4.1.
    155 * End of source no longer includes closing PHP tag as recommended by WordPress.
    156 * Updated readme, added additional example excluding multipe pages.
    157 
    158 
    159 = 1.1.3 =
    160 * Released 3/11/2013
    161 * HTML Sitemap compatible with latest versions of WordPress up to 3.5.1
    162 * Nothing has changed with this plugin other than the readme.txt.
    163 
    164 
    165 = 1.1.2 =
    166 * Released 1/31/2012
    167 * Hyphen in shortcode changed to underscore. `html_sitemap` and `htmlsitemap` shortcodes work.  [read more here](http://wordpress.org/support/topic/plugins-wont-coexist?replies=5)
    168 * HTML Sitemap compatible with latest versions of WordPress up to 3.3.1
    169 
    170 = 1.1.1 =
    171 * Released 6/27/2010
    172 * HTML Sitemap compatible with latest versions of WordPress 2.9 and 3.0.
    173 
    174 = 1.1.0 =
    175 * Released on 11/24/2009
    176 * Fixed typos in readme
    177 * Added child_of options
    178 ** child_of=CURRENT (starts list of pages that are children of the current page)
    179 ** child_of=PARENT (starts list of pages that are of the same level as current page)
    180 
    181 = 1.0.0 =
    182 * Released on 09/05/2009
    183 * Initial release of HTML Page Sitemap plugin.
     110= Full Version History =
     111Please see the changelog on Github.
    184112
    185113== Upgrade Notice ==
    186114None at this time.
    187115
    188 
    189116== Contributors ==
    190 [Angelo Mandato](https://angelo.mandato.com), Founder and CTO of [Painless Analytics](https://www.painlessanalytics.com) - Plugin author
    191 
     117Angelo Mandato, Founder and CTO of [Painless Analytics](https://www.painlessanalytics.com) - Plugin author
  • painless-analytics/trunk/README.md

    r3237559 r3237581  
    1 # HTML Page Sitemap WordPress Plugin
    2 HTML Page Sitemap WordPress Plugin, By [Angelo Mandato](https://angelo.mandato.com).
     1# Painless Analytics WordPress Plugin
     2Painless Analytics WordPress Plugin, more details coming soon.
    33
    4 [HTML Page Sitemap on GitHub](https://github.com/mandato-wordpress/html-sitemap)
    5 
    6 [HTML Page Sitemap on WordPress.org](https://wordpress.org/plugins/html-sitemap/)
    7 
  • painless-analytics/trunk/readme.txt

    r3237559 r3237581  
    1 === HTML Page Sitemap ===
    2 Contributors: amandato
    3 Donate link: http://angelo.mandato.com/contact/
    4 Tags: html sitemap, sitemap, page, pages, shortcode
    5 Requires at least: 2.7
     1=== Painless Analytics ===
     2Contributors: amandato, painlessanalytics
     3Tags: analytics, statistics, stats, metrics, traffic
     4Donate link: https://www.painlessanalytics.com
     5Requires at least: 5.5
    66Tested up to: 6.7.1
    7 Stable tag: 1.3.5
    8 Requires PHP: 4.3
     7Requires PHP: 5.4
     8Stable tag: 0.9.12
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1111
    12 Adds an HTML (Not XML) sitemap of your pages (not posts) by entering the shortcode [html_sitemap], perfect for those who use WordPress as a CMS.
     12Simplified web analytics focused on the metrics that matter most.
    1313
    1414== Description ==
    15 This simple plugin adds an HTML (Not XML) sitemap of your pages (not posts) by entering the shortcode [html_sitemap] in the page content. This simple plugin is configured with the `[html_sitemap]` shortcode. This plugin can display a sitemap with specific depths, from a specific parent page and include/exclude specific children. Shortcode attributes include `sort_column`, `sort_order`, `exclude`, `include`, `depth`, `child_of`, `meta_key`, `meta_value`, `authors`, `number`,  `offset`, `post_type`,  and `post_status`, everything the [`wp_list_pages`](https://codex.wordpress.org/Function_Reference/wp_list_pages) function accepts. In addition to the `wp_list_pages` options you can also set `class`, `id`, and `ordered_list_type` options.
    1615
    17 **This plugin is perfect for those who use WordPress as a CMS.**
     16**[Painless Analytics](https://www.painlessanalytics.com/)** is a new web analytics service that reports the metrics that matter the most.
    1817
    19 Please see documentation for the [`wp_list_pages`](https://codex.wordpress.org/Function_Reference/wp_list_pages) for a complete list of options.
     18**Note:** This plugin interacts with the **[Painless Analytics](https://www.painlessanalytics.com/)** API to retrieve and include analytics tracking code on your website. By using this plugin, your site communicates with the Painless Analytics service. Please refer to their [Privacy Policy](https://www.painlessanalytics.com/company/legal/privacy/) and [Terms of Use](https://www.painlessanalytics.com/company/legal/terms/) to learn more.
    2019
    21 The following options may be configured in addition to options documented in [`wp_list_pages`](https://codex.wordpress.org/Function_Reference/wp_list_pages):
     20**An account (FREE or paid) from [Painless Analytics](https://www.painlessanalytics.com/) is required to use this plugin**
    2221
    23 The `class` and `id` attributes may specified set class or id values for the initial HTML Page Sitemap `<ul>` list tag.
     22== Additional Info ==
    2423
    25 The `child_of` attribute value can be a numeric page ID (integer), or use the custom value CURRENT or PARENT. The value "CURRENT" will use the current page's ID. The value "PARENT" will uses the curent page's parent ID.
     24This plugin simplifies the implementation of Painless Analytics web analytics service onto a website. This plugin requires a valid Painless Analytics *link code* in order to function.
    2625
    27 The `ordered_list_type` attribute is an HTML Page Sitemap plugin exclusive option for specfiying an ordered list type. Not setting a ordered_list_type will use an unordered list (default).
     26Painless Analytics does not track personal identifiable information (PII) or use cookies. Painless Analytics JavaScript code is loaded asynchronously, it does not interfere with other page operations or cause page loading delays.
    2827
    29 * `ordered_list_type="1"` - The list items will be numbered with numbers
    30 * `ordered_list_type="A"` - The list items will be numbered with uppercase letters
    31 * `ordered_list_type="a"` - The list items will be numbered with lowercase letters
    32 * `ordered_list_type="I"` - The list items will be numbered with uppercase roman numbers
    33 * `ordered_list_type="i"` - The list items will be numbered with lowercase roman numbers
     28== Installation ==
    3429
    35 Note: This plugin only works with Hierarchical Custom Post Types. This plugin will not work if your post type is not heirarchical.
    36 
    37 = Examples =
    38 First example shows how to add a sitemap for the entire site.
    39 
    40 `[html_sitemap]`
    41 
    42 Example shortcode will add a sitemap to a page displaying a depth limit of 3 and exclude page ID 708.
    43 
    44 `[html_sitemap depth=3 exclude=708]`
    45 
    46 Example shortcode will add a sitemap to a page displaying only children and grandchildren of the current page.
    47 
    48 `[html_sitemap depth=2 child_of=CURRENT]`
    49 
    50 Example shortcode will add a sitemap to a page displaying children and grandchildren of the parent page (would include the curent page as well).
    51 
    52 `[html_sitemap depth=2 child_of=PARENT]`
    53 
    54 Example shortcode will add a sitemap displaying the page modified date with the pages sorted by the menu order number.
    55 
    56 `[html_sitemap show_date=modified sort_column=menu_order]`
    57 
    58 Example shortcode excluding multiple pages with ids 708, 1024 and 42.
    59 
    60 `[html_sitemap exclude="708,1024,42"]`
    61 
    62 Example shortcode will add a class attribute to the `<ul>` tag.
    63 
    64 `[html_sitemap class="custom-class"]`
    65 
    66 Example shortcode will add an id attribute to the `<ul>` tag.
    67 
    68 `[html_sitemap id="custom-element-id"]`
    69 
    70 Example shortcode will display an ordered list using lowercase letters with a depth of 1.
    71 
    72 `[html_sitemap ordered_list_type="a" depth=1]`
    73 
    74 For the latest information visit the website.
    75 
    76 [http://www.pluginspodcast.com/plugins/html-page-sitemap/](http://www.pluginspodcast.com/plugins/html-page-sitemap/)
    77 
    78 = ATTENTION: HTML-SITEMAP SHORTCODE HAS CHANGED =
    79 Though `html-sitemap` still works, the new HTML Sitemap shortcode is `html_sitemap`. The dash/hyphen may not get processed correctly if other plugins use the same prefix such as the Syntax Highlighter plugin. [read more](http://core.trac.wordpress.org/ticket/11948), [and more](http://core.trac.wordpress.org/ticket/17657)
    80 
    81 == Frequently Asked Questions ==
    82 
    83  = Why is there no settings page for the plugin? =
    84  I put together this plugin in less than 2 hours, this readme.txt actually took longer to create. This plugin is meant to be simple and easy to use. To keep it simple, it doesn't add settings to your database or clutter to your admin screens.
    85  
    86 == Installation ==
    8730= Automatic Plugin Installation =
    8831Install using the [built-in plugin installer](https://codex.wordpress.org/Administration_Screens#Add_New_Plugins):
    8932
    90331. Go to Plugins > Add New.
    91 2. Type in "HTML Page Sitemap" in *Search* Plugins box.
    92 3. Find "HTML Page Sitemap" in the search results.
     342. Type in "Painless Analytics" in *Search* Plugins box.
     353. Find "Painless Analytics" in the search results.
    93364. Click *Install Now* to install the WordPress Plugin.
    94375. Click Activate to activate it.
    95 6. Add the shortcode [html_sitemap] to the page(s) of your choice.
     386. Go to Painless Analytics settings page to setup tracking.
    9639
    9740= Manual Plugin Installation =
    9841
    99 1. Download this plugin to your desktop.
    100 2. Extract the plugin zip file (or compressed folder) to your desktop.
     421. Download this plugin to your computer.
     432. Extract the plugin zip file (or compressed folder).
    101443. With your FTP program, upload the plugin folder to the wp-content/plugins folder in your WordPress directory online.
    102 4. Go to Plugins screen and find "HTML Page Sitemap" plugin in the list.
     454. Go to Plugins screen and find "Painless Analytics" plugin in the list.
    103465. Click Activate to activate it.
    104 6. Add the shortcode [html_sitemap] to the page(s) of your choice.
     476. Go to Painless Analytics settings page to setup tracking.
     48
     49== Frequently Asked Questions ==
     50
     51= Does Painless Analytics replace or conflict with Google Analytics? =
     52No, you can use Google Analytics with Painless Analytics.
     53
     54= Does Painless Analytics work with Google Tag Manager? =
     55Yes. Instead of installing this plugin you could add Painless Analytics to GTM, though we do not recommend that.
     56
     57= Where do I get a Painless Analytics embed code? =
     58Painless Analytics embed codes are available at [painlessanalytics.com](https://www.painlessanalytics.com/). FREE and paid plans are available. Each embed code is unique to each website registered at Painless Analytics.
     59
     60= Does this replace other web analytics? =
     61No! If you already have analytics setup with other tools or services we strongly suggest you them in place.
     62Painless Analytics is intended to make your life easier, but if it doesn't help you, no worries.
    10563
    10664== Screenshots ==
    107 1. HTML Page Sitemap in the Default WordPress theme.
     651. Painless Analytics initial setup
     662. Painless Analytics setup, enter your embed code and click 'Save Changes'
     673. Painless Analytics is now enabled on your site
    10868
    10969== Changelog ==
    11070
    111 = 1.3.5 =
    112 * Released on 2/09/2025
    113 * Tested with WordPress up to version 6.7.1
    114 * Project now managed on [GitHub](https://github.com/mandato-wordpress/html-sitemap)
     71= 0.9.12 =
     72* 02/09/2025
     73* Tested with 6.7.1
    11574
     75= 0.9.9 =
     76* 11/07/2024
     77* Setup GitHub to deploy to svn
    11678
    117 = 1.3.4 =
    118 * Released on 8/13/2024
    119 * Tested with WordPress up to version 6.6
    120 * Readme.txt updated to latest requirements (ref: https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/)
     79= 0.9.5 =
     80* 11/06/2024
     81* Added banner and icon images for the assets folder.
    12182
     83= 0.9.4 =
     84* 10/03/2024
     85* Added `wp_unslash()` when sanitizing `HTTP_HOST` per instruction from the official Plugin Check plugin
    12286
    123 = 1.3.3 =
    124 * Released on 3/14/2020
    125 * Tested with WordPress up to version 5.4
     87= 0.9.3 =
     88* 10/03/2024
     89* Added documentation of use of a 3rd Party or external service (Painless Analytics)
     90* Moved API url to be a private member variable of the Painless Analytics class
     91* Fixed Internationalization issue: text domain not set in the header.php
     92* Made `sanitizeSettings()` a member function (no longer static) to reference member variables of object
     93* Added `sanitize_text_field()` to `$_SERVER['HTTP_HOST']`
     94* Standardized on `painlessanalytics_` prefix for functions and global object names
     95* For security, all files now `exit()` if they are accessed directly
     96* Confirmed the settings page form is using appropriate nonce code
     97* Replaced `dirname(__FILE__)` calls to use defines `PAINLESSANALYTICS_PLUGIN_PATH` and `PAINLESSANALYTICS_PLUGIN_URL` in the core plugin file
    12698
     99= 0.9.2 =
     100* 08/26/2024
     101* Updated the text-domain to match new slug name _painless-analytics_
    127102
    128 = 1.3.2 =
    129 * Released on 10/05/2018
    130 * Fixed warning messages in PHP7 when modifying the $args value when it is not an array.
     103= 0.9.1 =
     104* 08/26/2024
     105* Added new logic to setup embed code by using a Link Code available from Painless Analytics
    131106
     107= 0.9.0 =
     108Initial release of Painless Analytics plugin
    132109
    133 = 1.3.1 =
    134 * Released on 1/8/2018
    135 * Added a blank index.php to root plugin folder for extra security.
    136 * Tested with WordPress up to version 4.9.1
    137 
    138 
    139 = 1.3 =
    140 * Released on 11/24/2015
    141 * Added `ordered_list_type` option to use an ordered list rather than unordered. (Thanks Allie for the feature suggestion!)
    142 * Tested with WordPress 4.4 beta 4
    143 
    144 
    145 = 1.2 =
    146 * Released on 9/15/2015
    147 * Tested with WordPress 4.3.
    148 * Added class and id attribute options for specifying HTML class and/or id attributes in the unordered list `<ul>`. (Thanks phorbidden for the feature suggestion!)
    149 * Updated readme, added additional examples for the class and id attribute options.
    150 
    151 
    152 = 1.1.4 =
    153 * Released on 1/11/2015
    154 * Tested with WordPress 4.1.
    155 * End of source no longer includes closing PHP tag as recommended by WordPress.
    156 * Updated readme, added additional example excluding multipe pages.
    157 
    158 
    159 = 1.1.3 =
    160 * Released 3/11/2013
    161 * HTML Sitemap compatible with latest versions of WordPress up to 3.5.1
    162 * Nothing has changed with this plugin other than the readme.txt.
    163 
    164 
    165 = 1.1.2 =
    166 * Released 1/31/2012
    167 * Hyphen in shortcode changed to underscore. `html_sitemap` and `htmlsitemap` shortcodes work.  [read more here](http://wordpress.org/support/topic/plugins-wont-coexist?replies=5)
    168 * HTML Sitemap compatible with latest versions of WordPress up to 3.3.1
    169 
    170 = 1.1.1 =
    171 * Released 6/27/2010
    172 * HTML Sitemap compatible with latest versions of WordPress 2.9 and 3.0.
    173 
    174 = 1.1.0 =
    175 * Released on 11/24/2009
    176 * Fixed typos in readme
    177 * Added child_of options
    178 ** child_of=CURRENT (starts list of pages that are children of the current page)
    179 ** child_of=PARENT (starts list of pages that are of the same level as current page)
    180 
    181 = 1.0.0 =
    182 * Released on 09/05/2009
    183 * Initial release of HTML Page Sitemap plugin.
     110= Full Version History =
     111Please see the changelog on Github.
    184112
    185113== Upgrade Notice ==
    186114None at this time.
    187115
    188 
    189116== Contributors ==
    190 [Angelo Mandato](https://angelo.mandato.com), Founder and CTO of [Painless Analytics](https://www.painlessanalytics.com) - Plugin author
    191 
     117Angelo Mandato, Founder and CTO of [Painless Analytics](https://www.painlessanalytics.com) - Plugin author
Note: See TracChangeset for help on using the changeset viewer.