Skip to content

Commit

Permalink
2.4.0-beta-1
Browse files Browse the repository at this point in the history
  • Loading branch information
JDGrimes committed Sep 22, 2017
1 parent 8f3fc71 commit 351a158
Show file tree
Hide file tree
Showing 12 changed files with 2,861 additions and 1,885 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wordpoints",
"version": "2.4.0-alpha-5",
"version": "2.4.0-beta-1",
"description": "Gamify your WordPress site with points.",
"repository": {
"type": "git",
Expand Down
44 changes: 44 additions & 0 deletions src/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,50 @@ This is the user change log for older versions of WordPoints. The change log for
most recent versions are kept in readme.txt. A developer change log is available
here: https://github.com/WordPoints/wordpoints/blob/develop/CHANGELOG.md

= 2.2.2 — 2017-01-14 =

##### Fixed

- Event reactions for custom post types not awarding points. Plugins like bbPress
were effected by this, because they register their post types later in the code
than WordPoints expected. This is now fixed so that WordPoints will work correctly
for post types no matter how late they are registered.

= 2.2.1 — 2017-01-03 =

##### Fixed

- The Points Types screen locking up when creating a new reaction for some events.
This only affected events where conditions could be created for items that could
relate to another item of the same type (like how a comment could have a parent
comment), causing an infinite loop.
- Points values not being formatted with the prefix if the suffix wasn't set, and
vice versa. This would only happen when the value wasn't set at all, not just when it
was empty, and so only applies to points types that were created programmatically.
Points types created through the UI were still formatted as expected.

= 2.2.0 — 2016-12-08 =

**Requires: WordPress 4.6+**

##### Changed

- Rate Limits for event reactions to now support setting the number of
minutes/hours/etc. Previously it was only possible to have rate limits of "once per
minute" or "once per day", now a rate limit can be "once every 5 minutes" or "once
every 2 days" or any other amount that you want.
- Points log entries that are hidden from some users to now be marked as such when a
user who is allowed to see them is viewing them. For example, if a post is not
public, only users who can view that post can view any points logs that relate to it.
Such log entries will now be displayed with a note below them explaining to the
current user that not all other users will be able to view them.
- Points types slugs to be generated from the name of the points type with any
spaces replaced with dashes. Previously when a points type was created, the slug
would be generated from the name, but any spaces would be removed, so if there were
multiple words they would be run together in the slug. Now if you create a points
type named "An Example", its slug would be "an-example", instead of "anexample". This
will not change the slugs of existing points types.

= 2.1.5 – 2016-11-15 =

##### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/includes/constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*
* @const WORDPOINTS_VERSION
*/
define( 'WORDPOINTS_VERSION', '2.4.0-alpha-5' );
define( 'WORDPOINTS_VERSION', '2.4.0-beta-1' );

/**
* The full path to the plugin's main directory.
Expand Down
Binary file modified src/languages/wordpoints-es_ES.mo
Binary file not shown.
Loading

0 comments on commit 351a158

Please sign in to comment.