Skip to content

Commit

Permalink
Merge branch 'dev' into fix/add-purchase-link-to-access-plan
Browse files Browse the repository at this point in the history
  • Loading branch information
brianhogg authored Jan 9, 2025
2 parents 1d4261e + a5edd68 commit 32b793c
Show file tree
Hide file tree
Showing 33 changed files with 1,536 additions and 3,619 deletions.
25 changes: 0 additions & 25 deletions .config/travis/add-on.yml

This file was deleted.

20 changes: 0 additions & 20 deletions .config/travis/e2e.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .config/travis/eslint.yml

This file was deleted.

129 changes: 0 additions & 129 deletions .config/travis/main.yml

This file was deleted.

10 changes: 1 addition & 9 deletions .github/SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,7 @@ Security Policy

## Supported Versions

LifterLMS 3.x is the only supported branch of LifterLMS. If you're using an unsupported version of LifterLMS we strongly recommend you upgrade to the latest version as soon as possible.

| Version | Supported |
| ------- | ------------------ |
| 4.x | :white_check_mark: |
| 3.x | :x: |
| 2.x | :x: |
| 1.x | :x: |

The current minor version (currently LifterLMS 7.8.x) is the only supported branch of LifterLMS. If you're using an unsupported version of LifterLMS we strongly recommend you upgrade to the latest version as soon as possible.

## Reporting a Vulnerability

Expand Down
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,16 @@ assets/js/llms-builder.js
assets/js/llms-builder.min.js
assets/js/llms-admin-elementor-editor.js
assets/js/llms-admin-elementor-editor.asset.php
assets/js/llms-admin-certificate-editor.asset.php
assets/js/llms-admin-certificate-editor.js
assets/js/llms-components.asset.php
assets/js/llms-components.js
assets/js/llms.js
assets/js/*.min.js
assets/js/llms-metaboxes.js
blocks/certificate-title/*
blocks/my-account/*
blocks/pricing-table/*
includes/class.llms.l10n.frontend.php
languages/lifterlms.pot

Expand Down
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,35 @@
LifterLMS Changelog
===================

v7.8.7 - 2024-12-17
-------------------

##### Bug Fixes

+ Fix translation error during the setup wizard. [#2835](https://github.com/gocodebox/lifterlms/issues/2835)
+ Fixes Pagespeed notice regarding deprecated Javascript event usage. [#2620](https://github.com/gocodebox/lifterlms/issues/2620)


v7.8.6 - 2024-12-16
-------------------

##### Bug Fixes

+ Adds additional check for valid quiz attempt key when ending or exiting a quiz. [#2824](https://github.com/gocodebox/lifterlms/issues/2824)
+ Fix for daylight savings and leap years when scheduling engagements. [#2799](https://github.com/gocodebox/lifterlms/issues/2799)
+ Avoid showing course opens message if no Course Start Date has been set. [#2810](https://github.com/gocodebox/lifterlms/issues/2810)
+ Improved accessibility of the lessons listing on a course page, when a lesson is restricted. [#2827](https://github.com/gocodebox/lifterlms/issues/2827)

##### Security Fixes

+ Adding additional checks before the deletion of a certificate. Thanks Lucio Sá!

##### Updated Templates

+ [templates/content-single-course-before.php](https://github.com/gocodebox/lifterlms/blob/7.8.6/templates/content-single-course-before.php)
+ [templates/course/lesson-preview.php](https://github.com/gocodebox/lifterlms/blob/7.8.6/templates/course/lesson-preview.php)


v7.8.5 - 2024-12-03
-------------------

Expand Down
7 changes: 6 additions & 1 deletion assets/js/app/llms-lesson-preview.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,12 @@ LLMS.LessonPreview = {
*/
get_tooltip: function( msg ) {
var $el = $( '<div class="llms-tooltip" />' );
$el.append( '<div class="llms-tooltip-content">' + msg + '</div>' );
$el.append(
$('<div>', {
'class': 'llms-tooltip-content',
'aria-hidden': 'true'
}).text( msg )
);
return $el;
},

Expand Down
2 changes: 1 addition & 1 deletion assets/js/app/llms-tracking.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ LLMS.Tracking = function( settings ) {
self.addEvent( 'page.load' );

window.addEventListener( 'beforeunload', onBeforeUnload );
window.addEventListener( 'unload', onUnload );
window.addEventListener( 'pagehide', onUnload );

document.addEventListener( 'visibilitychange', onVisibilityChange );

Expand Down
1 change: 0 additions & 1 deletion assets/js/llms-admin-certificate-editor.asset.php

This file was deleted.

22 changes: 0 additions & 22 deletions assets/js/llms-admin-certificate-editor.js

This file was deleted.

1 change: 0 additions & 1 deletion assets/js/llms-components.asset.php

This file was deleted.

17 changes: 0 additions & 17 deletions assets/js/llms-components.js

This file was deleted.

Loading

0 comments on commit 32b793c

Please sign in to comment.