Skip to content

Commit 81a677f

Browse files
authored
Merge pull request #42 from jazzsequence/feature/1.2.0-bgg-integration
BGG integration 🎉
2 parents a769057 + 75bb9b3 commit 81a677f

File tree

358 files changed

+902
-86755
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

358 files changed

+902
-86755
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "vendor/cmb2"]
2+
path = vendor/cmb2
3+
url = https://github.com/CMB2/CMB2.git

.scrutinizer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
tools:
22
php_sim: true
3-
php_pdepend: true
3+
php_pdepend: false
44
php_analyzer: true
55
external_code_coverage:
66
timeout: 600 # Timeout in seconds.

.travis.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,12 @@ matrix:
2626
fast_finish: true
2727

2828
include:
29-
# plugin requires minimum of php 5.6
30-
- php: '5.6'
3129
# aliased to a recent 7.x version
32-
- php: '7.0'
33-
# aliased to a recent 5.4 version
34-
- php: '5.4'
30+
- php: '7.1'
31+
- php: '7.2'
3532

3633
allow_failures:
37-
- php: '5.4'
34+
- php: '7.2'
3835

3936
env:
4037
- WP_VERSION=latest WP_MULTISITE=0
@@ -59,8 +56,8 @@ before_script:
5956
- bash bin/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION
6057
- export PATH="$HOME/.composer/vendor/bin:$PATH"
6158
- |
62-
if [[ ${TRAVIS_PHP_VERSION:0:3} == "7.0" ]]; then
63-
composer global require "phpunit/phpunit=5.6.*"
59+
if [[ ${TRAVIS_PHP_VERSION:0:3} == "7.1" ]]; then
60+
composer global require "phpunit/phpunit=5.7.*"
6461
else
6562
composer global require "phpunit/phpunit=4.8.*"
6663
fi

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
**Donate link:** https://www.paypal.me/jazzsequence/
77
**Tags:**
88
**Requires at least:** 4.4
9-
**Tested up to:** 4.7
10-
**Stable tag:** 1.1.0
9+
**Tested up to:** 4.9.8
10+
**Stable tag:** 1.2.0
1111
**License:** GPLv3
1212
**License URI:** http://www.gnu.org/licenses/gpl-3.0.html
1313
**Demo:** https://jazzsequence.com/games/
@@ -38,11 +38,12 @@ You can checkout a live [demo](https://jazzsequence.com/games/) of the plugin (w
3838
## Changelog ##
3939

4040
### 1.2.0 ###
41+
* Added integration with Board Game Geek API. Games can now be added by searching BGG for matching titles and information imported and automatically added to new games.
4142
* Fixed an issue where games with an indeterminate max number of players was displaying a 0 value (e.g. `2 - 0 players`) and combined that with games with an unrealistically large number of players (e.g. `2 - 99 players`) to display `{{min_players}}+ players` e.g. `2+ players`.
4243
* Refactored the `gc_number_players` filter to only filter the actual number of players and added a `gc_number_players_output` filter which can filter the entire output (what `gc_number_players` previously did).
4344
* Fixed an issue where only the highest difficulty was displaying in the dropdown.
4445
* Fixed a display issue where games that can only be played with a specific number of players were still displaying the min/max player numbers. Changed to just display the number of players, e.g. `2 players` instead of `2 - 2 players`.
45-
* Dropped support for `hhvm`. Require minimum of PHP 5.6 and begin to deprecate PHP 5.4.
46+
* Dropped support for `hhvm` and php 5.x. Require minimum of PHP 7.0.
4647
* Scrutinizer CI integration for code coverage and quality checking.
4748
* Cleaned up some code as a result of Scrutinizer sniffs.
4849

0 commit comments

Comments
 (0)