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

Commit 3a70b11

Browse files
committed
Revert 5.3 compatibility and add changelog
1 parent a48877f commit 3a70b11

File tree

4 files changed

+45
-11
lines changed

4 files changed

+45
-11
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.

readme.txt

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ Contributors: pfefferle, dshanske
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.

semantic-linkbacks.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
* Description: Semantic Linkbacks for WebMentions, Trackbacks and Pingbacks
66
* Author: Matthias Pfefferle
77
* Author URI: https://notiz.blog/
8-
* Version: 3.6.0
8+
* Version: 3.7.0
99
* License: MIT
1010
* License URI: http://opensource.org/licenses/MIT
1111
* Text Domain: semantic-linkbacks
12-
* Requires PHP: 5.3
12+
* Requires PHP: 5.4
1313
*/
1414

1515
add_action( 'plugins_loaded', array( 'Semantic_Linkbacks_Plugin', 'init' ) );
@@ -20,7 +20,7 @@
2020
* @author Matthias Pfefferle
2121
*/
2222
class Semantic_Linkbacks_Plugin {
23-
public static $version = '3.6.0';
23+
public static $version = '3.7.0';
2424
/**
2525
* Initialize the plugin, registering WordPress hooks.
2626
*/

0 commit comments

Comments
 (0)