Skip to content

Commit b2195d1

Browse files
authored
Merge pull request #159 from dshanske/wp5.5refresh
Refresh for WordPress 5.5
2 parents ceaf781 + 0061672 commit b2195d1

File tree

1,525 files changed

+865
-322
lines changed

Some content is hidden

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

1,525 files changed

+865
-322
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@master
1212
- name: WordPress Plugin Deploy
13-
uses: 10up/action-wordpress-plugin-deploy@master
13+
uses: 10up/action-wordpress-plugin-deploy@stable
1414
env:
1515
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
1616
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ before_script:
4949
echo "Using PHPUnit 6.x"
5050
composer global require "phpunit/phpunit:^6"
5151
;;
52-
5.6|5.5|5.4|5.3)
53-
echo "Using PHPUnit 4.x"
54-
composer global require "phpunit/phpunit:^4"
52+
5.6)
53+
echo "Using PHPUnit 5.x"
54+
composer global require "phpunit/phpunit:^5"
5555
;;
5656
*)
5757
echo "No PHPUnit version handling for PHP version $TRAVIS_PHP_VERSION"

includes/getting-started.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<ol>
1717
<li><?php _e( 'Complete your user profile, adding in connections to other websites. This allows you to connect your identity on those sites to your website.', 'indieweb' ); ?></li>
1818
<li><?php _e( 'Under Options on the IndieWeb menu, in the sidebar, set whether this is a single author or multi-author site', 'indieweb' ); ?></li>
19-
<li><?php _e( 'Links to your various sites will now appear on your site, allowing you to use Indieauth and other services. If you want them visible to site visitors, you can add the rel-me widget to your site.', 'indieweb' ); ?></li>
19+
<li><?php _e( 'Links to your various sites will now appear on your site. If you want them visible to site visitors, you can add the Author Profile H-Card widget or the standalone Show My Profile on Other Sites widget to your site.', 'indieweb' ); ?></li>
2020
</ol>
2121
</div>
2222

@@ -47,7 +47,7 @@
4747

4848
<ol>
4949
<li><?php _e( 'Install and activate the Webmentions and Semantic Linkbacks plugins. These will allow you to receive responses such as replies, likes, etc from other IndieWeb sites. You can configure it in the Webmention Settings', 'indieweb' ); ?></li>
50-
<li><?php _e( 'Install and activate the Micropub and IndieAuth plugins. The Micropub plugin will allow you to publish to your website using Micropub clients and the IndieAuth plugin adds an IndieAuth endpoint to allow authentication through your site. Without it, the Micropub plugin will use a third-party IndieAuth server to authenticate to your site.', 'indieweb' ); ?></li>
50+
<li><?php _e( 'Install and activate the Micropub and IndieAuth plugins. The Micropub plugin will allow you to publish to your website using Micropub clients and the IndieAuth plugin adds an IndieAuth endpoint to allow authentication through your site, which Micropub requires.', 'indieweb' ); ?></li>
5151
<li><?php _e( 'Install and activate the Syndication Links plugin. This will allow you to display the external permalinks that your content published to, on site such as Twitter, Facebook, Flickr, LinkedIn, and others.', 'indieweb' ); ?></li>
5252
<li><?php _e( 'Browse the Extensions page for a list of other recommended IndieWeb plugins that can expand your functionality.', 'indieweb' ); ?></li>
5353
</ol>

includes/simple-icons.php

Lines changed: 133 additions & 12 deletions
Large diffs are not rendered by default.

indieweb.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Interested in connecting your WordPress site to the IndieWeb?
66
* Author: IndieWebCamp WordPress Outreach Club
77
* Author URI: https://indieweb.org/WordPress_Outreach_Club
8-
* Version: 3.4.2
8+
* Version: 3.4.3
99
* License: MIT
1010
* License URI: http://opensource.org/licenses/MIT
1111
* Text Domain: indieweb
@@ -26,7 +26,7 @@
2626
*/
2727
class IndieWeb_Plugin {
2828

29-
public static $version = '3.4.2';
29+
public static $version = '3.4.3';
3030

3131
/**
3232
* Initialize the plugin, registering WordPress hooks.

0 commit comments

Comments
 (0)