├── .eslintrc ├── .extract-wp-hooks.json ├── CHANGELOG.md ├── CLAUDE.md ├── CONTRIBUTE.md ├── LICENSE ├── README.md ├── SECURITY.md ├── THEMES.md ├── blocks ├── block-visibility │ ├── build │ │ ├── index.asset.php │ │ └── index.js │ └── src │ │ └── index.js ├── follow-me │ ├── block.json │ ├── build │ │ ├── index.asset.php │ │ └── index.js │ └── src │ │ └── index.js ├── friend-posts │ ├── block.json │ ├── build │ │ ├── index.asset.php │ │ └── index.js │ └── src │ │ └── index.js ├── friends-list │ ├── block.json │ ├── build │ │ ├── index.asset.php │ │ └── index.js │ └── src │ │ └── index.js └── message │ ├── block.json │ ├── build │ ├── index.asset.php │ └── index.js │ └── src │ └── index.js ├── composer.json ├── emojis.json ├── feed-parsers ├── SimplePie │ ├── class-simplepie-file-accept-only-rss.php │ └── class-simplepie-misc.php ├── activitypub │ ├── class-activitypub-transformer-message.php │ └── class-virtual-user-feed.php ├── class-feed-item.php ├── class-feed-parser-activitypub.php ├── class-feed-parser-json-feed.php ├── class-feed-parser-microformats.php ├── class-feed-parser-simplepie.php ├── class-feed-parser-v2.php └── class-feed-parser.php ├── friends-admin.css ├── friends-admin.js ├── friends-blocks.css ├── friends.css ├── friends.css.map ├── friends.js ├── friends.php ├── includes ├── class-access-control.php ├── class-admin.php ├── class-automatic-status-list-table.php ├── class-automatic-status.php ├── class-blocks.php ├── class-feed.php ├── class-friends.php ├── class-frontend.php ├── class-gamajo-template-loader-1-4-0.php ├── class-import.php ├── class-logging.php ├── class-messages.php ├── class-migration.php ├── class-notifications.php ├── class-plugin-installer.php ├── class-reactions.php ├── class-rest.php ├── class-shortcodes.php ├── class-site-health.php ├── class-subscription.php ├── class-template-loader.php ├── class-third-parties.php ├── class-user-feed.php ├── class-user-query.php └── class-user.php ├── integrations └── class-enable-mastodon-apps.php ├── lerna.json ├── libs ├── Mf2 │ └── Parser.php └── blocks-everywhere │ ├── blocks-everywhere.php │ ├── build │ ├── images │ │ └── wordpress.e7ce7231.png │ ├── index.min.asset.php │ ├── index.min.js │ ├── style-index.min.css │ ├── support-content-editor.min.asset.php │ ├── support-content-editor.min.css │ ├── support-content-editor.min.js │ ├── support-content-view.min.asset.php │ ├── support-content-view.min.css │ ├── support-content-view.min.js │ └── theme-compat.min.css │ ├── classes │ ├── class-editor.php │ ├── class-handler.php │ └── handlers │ │ ├── class-friends-message.php │ │ └── class-friends-status-post.php │ └── readme.txt ├── phpcs.xml ├── phpunit.xml ├── plugin-installer.js ├── plugin-strings ├── friends-autoresolve-links.php ├── friends-debugger.php ├── friends-mastodon-like-interface.php ├── friends-parser-fraidyscrape.php ├── friends-parser-rss-bridge.php ├── friends-post-collection.php └── friends-send-to-e-reader.php ├── plugins.json ├── previous-changelog-entries.md ├── site-health.js ├── templates ├── admin │ ├── add-friend.php │ ├── add-reaction-li.php │ ├── automatic-status-list-table.php │ ├── browser-extension.php │ ├── dashboard-widget-welcome.php │ ├── dashboard-widget.php │ ├── duplicates.php │ ├── edit-feeds.php │ ├── edit-friend.php │ ├── edit-notifications.php │ ├── edit-raw-rules.php │ ├── edit-rules.php │ ├── friends-list.php │ ├── import-export.php │ ├── latest-friends.php │ ├── logs.php │ ├── notification-manager.php │ ├── opml.php │ ├── plugin-details.php │ ├── plugin-info.php │ ├── plugin-installer-footer.php │ ├── plugin-installer-header.php │ ├── preview-rules.php │ ├── reactions-picker.php │ ├── select-feeds.php │ ├── settings-footer.php │ ├── settings-header.php │ ├── settings-wp-friendships.php │ ├── settings.php │ ├── unfriend.php │ └── welcome.php ├── email │ ├── accepted-friend-request-text.php │ ├── accepted-friend-request.php │ ├── footer-text.php │ ├── footer.php │ ├── friend-message-received-text.php │ ├── friend-message-received.php │ ├── header.php │ ├── keyword-match-post-text.php │ ├── keyword-match-post.php │ ├── lost-follower-text.php │ ├── lost-follower.php │ ├── new-follower-text.php │ ├── new-follower.php │ ├── new-friend-post-text.php │ ├── new-friend-post.php │ ├── new-friend-request-text.php │ ├── new-friend-request.php │ ├── unknown-friend-message-received-text.php │ └── unknown-friend-message-received.php ├── embed │ ├── embed-content.php │ └── header-embed.php └── frontend │ ├── author-header.php │ ├── editor.php │ ├── error-message.php │ ├── followers.php │ ├── footer.php │ ├── header.php │ ├── index.php │ ├── main-feed-header.php │ ├── messages │ ├── author-header.php │ ├── friend.php │ └── message-form.php │ ├── no-friends.php │ ├── no-posts.php │ ├── parts │ ├── activitypub │ │ ├── boost-button.php │ │ ├── follow-link.php │ │ └── header-menu.php │ ├── comments-content.php │ ├── comments.php │ ├── content-image.php │ ├── content-status.php │ ├── content.php │ ├── entry-content.php │ ├── footer.php │ ├── header-menu.php │ ├── header-status.php │ ├── header.php │ ├── reactions.php │ ├── reblog-button.php │ └── title.php │ ├── reactions-picker.php │ └── single-header.php └── widgets ├── class-widget-base-friends-list.php ├── class-widget-friend-request.php ├── class-widget-friend-stats.php ├── class-widget-friends-list.php ├── class-widget-header.php ├── class-widget-new-private-post.php ├── class-widget-post-formats.php ├── class-widget-recent-friends-list.php ├── class-widget-refresh.php └── class-widget-starred-friends-list.php /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/.eslintrc -------------------------------------------------------------------------------- /.extract-wp-hooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/.extract-wp-hooks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/CONTRIBUTE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/SECURITY.md -------------------------------------------------------------------------------- /THEMES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/THEMES.md -------------------------------------------------------------------------------- /blocks/block-visibility/build/index.asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/blocks/block-visibility/build/index.asset.php -------------------------------------------------------------------------------- /blocks/block-visibility/build/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/blocks/block-visibility/build/index.js -------------------------------------------------------------------------------- /blocks/block-visibility/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/blocks/block-visibility/src/index.js -------------------------------------------------------------------------------- /blocks/follow-me/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/blocks/follow-me/block.json -------------------------------------------------------------------------------- /blocks/follow-me/build/index.asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/blocks/follow-me/build/index.asset.php -------------------------------------------------------------------------------- /blocks/follow-me/build/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/blocks/follow-me/build/index.js -------------------------------------------------------------------------------- /blocks/follow-me/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/blocks/follow-me/src/index.js -------------------------------------------------------------------------------- /blocks/friend-posts/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/blocks/friend-posts/block.json -------------------------------------------------------------------------------- /blocks/friend-posts/build/index.asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/blocks/friend-posts/build/index.asset.php -------------------------------------------------------------------------------- /blocks/friend-posts/build/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/blocks/friend-posts/build/index.js -------------------------------------------------------------------------------- /blocks/friend-posts/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/blocks/friend-posts/src/index.js -------------------------------------------------------------------------------- /blocks/friends-list/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/blocks/friends-list/block.json -------------------------------------------------------------------------------- /blocks/friends-list/build/index.asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/blocks/friends-list/build/index.asset.php -------------------------------------------------------------------------------- /blocks/friends-list/build/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/blocks/friends-list/build/index.js -------------------------------------------------------------------------------- /blocks/friends-list/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/blocks/friends-list/src/index.js -------------------------------------------------------------------------------- /blocks/message/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/blocks/message/block.json -------------------------------------------------------------------------------- /blocks/message/build/index.asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/blocks/message/build/index.asset.php -------------------------------------------------------------------------------- /blocks/message/build/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/blocks/message/build/index.js -------------------------------------------------------------------------------- /blocks/message/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/blocks/message/src/index.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/composer.json -------------------------------------------------------------------------------- /emojis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/emojis.json -------------------------------------------------------------------------------- /feed-parsers/SimplePie/class-simplepie-file-accept-only-rss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/feed-parsers/SimplePie/class-simplepie-file-accept-only-rss.php -------------------------------------------------------------------------------- /feed-parsers/SimplePie/class-simplepie-misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/feed-parsers/SimplePie/class-simplepie-misc.php -------------------------------------------------------------------------------- /feed-parsers/activitypub/class-activitypub-transformer-message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/feed-parsers/activitypub/class-activitypub-transformer-message.php -------------------------------------------------------------------------------- /feed-parsers/activitypub/class-virtual-user-feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/feed-parsers/activitypub/class-virtual-user-feed.php -------------------------------------------------------------------------------- /feed-parsers/class-feed-item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/feed-parsers/class-feed-item.php -------------------------------------------------------------------------------- /feed-parsers/class-feed-parser-activitypub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/feed-parsers/class-feed-parser-activitypub.php -------------------------------------------------------------------------------- /feed-parsers/class-feed-parser-json-feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/feed-parsers/class-feed-parser-json-feed.php -------------------------------------------------------------------------------- /feed-parsers/class-feed-parser-microformats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/feed-parsers/class-feed-parser-microformats.php -------------------------------------------------------------------------------- /feed-parsers/class-feed-parser-simplepie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/feed-parsers/class-feed-parser-simplepie.php -------------------------------------------------------------------------------- /feed-parsers/class-feed-parser-v2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/feed-parsers/class-feed-parser-v2.php -------------------------------------------------------------------------------- /feed-parsers/class-feed-parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/feed-parsers/class-feed-parser.php -------------------------------------------------------------------------------- /friends-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/friends-admin.css -------------------------------------------------------------------------------- /friends-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/friends-admin.js -------------------------------------------------------------------------------- /friends-blocks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/friends-blocks.css -------------------------------------------------------------------------------- /friends.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/friends.css -------------------------------------------------------------------------------- /friends.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/friends.css.map -------------------------------------------------------------------------------- /friends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/friends.js -------------------------------------------------------------------------------- /friends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/friends.php -------------------------------------------------------------------------------- /includes/class-access-control.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-access-control.php -------------------------------------------------------------------------------- /includes/class-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-admin.php -------------------------------------------------------------------------------- /includes/class-automatic-status-list-table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-automatic-status-list-table.php -------------------------------------------------------------------------------- /includes/class-automatic-status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-automatic-status.php -------------------------------------------------------------------------------- /includes/class-blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-blocks.php -------------------------------------------------------------------------------- /includes/class-feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-feed.php -------------------------------------------------------------------------------- /includes/class-friends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-friends.php -------------------------------------------------------------------------------- /includes/class-frontend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-frontend.php -------------------------------------------------------------------------------- /includes/class-gamajo-template-loader-1-4-0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-gamajo-template-loader-1-4-0.php -------------------------------------------------------------------------------- /includes/class-import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-import.php -------------------------------------------------------------------------------- /includes/class-logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-logging.php -------------------------------------------------------------------------------- /includes/class-messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-messages.php -------------------------------------------------------------------------------- /includes/class-migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-migration.php -------------------------------------------------------------------------------- /includes/class-notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-notifications.php -------------------------------------------------------------------------------- /includes/class-plugin-installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-plugin-installer.php -------------------------------------------------------------------------------- /includes/class-reactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-reactions.php -------------------------------------------------------------------------------- /includes/class-rest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-rest.php -------------------------------------------------------------------------------- /includes/class-shortcodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-shortcodes.php -------------------------------------------------------------------------------- /includes/class-site-health.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-site-health.php -------------------------------------------------------------------------------- /includes/class-subscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-subscription.php -------------------------------------------------------------------------------- /includes/class-template-loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-template-loader.php -------------------------------------------------------------------------------- /includes/class-third-parties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-third-parties.php -------------------------------------------------------------------------------- /includes/class-user-feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-user-feed.php -------------------------------------------------------------------------------- /includes/class-user-query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-user-query.php -------------------------------------------------------------------------------- /includes/class-user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/includes/class-user.php -------------------------------------------------------------------------------- /integrations/class-enable-mastodon-apps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/integrations/class-enable-mastodon-apps.php -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/lerna.json -------------------------------------------------------------------------------- /libs/Mf2/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/libs/Mf2/Parser.php -------------------------------------------------------------------------------- /libs/blocks-everywhere/blocks-everywhere.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/libs/blocks-everywhere/blocks-everywhere.php -------------------------------------------------------------------------------- /libs/blocks-everywhere/build/images/wordpress.e7ce7231.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/libs/blocks-everywhere/build/images/wordpress.e7ce7231.png -------------------------------------------------------------------------------- /libs/blocks-everywhere/build/index.min.asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/libs/blocks-everywhere/build/index.min.asset.php -------------------------------------------------------------------------------- /libs/blocks-everywhere/build/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/libs/blocks-everywhere/build/index.min.js -------------------------------------------------------------------------------- /libs/blocks-everywhere/build/style-index.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/libs/blocks-everywhere/build/style-index.min.css -------------------------------------------------------------------------------- /libs/blocks-everywhere/build/support-content-editor.min.asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/libs/blocks-everywhere/build/support-content-editor.min.asset.php -------------------------------------------------------------------------------- /libs/blocks-everywhere/build/support-content-editor.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/libs/blocks-everywhere/build/support-content-editor.min.css -------------------------------------------------------------------------------- /libs/blocks-everywhere/build/support-content-editor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/libs/blocks-everywhere/build/support-content-editor.min.js -------------------------------------------------------------------------------- /libs/blocks-everywhere/build/support-content-view.min.asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/libs/blocks-everywhere/build/support-content-view.min.asset.php -------------------------------------------------------------------------------- /libs/blocks-everywhere/build/support-content-view.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/libs/blocks-everywhere/build/support-content-view.min.css -------------------------------------------------------------------------------- /libs/blocks-everywhere/build/support-content-view.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/libs/blocks-everywhere/build/support-content-view.min.js -------------------------------------------------------------------------------- /libs/blocks-everywhere/build/theme-compat.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/libs/blocks-everywhere/build/theme-compat.min.css -------------------------------------------------------------------------------- /libs/blocks-everywhere/classes/class-editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/libs/blocks-everywhere/classes/class-editor.php -------------------------------------------------------------------------------- /libs/blocks-everywhere/classes/class-handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/libs/blocks-everywhere/classes/class-handler.php -------------------------------------------------------------------------------- /libs/blocks-everywhere/classes/handlers/class-friends-message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/libs/blocks-everywhere/classes/handlers/class-friends-message.php -------------------------------------------------------------------------------- /libs/blocks-everywhere/classes/handlers/class-friends-status-post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/libs/blocks-everywhere/classes/handlers/class-friends-status-post.php -------------------------------------------------------------------------------- /libs/blocks-everywhere/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/libs/blocks-everywhere/readme.txt -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/phpunit.xml -------------------------------------------------------------------------------- /plugin-installer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/plugin-installer.js -------------------------------------------------------------------------------- /plugin-strings/friends-autoresolve-links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/plugin-strings/friends-autoresolve-links.php -------------------------------------------------------------------------------- /plugin-strings/friends-debugger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/plugin-strings/friends-debugger.php -------------------------------------------------------------------------------- /plugin-strings/friends-mastodon-like-interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/plugin-strings/friends-mastodon-like-interface.php -------------------------------------------------------------------------------- /plugin-strings/friends-parser-fraidyscrape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/plugin-strings/friends-parser-fraidyscrape.php -------------------------------------------------------------------------------- /plugin-strings/friends-parser-rss-bridge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/plugin-strings/friends-parser-rss-bridge.php -------------------------------------------------------------------------------- /plugin-strings/friends-post-collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/plugin-strings/friends-post-collection.php -------------------------------------------------------------------------------- /plugin-strings/friends-send-to-e-reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/plugin-strings/friends-send-to-e-reader.php -------------------------------------------------------------------------------- /plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/plugins.json -------------------------------------------------------------------------------- /previous-changelog-entries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/previous-changelog-entries.md -------------------------------------------------------------------------------- /site-health.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/site-health.js -------------------------------------------------------------------------------- /templates/admin/add-friend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/add-friend.php -------------------------------------------------------------------------------- /templates/admin/add-reaction-li.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/add-reaction-li.php -------------------------------------------------------------------------------- /templates/admin/automatic-status-list-table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/automatic-status-list-table.php -------------------------------------------------------------------------------- /templates/admin/browser-extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/browser-extension.php -------------------------------------------------------------------------------- /templates/admin/dashboard-widget-welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/dashboard-widget-welcome.php -------------------------------------------------------------------------------- /templates/admin/dashboard-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/dashboard-widget.php -------------------------------------------------------------------------------- /templates/admin/duplicates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/duplicates.php -------------------------------------------------------------------------------- /templates/admin/edit-feeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/edit-feeds.php -------------------------------------------------------------------------------- /templates/admin/edit-friend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/edit-friend.php -------------------------------------------------------------------------------- /templates/admin/edit-notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/edit-notifications.php -------------------------------------------------------------------------------- /templates/admin/edit-raw-rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/edit-raw-rules.php -------------------------------------------------------------------------------- /templates/admin/edit-rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/edit-rules.php -------------------------------------------------------------------------------- /templates/admin/friends-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/friends-list.php -------------------------------------------------------------------------------- /templates/admin/import-export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/import-export.php -------------------------------------------------------------------------------- /templates/admin/latest-friends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/latest-friends.php -------------------------------------------------------------------------------- /templates/admin/logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/logs.php -------------------------------------------------------------------------------- /templates/admin/notification-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/notification-manager.php -------------------------------------------------------------------------------- /templates/admin/opml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/opml.php -------------------------------------------------------------------------------- /templates/admin/plugin-details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/plugin-details.php -------------------------------------------------------------------------------- /templates/admin/plugin-info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/plugin-info.php -------------------------------------------------------------------------------- /templates/admin/plugin-installer-footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/plugin-installer-footer.php -------------------------------------------------------------------------------- /templates/admin/plugin-installer-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/plugin-installer-header.php -------------------------------------------------------------------------------- /templates/admin/preview-rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/preview-rules.php -------------------------------------------------------------------------------- /templates/admin/reactions-picker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/reactions-picker.php -------------------------------------------------------------------------------- /templates/admin/select-feeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/select-feeds.php -------------------------------------------------------------------------------- /templates/admin/settings-footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/settings-footer.php -------------------------------------------------------------------------------- /templates/admin/settings-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/settings-header.php -------------------------------------------------------------------------------- /templates/admin/settings-wp-friendships.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/settings-wp-friendships.php -------------------------------------------------------------------------------- /templates/admin/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/settings.php -------------------------------------------------------------------------------- /templates/admin/unfriend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/unfriend.php -------------------------------------------------------------------------------- /templates/admin/welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/admin/welcome.php -------------------------------------------------------------------------------- /templates/email/accepted-friend-request-text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/email/accepted-friend-request-text.php -------------------------------------------------------------------------------- /templates/email/accepted-friend-request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/email/accepted-friend-request.php -------------------------------------------------------------------------------- /templates/email/footer-text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/email/footer-text.php -------------------------------------------------------------------------------- /templates/email/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/email/footer.php -------------------------------------------------------------------------------- /templates/email/friend-message-received-text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/email/friend-message-received-text.php -------------------------------------------------------------------------------- /templates/email/friend-message-received.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/email/friend-message-received.php -------------------------------------------------------------------------------- /templates/email/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/email/header.php -------------------------------------------------------------------------------- /templates/email/keyword-match-post-text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/email/keyword-match-post-text.php -------------------------------------------------------------------------------- /templates/email/keyword-match-post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/email/keyword-match-post.php -------------------------------------------------------------------------------- /templates/email/lost-follower-text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/email/lost-follower-text.php -------------------------------------------------------------------------------- /templates/email/lost-follower.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/email/lost-follower.php -------------------------------------------------------------------------------- /templates/email/new-follower-text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/email/new-follower-text.php -------------------------------------------------------------------------------- /templates/email/new-follower.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/email/new-follower.php -------------------------------------------------------------------------------- /templates/email/new-friend-post-text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/email/new-friend-post-text.php -------------------------------------------------------------------------------- /templates/email/new-friend-post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/email/new-friend-post.php -------------------------------------------------------------------------------- /templates/email/new-friend-request-text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/email/new-friend-request-text.php -------------------------------------------------------------------------------- /templates/email/new-friend-request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/email/new-friend-request.php -------------------------------------------------------------------------------- /templates/email/unknown-friend-message-received-text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/email/unknown-friend-message-received-text.php -------------------------------------------------------------------------------- /templates/email/unknown-friend-message-received.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/email/unknown-friend-message-received.php -------------------------------------------------------------------------------- /templates/embed/embed-content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/embed/embed-content.php -------------------------------------------------------------------------------- /templates/embed/header-embed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/embed/header-embed.php -------------------------------------------------------------------------------- /templates/frontend/author-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/author-header.php -------------------------------------------------------------------------------- /templates/frontend/editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/editor.php -------------------------------------------------------------------------------- /templates/frontend/error-message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/error-message.php -------------------------------------------------------------------------------- /templates/frontend/followers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/followers.php -------------------------------------------------------------------------------- /templates/frontend/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/footer.php -------------------------------------------------------------------------------- /templates/frontend/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/header.php -------------------------------------------------------------------------------- /templates/frontend/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/index.php -------------------------------------------------------------------------------- /templates/frontend/main-feed-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/main-feed-header.php -------------------------------------------------------------------------------- /templates/frontend/messages/author-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/messages/author-header.php -------------------------------------------------------------------------------- /templates/frontend/messages/friend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/messages/friend.php -------------------------------------------------------------------------------- /templates/frontend/messages/message-form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/messages/message-form.php -------------------------------------------------------------------------------- /templates/frontend/no-friends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/no-friends.php -------------------------------------------------------------------------------- /templates/frontend/no-posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/no-posts.php -------------------------------------------------------------------------------- /templates/frontend/parts/activitypub/boost-button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/parts/activitypub/boost-button.php -------------------------------------------------------------------------------- /templates/frontend/parts/activitypub/follow-link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/parts/activitypub/follow-link.php -------------------------------------------------------------------------------- /templates/frontend/parts/activitypub/header-menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/parts/activitypub/header-menu.php -------------------------------------------------------------------------------- /templates/frontend/parts/comments-content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/parts/comments-content.php -------------------------------------------------------------------------------- /templates/frontend/parts/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/parts/comments.php -------------------------------------------------------------------------------- /templates/frontend/parts/content-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/parts/content-image.php -------------------------------------------------------------------------------- /templates/frontend/parts/content-status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/parts/content-status.php -------------------------------------------------------------------------------- /templates/frontend/parts/content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/parts/content.php -------------------------------------------------------------------------------- /templates/frontend/parts/entry-content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/parts/entry-content.php -------------------------------------------------------------------------------- /templates/frontend/parts/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/parts/footer.php -------------------------------------------------------------------------------- /templates/frontend/parts/header-menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/parts/header-menu.php -------------------------------------------------------------------------------- /templates/frontend/parts/header-status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/parts/header-status.php -------------------------------------------------------------------------------- /templates/frontend/parts/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/parts/header.php -------------------------------------------------------------------------------- /templates/frontend/parts/reactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/parts/reactions.php -------------------------------------------------------------------------------- /templates/frontend/parts/reblog-button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/parts/reblog-button.php -------------------------------------------------------------------------------- /templates/frontend/parts/title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/parts/title.php -------------------------------------------------------------------------------- /templates/frontend/reactions-picker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/reactions-picker.php -------------------------------------------------------------------------------- /templates/frontend/single-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/templates/frontend/single-header.php -------------------------------------------------------------------------------- /widgets/class-widget-base-friends-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/widgets/class-widget-base-friends-list.php -------------------------------------------------------------------------------- /widgets/class-widget-friend-request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/widgets/class-widget-friend-request.php -------------------------------------------------------------------------------- /widgets/class-widget-friend-stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/widgets/class-widget-friend-stats.php -------------------------------------------------------------------------------- /widgets/class-widget-friends-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/widgets/class-widget-friends-list.php -------------------------------------------------------------------------------- /widgets/class-widget-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/widgets/class-widget-header.php -------------------------------------------------------------------------------- /widgets/class-widget-new-private-post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/widgets/class-widget-new-private-post.php -------------------------------------------------------------------------------- /widgets/class-widget-post-formats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/widgets/class-widget-post-formats.php -------------------------------------------------------------------------------- /widgets/class-widget-recent-friends-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/widgets/class-widget-recent-friends-list.php -------------------------------------------------------------------------------- /widgets/class-widget-refresh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/widgets/class-widget-refresh.php -------------------------------------------------------------------------------- /widgets/class-widget-starred-friends-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirk/friends/HEAD/widgets/class-widget-starred-friends-list.php --------------------------------------------------------------------------------