Skip to content

Commit 555dd63

Browse files
committed
Version and readme update
1 parent 05bd666 commit 555dd63

File tree

5 files changed

+28
-14
lines changed

5 files changed

+28
-14
lines changed

badgeos.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Plugin URI: http://www.badgeos.org/
55
* Description: BadgeOS lets your site’s users complete tasks and earn badges that recognize their achievement. Define achievements and choose from a range of options that determine when they're complete. Badges are Mozilla Open Badges (OBI) compatible through integration with the “Open Credit” API by Credly, the free web service for issuing, earning and sharing badges for lifelong achievement.
66
* Author: LearningTimes
7-
* Version: 1.4.0
7+
* Version: 1.4.0-beta2
88
* Author URI: https://credly.com/
99
* License: GNU AGPL
1010
*/

includes/admin-settings.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function badgeos_register_settings() {
2222
/**
2323
* Grant BadgeOS manager role ability to edit BadgeOS settings.
2424
*
25-
* @since alpha
25+
* @since 1.4.0
2626
*
2727
* @param string $capability Required capability.
2828
* @return string Required capability.
@@ -740,7 +740,7 @@ function badgeos_media_modal_featured_image_text( $strings = array(), $post = nu
740740
/**
741741
* Get capability required for BadgeOS administration.
742742
*
743-
* @since alpha
743+
* @since 1.4.0
744744
*
745745
* @return string User capability.
746746
*/
@@ -752,7 +752,7 @@ function badgeos_get_manager_capability() {
752752
/**
753753
* Get capability required for Submission management.
754754
*
755-
* @since alpha
755+
* @since 1.4.0
756756
*
757757
* @return string User capability.
758758
*/
@@ -764,7 +764,7 @@ function badgeos_get_submission_manager_capability() {
764764
/**
765765
* Check if a user can manage submissions.
766766
*
767-
* @since alpha
767+
* @since 1.4.0
768768
*
769769
* @param integer $user_id User ID.
770770
* @return bool True if user can manaage submissions, otherwise false.

includes/content-filters.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ function badgeos_render_feedback( $atts = array() ) {
476476
/**
477477
* Render feedback search input.
478478
*
479-
* @since alpha
479+
* @since 1.4.0
480480
*
481481
* @param array $atts Shortcode attributes.
482482
* @return string HTML Markup.
@@ -500,7 +500,7 @@ function badgeos_render_feedback_search( $atts = array() ) {
500500
/**
501501
* Render feedback filter inputs.
502502
*
503-
* @since alpha
503+
* @since 1.4.0
504504
*
505505
* @param array $atts Shortcode atts.
506506
* @return string HTML Markup.

includes/submission-actions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1228,7 +1228,7 @@ function badgeos_get_feedback( $args = array() ) {
12281228
/**
12291229
* Parse and prepare feedback list args.
12301230
*
1231-
* @since alpha
1231+
* @since 1.4.0
12321232
*
12331233
* @param array $args Feedback args.
12341234
* @return array Modified feedback args.

readme.txt

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: http://badgeos.org/contribute/donate/
44
Tags: badge, badges, openbadges, learningtimes, credly, OBI, mozilla, open badges, achievement, award, reward, engagement, submission, nomination, API, open credit, credit
55
Requires at least: 3.6
66
Tested up to: 3.8.1
7-
Stable tag: 1.4.0
7+
Stable tag: 1.3.9
88
License: GNU AGPLv3
99
License URI: http://www.gnu.org/licenses/agpl-3.0.html
1010

@@ -227,12 +227,19 @@ Thanks for asking! Please do share back code modifications or enhancements you
227227
* Added: Submission Notifications to users who have made a submission.
228228
* Added: Several new submission notification types - new submission, new comment, and submission status change
229229
* Added: User Email Notification Setting - Users can opt-out of email notifications in the profile editor.
230+
* Added: Trigger for commenting on specific posts.
231+
* Added: Many hooks for modifying shortcodes, submission lists, and more.
232+
* Updated: Revised trigger for commenting on posts to only award when comment is approved.
230233
* Updated: Submission status can now be altered on the front-end from approved to denied or back again.
231234
* Updated: Admin area for editing a submission now uses the same approve/deny buttons as the rest of the site.
232235
* Updated: Submission Lists are now highly customizable via WP hooks. The search input, filter inputs, and even the results can be altered programatically.
233236
* Updated: Many, many internationalization enhancements. Help us release BadgeOS in your language!
234-
* Fixed: Prevent users from repeatedly earning auto-approved submissions
235-
* Fixed: Submissions List status filter now indicates the displayed status on page load
237+
* Updated: BadgeOS management role selector is hidden on the settings page to non-admins.
238+
* Updated: Badgeos management role selector now excludes contributor and subscriber roles.
239+
* Fixed: BadgeOS settings can now be modified by the minimum selected management role.
240+
* Fixed: Prevent users from repeatedly earning auto-approved submissions.
241+
* Fixed: Submissions List status filter now indicates the displayed status on page load.
242+
* Fixed: Lots of other minor bugs.
236243

237244
= 1.3.5 =
238245
* Fixed: Eliminated an error when attempting to use Credly Badge Builder over SSL
@@ -349,14 +356,21 @@ Thanks for asking! Please do share back code modifications or enhancements you
349356
* Added: Submission Manager Role selector – allow users to moderate submissions without granting them full access to BadgeOS administration.
350357
* Added: Submission Notification Admin Settings – Specify an unlimited number of email addresses in a comma-separated list for submission admin notifications.
351358
* Added: Submission Notifications to users who have made a submission.
352-
* Added: Several new submission notification types: new submission, new comment, and submission status change
359+
* Added: Several new submission notification types - new submission, new comment, and submission status change
353360
* Added: User Email Notification Setting - Users can opt-out of email notifications in the profile editor.
361+
* Added: Trigger for commenting on specific posts.
362+
* Added: Many hooks for modifying shortcodes, submission lists, and more.
363+
* Updated: Revised trigger for commenting on posts to only award when comment is approved.
354364
* Updated: Submission status can now be altered on the front-end from approved to denied or back again.
355365
* Updated: Admin area for editing a submission now uses the same approve/deny buttons as the rest of the site.
356366
* Updated: Submission Lists are now highly customizable via WP hooks. The search input, filter inputs, and even the results can be altered programatically.
357367
* Updated: Many, many internationalization enhancements. Help us release BadgeOS in your language!
358-
* Fixed: Prevent users from repeatedly earning auto-approved submissions
359-
* Fixed: Submissions List status filter now indicates the displayed status on page load
368+
* Updated: BadgeOS management role selector is hidden on the settings page to non-admins.
369+
* Updated: Badgeos management role selector now excludes contributor and subscriber roles.
370+
* Fixed: BadgeOS settings can now be modified by the minimum selected management role.
371+
* Fixed: Prevent users from repeatedly earning auto-approved submissions.
372+
* Fixed: Submissions List status filter now indicates the displayed status on page load.
373+
* Fixed: Lots of other minor bugs.
360374

361375
= 1.3.5 =
362376
* Fixed: Eliminated an error when attempting to use Credly Badge Builder over SSL

0 commit comments

Comments
 (0)