Skip to content

Commit 44e0896

Browse files
committed
Tagging 1.0.2
1 parent 9e2d374 commit 44e0896

File tree

3 files changed

+37
-38
lines changed

3 files changed

+37
-38
lines changed

.github/workflows/deploy.yml

Lines changed: 25 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,28 @@
11
name: Deploy to WordPress.org
22
on:
3-
release:
4-
types: [published]
3+
release:
4+
types: [published]
55
jobs:
6-
tag:
7-
name: New release
8-
runs-on: ubuntu-latest
9-
steps:
10-
- name: Checkout code
11-
uses: actions/checkout@v2
12-
- name: Build
13-
run: |
14-
npm install
15-
npm run build
16-
- name: WordPress Plugin Deploy
17-
id: deploy
18-
uses: 10up/action-wordpress-plugin-deploy@stable
19-
with:
20-
generate-zip: true
21-
env:
22-
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
23-
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
24-
- name: Upload release asset
25-
uses: actions/upload-release-asset@v1
26-
env:
27-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28-
with:
29-
upload_url: ${{ github.event.release.upload_url }}
30-
asset_path: ${{github.workspace}}/${{ github.event.repository.name }}.zip
31-
asset_name: ${{ github.event.repository.name }}.zip
32-
asset_content_type: application/zip
6+
tag:
7+
name: New release
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v2
12+
- name: WordPress Plugin Deploy
13+
id: deploy
14+
uses: 10up/action-wordpress-plugin-deploy@stable
15+
with:
16+
generate-zip: true
17+
env:
18+
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
19+
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
20+
- name: Upload release asset
21+
uses: actions/upload-release-asset@v1
22+
env:
23+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24+
with:
25+
upload_url: ${{ github.event.release.upload_url }}
26+
asset_path: ${{github.workspace}}/${{ github.event.repository.name }}.zip
27+
asset_name: ${{ github.event.repository.name }}.zip
28+
asset_content_type: application/zip

README.txt

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ Donate link: https://connekthq.com/donate/
55
Tags: ajax load more, search, searchwp, search results, filter, ajax, infinite scroll
66
Requires at least: 3.6
77
Tested up to: 4.7
8-
Stable tag: 1.0.1
8+
Stable tag: 1.0.2
99
License: GPLv2 or later
1010
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1111

1212
An Ajax Load More extension that adds compatibility with SearchWP plugin.
1313

1414
== Description ==
15-
**Ajax Load More for SearchWP** is a tiny extension that provides the functionality for returning [SearchWP](https://searchwp.com) query results to [Ajax Load More](https://wordpress.org/plugins/ajax-load-more/) for infinite scrolling.
15+
**Ajax Load More for SearchWP** is a tiny extension that provides the functionality for returning [SearchWP](https://searchwp.com) query results to [Ajax Load More](https://wordpress.org/plugins/ajax-load-more/) for infinite scrolling.
1616

1717
The extension works by providing a connection point between Ajax Load More and SearchWP and is available for users running at least Ajax Load More 2.13.0 and SearchWP 2.6.1.
1818

19-
= Implementation Steps =
19+
= Implementation Steps =
2020
1. Activate plugin.
2121
2. Create Ajax Load More shortcode with a unique ID parameter.
2222
3. Add custom `alm_query_args` filter to your theme functions.php - [Learn More](https://connekthq.com/plugins/ajax-load-more/extensions/searchwp/#how-it-works).
@@ -29,8 +29,8 @@ The extension works by providing a connection point between Ajax Load More and S
2929
Requires SearchWP > 2.6.1
3030

3131
= How does this work? =
32-
This extensions works by using the [alm_query_args](https://connekthq.com/plugins/ajax-load-more/docs/filter-hooks/#alm_query_args) filter to pass values to the SWP_Query and then back to Ajax Load More.
33-
[View Example](https://gist.github.com/dcooney/54bed833e51d862e204337cc7a0e18a1)
32+
This extensions works by using the [alm_query_args](https://connekthq.com/plugins/ajax-load-more/docs/filter-hooks/#alm_query_args) filter to pass values to the SWP_Query and then back to Ajax Load More.
33+
[View Example](https://gist.github.com/dcooney/54bed833e51d862e204337cc7a0e18a1)
3434

3535

3636
= How do I pass a search term to SearchWP =
@@ -47,11 +47,9 @@ In your Ajax Load More Repeater Template you can do the following, which uses th
4747
echo alm_searchwp_highlight( $excerpt, $args );
4848

4949

50-
5150
== Screenshots ==
5251

5352

54-
5553
== Installation ==
5654

5755
= Uploading in WordPress Dashboard =
@@ -71,12 +69,17 @@ In your Ajax Load More Repeater Template you can do the following, which uses th
7169

7270
== Changelog ==
7371

72+
= 1.0.2 - April 17, 2021 =
73+
* UPDATE - Added support for highlighting the search term in SearchWP results with Ajax Load More. See plugin FAQs.
74+
75+
7476
= 1.0.1 - November 28, 2016 =
7577
* UPDATE - Updating SWP_Query to only return post IDs.
7678

79+
7780
= 1.0 - November 25, 2016 =
7881
* Initial Release.
7982

8083

8184
== Upgrade Notice ==
82-
* None
85+
* None

ajax-load-more-for-searchwp.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Author: Darren Cooney
88
Twitter: @KaptonKaos
99
Author URI: https://connekthq.com
10-
Version: 1.0.1
10+
Version: 1.0.2
1111
License: GPL
1212
Copyright: Darren Cooney & Connekt Media
1313
*/

0 commit comments

Comments
 (0)