Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
fmfernandes committed Sep 5, 2024
1 parent 85e869d commit 1d81c19
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 50 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ That's it! Your visitors can now load more posts by clicking the load more butto

## Changelog

### 1.0.5
* Fix - Infinite scroll would duplicate some posts due to the same AJAX call being executed twice

### 1.0.4
* Update - Version

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "team51-plugin-qllm",
"version": "1.0.4",
"version": "1.0.5",
"description": "A qllm for WP.com Special Projects plugins",
"author": {
"name": "WordPress.com Special Projects Team",
Expand Down
2 changes: 1 addition & 1 deletion query-loop-load-more.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Query Loop Load More
* Plugin URI: https://github.com/a8cteam51/query-loop-load-more
* Description: Adds a load more option to the Query Loop Pagination block in Gutenberg.
* Version: 1.0.4
* Version: 1.0.5
* Requires at least: 6.2
* Tested up to: 6.6.1
* Requires PHP: 8.0
Expand Down
97 changes: 50 additions & 47 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,47 +1,50 @@
=== Query Loop Load More ===
Contributors: wpspecialprojects, tommusrhodus
Tags: gutenberg, editor, block editor, load more, query loop
Requires at least: 6.2
Tested up to: 6.6.1
Stable tag: 1.0.4
Requires PHP: 8.0
License: GPLv3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Adds a load more option to the Query Loop Pagination block in Gutenberg, allowing users to load more posts without refreshing the page.

== Description ==

Adds a load more option to the Query Loop Pagination block in Gutenberg, allowing users to load more posts without refreshing the page.

To use this plugin, you must first add the Query Loop block into your post content, then add the Pagination block inside the Query Loop. When working with the Pagination block, you will see new options to enable load more on the block.

The load more option allows you to set a loading text parameter and also the button text. The load more button works with the alignment options and arrow options of the pagination block.

Here is how to enable the load more option:

* Add the Query Loop block to your post content.
* Inside the Query Loop block, add the Pagination block.
* In the Pagination block settings, enable the "Load More" option.
* Set the loading text parameter and the button text.
* Customize the alignment and arrow options if desired.
* That's it! Your visitors can now load more posts by clicking the load more button without refreshing the page.

== Changelog ==

= 1.0.4 =
* Update - Version

= 1.0.3 =
* Fix - Loading more posts on "Inherit query from template"

= 1.0.2 =
* Add - SVN deployment workflow
* Update - Version and Stable tag

= 1.0.1 =
* Fix - Unify GPL license
* Fix - Unify text domain and plugin slug

= 1.0.0 =
Initial release.
=== Query Loop Load More ===
Contributors: wpspecialprojects, tommusrhodus
Tags: gutenberg, editor, block editor, load more, query loop
Requires at least: 6.2
Tested up to: 6.6.1
Stable tag: 1.0.5
Requires PHP: 8.0
License: GPLv3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Adds a load more option to the Query Loop Pagination block in Gutenberg, allowing users to load more posts without refreshing the page.

== Description ==

Adds a load more option to the Query Loop Pagination block in Gutenberg, allowing users to load more posts without refreshing the page.

To use this plugin, you must first add the Query Loop block into your post content, then add the Pagination block inside the Query Loop. When working with the Pagination block, you will see new options to enable load more on the block.

The load more option allows you to set a loading text parameter and also the button text. The load more button works with the alignment options and arrow options of the pagination block.

Here is how to enable the load more option:

* Add the Query Loop block to your post content.
* Inside the Query Loop block, add the Pagination block.
* In the Pagination block settings, enable the "Load More" option.
* Set the loading text parameter and the button text.
* Customize the alignment and arrow options if desired.
* That's it! Your visitors can now load more posts by clicking the load more button without refreshing the page.

== Changelog ==

= 1.0.5 =
* Fix - Infinite scroll would duplicate some posts due to the same AJAX call being executed twice

= 1.0.4 =
* Update - Version

= 1.0.3 =
* Fix - Loading more posts on "Inherit query from template"

= 1.0.2 =
* Add - SVN deployment workflow
* Update - Version and Stable tag

= 1.0.1 =
* Fix - Unify GPL license
* Fix - Unify text domain and plugin slug

= 1.0.0 =
Initial release.

0 comments on commit 1d81c19

Please sign in to comment.