Skip to content

Commit

Permalink
6.2.0.2 release prep
Browse files Browse the repository at this point in the history
  • Loading branch information
dcooney committed Nov 3, 2023
1 parent 4f3df78 commit 9dca4e1
Show file tree
Hide file tree
Showing 14 changed files with 14,139 additions and 8,586 deletions.
14 changes: 12 additions & 2 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, ajax, lazy load, endless scroll, infinite scrolling, lazy loading, pagination, ajax, ajax posts, woocommerce, ajax load more, masonry
Requires at least: 5.0
Requires PHP: 5.6
Tested up to: 6.3
Stable tag: 6.2.0.1
Tested up to: 6.4
Stable tag: 6.2.0.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -261,6 +261,16 @@ How to install Ajax Load More.

== Changelog ==

= 6.2.0.2 - November 3, 2023 =
* FIX: Fixed issue with paging URLs when using Elementor add-on with WooCommerce products and WP archive templates.
* FIX: Fixed issue with Cache and Paging add-ons throwing an error on initial page load and causing posts not to load..
* NEW: Added `alm_restapi_url` hook to update the URL base REST API calls.
```
add_filter( 'alm_restapi_url', function(){
return 'https://mywebsite.com';
});
```

= 6.2.0.1 - October 20, 2023 =
* HOTFIX: Fixed issue with speed variable when loading Ajax Load More in a SPA application or via HTTP request.

Expand Down
19 changes: 4 additions & 15 deletions ajax-load-more.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,20 @@
/**
* Plugin Name: Ajax Load More
* Plugin URI: https://connekthq.com/plugins/ajax-load-more
* Description: The ultimate solution to add infinite scroll functionality to your website.
* Description: The ultimate solution to add infinite scroll and load more functionality to your website.
* Text Domain: ajax-load-more
* Author: Darren Cooney
* Twitter: @KaptonKaos
* Author URI: https://connekthq.com
* Version: 6.2.0.1
* Version: 6.2.0.2
* License: GPL
* Copyright: Darren Cooney & Connekt Media
*
* @package AjaxLoadMore
*/

/*
* FIX: Fixed issue with paging URLs when using Elementor add-on with WooCommerce products and WP archive templates.
* FIX: Fixed issue with Cache and Paging add-ons throwing an error on initial page load and causing posts not to load..
* NEW: Added `alm_restapi_url` hook to update the URL base REST API calls.
```
add_filter( 'alm_restapi_url', function(){
return 'https://google.com';
});
```
*/

define( 'ALM_VERSION', '6.2.0.1' );
define( 'ALM_RELEASE', 'October 20, 2023' );
define( 'ALM_VERSION', '6.2.0.2' );
define( 'ALM_RELEASE', 'Novemver 3, 2023' );
define( 'ALM_STORE_URL', 'https://connekthq.com' );

// Plugin installation helpers.
Expand Down
2 changes: 1 addition & 1 deletion build/admin/index.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array(), 'version' => '8b37e600b83a7774ad4a');
<?php return array('dependencies' => array(), 'version' => 'cf6b7cc79fb2357f6ea2');
Loading

0 comments on commit 9dca4e1

Please sign in to comment.