Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit 4cda2bc

Browse files
authored
Merge pull request #138 from dshanske/iss135
Fixes and Updates
2 parents c5e0f86 + 3a70b11 commit 4cda2bc

File tree

13 files changed

+430
-110
lines changed

13 files changed

+430
-110
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ matrix:
2828
env: WP_PULUGIN_DEPLOY=1
2929
- php: 5.5
3030
- php: 5.4
31-
# - php: 5.3
32-
# dist: precise
3331
before_script:
3432
- |
3533
# Remove Xdebug for a huge performance increase:

README.md

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
**Donate link:** http://14101978.de
44
**Tags:** webmention, pingback, trackback, linkback, microformats, comments, indieweb
55
**Requires at least:** 4.8.2
6-
**Requires PHP:** 5.3
7-
**Tested up to:** 4.9
8-
**Stable tag:** 3.6.0
6+
**Requires PHP:** 5.4
7+
**Tested up to:** 4.9.1
8+
**Stable tag:** 3.7.0
99
**License:** MIT
1010
**License URI:** http://opensource.org/licenses/MIT
1111

@@ -68,6 +68,24 @@ The Webmention and Pingback logos are made by [Aaron Parecki](http://aaronpareck
6868

6969
Project actively developed on Github at [pfefferle/wordpress-semantic-linkbacks](https://github.com/pfefferle/wordpress-semantic-linkbacks). Please file support issues there.
7070

71+
### 3.7.0 ###
72+
* Add settings to enable each type independently in the Facepile
73+
* Render mentions as normal comments again not facepiles
74+
* Make sure avatars are always visible images
75+
* Add new get_facepile_avatar filter to ensure visible avatars
76+
* Support Reacji...aka single-emoji reactions
77+
* Bump minimum PHP to 5.4 due emoji detector library dependency issues
78+
* Overlay emoji on individual avatars in reactions facepile
79+
* Offer mf2 compatible template for comments
80+
* Fix semantic_linkbacks_cite filter as was previously filtering the entire comment text
81+
* Switch semantic_links_cite filter to filtering the format for the citation instead of the prepared citation
82+
* Count correct text length for unicode characters
83+
* Facepile Template improvements
84+
* Allow new comment template to be overridden by filter or theme declaring microformats2 support
85+
* Code standards compliance changes
86+
* Improved testing for PHP versions 5.4 and up to ensure compatibility
87+
* Remove direct calls to comment meta in favor of helper functions to ensure future proofing
88+
7189
### 3.6.0 ###
7290

7391
* Only show the first 8 avatars in a facepile by default. If there are more, include a clickable ellipsis to show the rest. Customizable via the `FACEPILE_FOLD_LIMIT` constant.

composer.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,16 @@
1919
"p3k/emoji-detector": "^0.2.0"
2020
},
2121
"require-dev": {
22-
"phpunit/phpunit": "5.7.*"
22+
"phpunit/phpunit": "5.7.*",
23+
"squizlabs/php_codesniffer": "^2.2 || ^3.0.2",
24+
"wimg/php-compatibility": "*",
25+
"wp-coding-standards/wpcs": "*",
26+
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.3"
2327
},
2428
"scripts": {
29+
"install-codestandards": [
30+
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
31+
],
2532
"test": [
2633
"composer update",
2734
"bin/install-wp-tests.sh wordpress wordpress wordpress",

0 commit comments

Comments
 (0)