Skip to content

Commit

Permalink
Prep release of 7.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dcooney committed Oct 1, 2024
1 parent 885fed3 commit dfb7a66
Show file tree
Hide file tree
Showing 8 changed files with 865 additions and 391 deletions.
10 changes: 7 additions & 3 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Donate link: https://connekthq.com/donate/
Tags: infinite scroll, load more, lazy load, endless scroll, ajax load more
Requires at least: 5.0
Requires PHP: 5.6
Tested up to: 6.5
Stable tag: 7.1.2
Tested up to: 6.6
Stable tag: 7.1.3
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -256,10 +256,14 @@ How to install Ajax Load More.
2. Repeater Templates: Manage the front-end display and styling of Ajax loaded content.
3. Custom Repeaters: Unlock the ability to create an infinite number of Repeater Templates.
4. Shortcode Builder: Create complex WordPress queries in seconds using the intuitive Shortcode Builder.
5. Implementation: Insert the Ajax Load More shortcode directly into the WordPress content editor or a theme template file.
5. Implementation: Insert the Ajax Load More shortcode directly into the WordPress block editor or a theme template file.

== Changelog ==

= 7.1.3 - October 1, 2024 =
* UPDATE: Various security fixes.


= 7.1.2 - May 30, 2024 =
* FIX: Fixed issue with full article loading in Next Page add-on.
* UPDATE: Various security fixes.
Expand Down
9 changes: 6 additions & 3 deletions ajax-load-more.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
* Author: Darren Cooney
* Twitter: @KaptonKaos
* Author URI: https://connekthq.com
* Version: 7.1.2
* Version: 7.1.3
* License: GPL
* Copyright: Darren Cooney & Connekt Media
*
* @package AjaxLoadMore
*/

define( 'ALM_VERSION', '7.1.2' );
define( 'ALM_RELEASE', 'May 30, 2024' );
define( 'ALM_VERSION', '7.1.3' );
define( 'ALM_RELEASE', 'October 1, 2024' );
define( 'ALM_STORE_URL', 'https://connekthq.com' );

// Plugin installation helpers.
Expand Down Expand Up @@ -163,6 +163,9 @@ public function alm_define_constants() {
if ( ! defined( 'ALM_TABS_ITEM_NAME' ) ) {
define( 'ALM_TABS_ITEM_NAME', '54855' );
}
if ( ! defined( 'ALM_TEMPLATES_ITEM_NAME' ) ) {
define( 'ALM_TEMPLATES_ITEM_NAME', '0000' );
}
if ( ! defined( 'ALM_THEME_REPEATERS_ITEM_NAME' ) ) {
define( 'ALM_THEME_REPEATERS_ITEM_NAME', '8860' );
}
Expand Down
2 changes: 1 addition & 1 deletion build/frontend/ajax-load-more.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array(), 'version' => 'e50969999283f10d6c00');
<?php return array('dependencies' => array(), 'version' => '63db3f96dd14a4a6b88b');
Loading

0 comments on commit dfb7a66

Please sign in to comment.