Skip to content

Commit 6c8ece8

Browse files
authored
Merge pull request #58 from brainstormforce/wp-6.2-compat
Broken link inside editor and checked compatibility with 6.2
2 parents d844b36 + d32226b commit 6c8ece8

File tree

7 files changed

+16
-10
lines changed

7 files changed

+16
-10
lines changed

.github/workflows/push-asset-readme-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@master
1212
- name: WordPress.org plugin asset/readme update
13-
uses: 10up/action-wordpress-plugin-asset-update@master
13+
uses: 10up/action-wordpress-plugin-asset-update@stable
1414
env:
1515
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
1616
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
**Tags:** liftlms, course, page-buider, beaver builder, elementor, visual composer
44
**Requires at least:** 4.4
55
**Requires PHP:** 5.3
6-
**Tested up to:** 6.1
7-
**Stable tag:** 1.0.5
6+
**Tested up to:** 6.2
7+
**Stable tag:** 1.0.6
88
**License:** GPLv2 or later
99
**License URI:** https://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -42,6 +42,9 @@ This plugin currently works best with the <a href="https://wpastra.com/?utm_sour
4242

4343
## Changelog ##
4444

45+
### 1.0.6 ###
46+
- Fix: Updated broken link found inside editor.
47+
4548
### 1.0.5 ###
4649
- Improvement: Added compatibility to WordPress 6.1
4750

admin/class-ctlearndash-admin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public function help_meta_box_callback() {
101101
echo sprintf(
102102
/* translators: 1: anchor start, 2: anchor close */
103103
esc_html__( '%1$sSee list of all LearnDash shortcodes%2$s that you can add in the custom template.', 'custom-template-learndash' ),
104-
'<a href="https://learndash.com/docs/shortcodes/" target="_blank" rel="noopner" >',
104+
'<a href="https://www.learndash.com/support/docs/core/shortcodes-blocks/" target="_blank" rel="noopner" >',
105105
'</a>'
106106
);
107107

custom-template-learndash.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Author URI: https://pratikchaskar.com/
88
* Text Domain: custom-template-learndash
99
* Domain Path: /languages
10-
* Version: 1.0.5
10+
* Version: 1.0.6
1111
*
1212
* @package Custom Template for LearnDash
1313
*/
@@ -25,7 +25,7 @@ function ctlearndash_activation() {
2525
add_option( 'ctlearndash_activation', 'is-activated' );
2626
}
2727

28-
define( 'CTLEARNDASH_VER', '1.0.5' );
28+
define( 'CTLEARNDASH_VER', '1.0.6' );
2929
define( 'CTLEARNDASH_FILE', __FILE__ );
3030
define( 'CTLEARNDASH_DIR', plugin_dir_path( __FILE__ ) );
3131
define( 'CTLEARNDASH_URL', plugins_url( '/', __FILE__ ) );

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "custom-template-learndash",
3-
"version": "1.0.2",
3+
"version": "1.0.6",
44
"main": "Gruntfile.js",
55
"author": "YOUR NAME HERE",
66
"devDependencies": {

readme.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Contributors: pratikchaskar, wpcrafter
33
Tags: liftlms, course, page-buider, beaver builder, elementor, visual composer
44
Requires at least: 4.4
55
Requires PHP: 5.3
6-
Tested up to: 6.1
7-
Stable tag: 1.0.5
6+
Tested up to: 6.2
7+
Stable tag: 1.0.6
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -42,6 +42,9 @@ This plugin currently works best with the <a href="https://wpastra.com/?utm_sour
4242

4343
== Changelog ==
4444

45+
= 1.0.6 =
46+
- Fix: Updated broken link found inside editor.
47+
4548
= 1.0.5 =
4649
- Improvement: Added compatibility to WordPress 6.1
4750

0 commit comments

Comments
 (0)