├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .npmpackagejsonlintrc.json ├── .nvmrc ├── .stylelintignore ├── .stylelintrc.json ├── .wp-env.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CREDITS.md ├── Dockunit.json ├── LICENSE.md ├── README.md ├── assets ├── css │ ├── admin-distributed-post.css │ ├── admin-edit-table.css │ ├── admin-external-connection.css │ ├── admin-external-connections.css │ ├── admin-pull-table.scss │ ├── admin-settings.css │ ├── admin-site-health.css │ ├── admin-syndicated-post.scss │ ├── admin.css │ ├── gutenberg-syndicated-post.scss │ └── push.scss ├── img │ ├── banner-1544x500.png │ ├── banner-772x250.png │ ├── icon-128x128.png │ ├── icon-256x256.png │ └── icon.svg └── js │ ├── admin-distributed-post.js │ ├── admin-external-connection.js │ ├── admin-pull.js │ ├── components │ └── plugin-icon.js │ ├── gutenberg-plugin.js │ ├── gutenberg-syndicated-post.js │ └── push.js ├── bin └── generate-pot-with-wpcli.sh ├── composer.json ├── composer.lock ├── distributor.php ├── docs ├── auto-distribution.md ├── connect-to-an-existing-post.md ├── demo-with-playground.md ├── exclude-meta-from-yoast-duplicate-post.md ├── migration-guide-version-1-to-version-2.md ├── post-meta.md ├── snippets.md ├── stored-id-handling.md └── tutorials.json ├── hookdoc-conf.json ├── includes ├── auto-distribute.php ├── bootstrap.php ├── classes │ ├── API │ │ └── SubscriptionsController.php │ ├── Authentication.php │ ├── Authentications │ │ ├── WordPressBasicAuth.php │ │ └── WordPressDotcomOauth2Authentication.php │ ├── Connection.php │ ├── Connections.php │ ├── DistributorPost.php │ ├── EnqueueScript.php │ ├── ExternalConnection.php │ ├── ExternalConnectionListTable.php │ ├── ExternalConnections │ │ ├── WordPressDotcomExternalConnection.php │ │ └── WordPressExternalConnection.php │ ├── InternalConnections │ │ └── NetworkSiteConnection.php │ ├── PullListTable.php │ └── RegisteredDataHandler.php ├── debug-info.php ├── distributed-post-ui.php ├── external-connection-cpt.php ├── global-functions.php ├── hooks.php ├── pull-ui.php ├── push-ui.php ├── rest-api.php ├── settings.php ├── subscriptions.php ├── syndicated-post-ui.php ├── template-tags.php └── utils.php ├── package.json ├── phpcs.xml ├── phpunit.xml.dist ├── readme.txt ├── templates ├── add-connection-amp.php ├── add-connection.php ├── show-connections-amp.php └── show-connections.php ├── tests ├── Basic-Auth-master │ ├── README.md │ ├── basic-auth.php │ └── composer.json ├── bin │ ├── initialize.sh │ ├── set-core-version.js │ └── wp-cli.yml ├── cypress │ ├── .eslintrc.json │ ├── .htaccess │ ├── assets │ │ └── img │ │ │ └── browser-frame.jpg │ ├── config.js │ ├── e2e │ │ ├── admin.test.js │ │ ├── distributed-post.test.js │ │ ├── editor-blocks.test.js │ │ ├── external-connection.test.js │ │ ├── images-classic-editor.test.js │ │ ├── images.test.js │ │ ├── internal-pull.test.js │ │ ├── internal-push.test.js │ │ ├── link-unlink.test.js │ │ ├── oembed.test.js │ │ ├── push-menu.test.js │ │ ├── settings.test.js │ │ ├── stored-id-handling-classic-editor.test.js │ │ └── stored-id-handling.test.js │ ├── fixtures │ │ └── example.json │ ├── support │ │ ├── commands.js │ │ ├── e2e.js │ │ └── functions.js │ └── tsconfig.json ├── e2e-test-plugin │ └── e2e-test-plugin.php └── php │ ├── ConnectionsTest.php │ ├── DebugInfoTest.php │ ├── DistributorPostTest.php │ ├── EnqueueScriptTest.php │ ├── ExternalConnectionTest.php │ ├── HooksTest.php │ ├── NetworkSiteConnectionsTest.php │ ├── SubscriptionsTest.php │ ├── UtilsTest.php │ ├── WordPressExternalConnectionTest.php │ ├── bootstrap.php │ └── includes │ ├── TestCase.php │ └── common.php ├── uninstall.php ├── vendor └── yahnis-elsts │ └── plugin-update-checker │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── Puc │ ├── v5 │ │ └── PucFactory.php │ └── v5p1 │ │ ├── Autoloader.php │ │ ├── DebugBar │ │ ├── Extension.php │ │ ├── Panel.php │ │ ├── PluginExtension.php │ │ ├── PluginPanel.php │ │ └── ThemePanel.php │ │ ├── InstalledPackage.php │ │ ├── Metadata.php │ │ ├── OAuthSignature.php │ │ ├── Plugin │ │ ├── Package.php │ │ ├── PluginInfo.php │ │ ├── Ui.php │ │ ├── Update.php │ │ └── UpdateChecker.php │ │ ├── PucFactory.php │ │ ├── Scheduler.php │ │ ├── StateStore.php │ │ ├── Theme │ │ ├── Package.php │ │ ├── Update.php │ │ └── UpdateChecker.php │ │ ├── Update.php │ │ ├── UpdateChecker.php │ │ ├── UpgraderStatus.php │ │ ├── Utils.php │ │ └── Vcs │ │ ├── Api.php │ │ ├── BaseChecker.php │ │ ├── BitBucketApi.php │ │ ├── GitHubApi.php │ │ ├── GitLabApi.php │ │ ├── PluginUpdateChecker.php │ │ ├── Reference.php │ │ ├── ReleaseAssetSupport.php │ │ ├── ReleaseFilteringFeature.php │ │ ├── ThemeUpdateChecker.php │ │ └── VcsCheckerMethods.php │ ├── README.md │ ├── composer.json │ ├── css │ └── puc-debug-bar.css │ ├── examples │ ├── plugin.json │ └── theme.json │ ├── js │ └── debug-bar.js │ ├── languages │ ├── plugin-update-checker-ca.mo │ ├── plugin-update-checker-ca.po │ ├── plugin-update-checker-cs_CZ.mo │ ├── plugin-update-checker-cs_CZ.po │ ├── plugin-update-checker-da_DK.mo │ ├── plugin-update-checker-da_DK.po │ ├── plugin-update-checker-de_DE.mo │ ├── plugin-update-checker-de_DE.po │ ├── plugin-update-checker-es_AR.mo │ ├── plugin-update-checker-es_AR.po │ ├── plugin-update-checker-es_CL.mo │ ├── plugin-update-checker-es_CL.po │ ├── plugin-update-checker-es_CO.mo │ ├── plugin-update-checker-es_CO.po │ ├── plugin-update-checker-es_CR.mo │ ├── plugin-update-checker-es_CR.po │ ├── plugin-update-checker-es_DO.mo │ ├── plugin-update-checker-es_DO.po │ ├── plugin-update-checker-es_ES.mo │ ├── plugin-update-checker-es_ES.po │ ├── plugin-update-checker-es_GT.mo │ ├── plugin-update-checker-es_GT.po │ ├── plugin-update-checker-es_HN.mo │ ├── plugin-update-checker-es_HN.po │ ├── plugin-update-checker-es_MX.mo │ ├── plugin-update-checker-es_MX.po │ ├── plugin-update-checker-es_PE.mo │ ├── plugin-update-checker-es_PE.po │ ├── plugin-update-checker-es_PR.mo │ ├── plugin-update-checker-es_PR.po │ ├── plugin-update-checker-es_UY.mo │ ├── plugin-update-checker-es_UY.po │ ├── plugin-update-checker-es_VE.mo │ ├── plugin-update-checker-es_VE.po │ ├── plugin-update-checker-fa_IR.mo │ ├── plugin-update-checker-fa_IR.po │ ├── plugin-update-checker-fr_CA.mo │ ├── plugin-update-checker-fr_CA.po │ ├── plugin-update-checker-fr_FR.mo │ ├── plugin-update-checker-fr_FR.po │ ├── plugin-update-checker-hu_HU.mo │ ├── plugin-update-checker-hu_HU.po │ ├── plugin-update-checker-it_IT.mo │ ├── plugin-update-checker-it_IT.po │ ├── plugin-update-checker-ja.mo │ ├── plugin-update-checker-ja.po │ ├── plugin-update-checker-nl_BE.mo │ ├── plugin-update-checker-nl_BE.po │ ├── plugin-update-checker-nl_NL.mo │ ├── plugin-update-checker-nl_NL.po │ ├── plugin-update-checker-pt_BR.mo │ ├── plugin-update-checker-pt_BR.po │ ├── plugin-update-checker-ru_RU.mo │ ├── plugin-update-checker-ru_RU.po │ ├── plugin-update-checker-sl_SI.mo │ ├── plugin-update-checker-sl_SI.po │ ├── plugin-update-checker-sv_SE.mo │ ├── plugin-update-checker-sv_SE.po │ ├── plugin-update-checker-tr_TR.mo │ ├── plugin-update-checker-tr_TR.po │ ├── plugin-update-checker-uk_UA.mo │ ├── plugin-update-checker-uk_UA.po │ ├── plugin-update-checker-zh_CN.mo │ ├── plugin-update-checker-zh_CN.po │ └── plugin-update-checker.pot │ ├── license.txt │ ├── load-v5p1.php │ ├── phpcs.xml │ ├── plugin-update-checker.php │ └── vendor │ ├── Parsedown.php │ ├── ParsedownModern.php │ └── PucReadmeParser.php ├── webpack.config.js ├── webpack.config.release.js └── wpdotcom-authorization.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.npmpackagejsonlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/.npmpackagejsonlintrc.json -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/.stylelintignore -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /.wp-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/.wp-env.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/CREDITS.md -------------------------------------------------------------------------------- /Dockunit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/Dockunit.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/admin-distributed-post.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/css/admin-distributed-post.css -------------------------------------------------------------------------------- /assets/css/admin-edit-table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/css/admin-edit-table.css -------------------------------------------------------------------------------- /assets/css/admin-external-connection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/css/admin-external-connection.css -------------------------------------------------------------------------------- /assets/css/admin-external-connections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/css/admin-external-connections.css -------------------------------------------------------------------------------- /assets/css/admin-pull-table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/css/admin-pull-table.scss -------------------------------------------------------------------------------- /assets/css/admin-settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/css/admin-settings.css -------------------------------------------------------------------------------- /assets/css/admin-site-health.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/css/admin-site-health.css -------------------------------------------------------------------------------- /assets/css/admin-syndicated-post.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/css/admin-syndicated-post.scss -------------------------------------------------------------------------------- /assets/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/css/admin.css -------------------------------------------------------------------------------- /assets/css/gutenberg-syndicated-post.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/css/gutenberg-syndicated-post.scss -------------------------------------------------------------------------------- /assets/css/push.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/css/push.scss -------------------------------------------------------------------------------- /assets/img/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/img/banner-1544x500.png -------------------------------------------------------------------------------- /assets/img/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/img/banner-772x250.png -------------------------------------------------------------------------------- /assets/img/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/img/icon-128x128.png -------------------------------------------------------------------------------- /assets/img/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/img/icon-256x256.png -------------------------------------------------------------------------------- /assets/img/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/img/icon.svg -------------------------------------------------------------------------------- /assets/js/admin-distributed-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/js/admin-distributed-post.js -------------------------------------------------------------------------------- /assets/js/admin-external-connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/js/admin-external-connection.js -------------------------------------------------------------------------------- /assets/js/admin-pull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/js/admin-pull.js -------------------------------------------------------------------------------- /assets/js/components/plugin-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/js/components/plugin-icon.js -------------------------------------------------------------------------------- /assets/js/gutenberg-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/js/gutenberg-plugin.js -------------------------------------------------------------------------------- /assets/js/gutenberg-syndicated-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/js/gutenberg-syndicated-post.js -------------------------------------------------------------------------------- /assets/js/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/assets/js/push.js -------------------------------------------------------------------------------- /bin/generate-pot-with-wpcli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/bin/generate-pot-with-wpcli.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/composer.lock -------------------------------------------------------------------------------- /distributor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/distributor.php -------------------------------------------------------------------------------- /docs/auto-distribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/docs/auto-distribution.md -------------------------------------------------------------------------------- /docs/connect-to-an-existing-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/docs/connect-to-an-existing-post.md -------------------------------------------------------------------------------- /docs/demo-with-playground.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/docs/demo-with-playground.md -------------------------------------------------------------------------------- /docs/exclude-meta-from-yoast-duplicate-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/docs/exclude-meta-from-yoast-duplicate-post.md -------------------------------------------------------------------------------- /docs/migration-guide-version-1-to-version-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/docs/migration-guide-version-1-to-version-2.md -------------------------------------------------------------------------------- /docs/post-meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/docs/post-meta.md -------------------------------------------------------------------------------- /docs/snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/docs/snippets.md -------------------------------------------------------------------------------- /docs/stored-id-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/docs/stored-id-handling.md -------------------------------------------------------------------------------- /docs/tutorials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/docs/tutorials.json -------------------------------------------------------------------------------- /hookdoc-conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/hookdoc-conf.json -------------------------------------------------------------------------------- /includes/auto-distribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/auto-distribute.php -------------------------------------------------------------------------------- /includes/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/bootstrap.php -------------------------------------------------------------------------------- /includes/classes/API/SubscriptionsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/classes/API/SubscriptionsController.php -------------------------------------------------------------------------------- /includes/classes/Authentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/classes/Authentication.php -------------------------------------------------------------------------------- /includes/classes/Authentications/WordPressBasicAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/classes/Authentications/WordPressBasicAuth.php -------------------------------------------------------------------------------- /includes/classes/Authentications/WordPressDotcomOauth2Authentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/classes/Authentications/WordPressDotcomOauth2Authentication.php -------------------------------------------------------------------------------- /includes/classes/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/classes/Connection.php -------------------------------------------------------------------------------- /includes/classes/Connections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/classes/Connections.php -------------------------------------------------------------------------------- /includes/classes/DistributorPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/classes/DistributorPost.php -------------------------------------------------------------------------------- /includes/classes/EnqueueScript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/classes/EnqueueScript.php -------------------------------------------------------------------------------- /includes/classes/ExternalConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/classes/ExternalConnection.php -------------------------------------------------------------------------------- /includes/classes/ExternalConnectionListTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/classes/ExternalConnectionListTable.php -------------------------------------------------------------------------------- /includes/classes/ExternalConnections/WordPressDotcomExternalConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/classes/ExternalConnections/WordPressDotcomExternalConnection.php -------------------------------------------------------------------------------- /includes/classes/ExternalConnections/WordPressExternalConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/classes/ExternalConnections/WordPressExternalConnection.php -------------------------------------------------------------------------------- /includes/classes/InternalConnections/NetworkSiteConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/classes/InternalConnections/NetworkSiteConnection.php -------------------------------------------------------------------------------- /includes/classes/PullListTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/classes/PullListTable.php -------------------------------------------------------------------------------- /includes/classes/RegisteredDataHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/classes/RegisteredDataHandler.php -------------------------------------------------------------------------------- /includes/debug-info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/debug-info.php -------------------------------------------------------------------------------- /includes/distributed-post-ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/distributed-post-ui.php -------------------------------------------------------------------------------- /includes/external-connection-cpt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/external-connection-cpt.php -------------------------------------------------------------------------------- /includes/global-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/global-functions.php -------------------------------------------------------------------------------- /includes/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/hooks.php -------------------------------------------------------------------------------- /includes/pull-ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/pull-ui.php -------------------------------------------------------------------------------- /includes/push-ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/push-ui.php -------------------------------------------------------------------------------- /includes/rest-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/rest-api.php -------------------------------------------------------------------------------- /includes/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/settings.php -------------------------------------------------------------------------------- /includes/subscriptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/subscriptions.php -------------------------------------------------------------------------------- /includes/syndicated-post-ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/syndicated-post-ui.php -------------------------------------------------------------------------------- /includes/template-tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/template-tags.php -------------------------------------------------------------------------------- /includes/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/includes/utils.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/package.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/readme.txt -------------------------------------------------------------------------------- /templates/add-connection-amp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/templates/add-connection-amp.php -------------------------------------------------------------------------------- /templates/add-connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/templates/add-connection.php -------------------------------------------------------------------------------- /templates/show-connections-amp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/templates/show-connections-amp.php -------------------------------------------------------------------------------- /templates/show-connections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/templates/show-connections.php -------------------------------------------------------------------------------- /tests/Basic-Auth-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/Basic-Auth-master/README.md -------------------------------------------------------------------------------- /tests/Basic-Auth-master/basic-auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/Basic-Auth-master/basic-auth.php -------------------------------------------------------------------------------- /tests/Basic-Auth-master/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/Basic-Auth-master/composer.json -------------------------------------------------------------------------------- /tests/bin/initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/bin/initialize.sh -------------------------------------------------------------------------------- /tests/bin/set-core-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/bin/set-core-version.js -------------------------------------------------------------------------------- /tests/bin/wp-cli.yml: -------------------------------------------------------------------------------- 1 | apache_modules: 2 | - mod_rewrite 3 | -------------------------------------------------------------------------------- /tests/cypress/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/.eslintrc.json -------------------------------------------------------------------------------- /tests/cypress/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/.htaccess -------------------------------------------------------------------------------- /tests/cypress/assets/img/browser-frame.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/assets/img/browser-frame.jpg -------------------------------------------------------------------------------- /tests/cypress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/config.js -------------------------------------------------------------------------------- /tests/cypress/e2e/admin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/e2e/admin.test.js -------------------------------------------------------------------------------- /tests/cypress/e2e/distributed-post.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/e2e/distributed-post.test.js -------------------------------------------------------------------------------- /tests/cypress/e2e/editor-blocks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/e2e/editor-blocks.test.js -------------------------------------------------------------------------------- /tests/cypress/e2e/external-connection.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/e2e/external-connection.test.js -------------------------------------------------------------------------------- /tests/cypress/e2e/images-classic-editor.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/e2e/images-classic-editor.test.js -------------------------------------------------------------------------------- /tests/cypress/e2e/images.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/e2e/images.test.js -------------------------------------------------------------------------------- /tests/cypress/e2e/internal-pull.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/e2e/internal-pull.test.js -------------------------------------------------------------------------------- /tests/cypress/e2e/internal-push.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/e2e/internal-push.test.js -------------------------------------------------------------------------------- /tests/cypress/e2e/link-unlink.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/e2e/link-unlink.test.js -------------------------------------------------------------------------------- /tests/cypress/e2e/oembed.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/e2e/oembed.test.js -------------------------------------------------------------------------------- /tests/cypress/e2e/push-menu.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/e2e/push-menu.test.js -------------------------------------------------------------------------------- /tests/cypress/e2e/settings.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/e2e/settings.test.js -------------------------------------------------------------------------------- /tests/cypress/e2e/stored-id-handling-classic-editor.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/e2e/stored-id-handling-classic-editor.test.js -------------------------------------------------------------------------------- /tests/cypress/e2e/stored-id-handling.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/e2e/stored-id-handling.test.js -------------------------------------------------------------------------------- /tests/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/fixtures/example.json -------------------------------------------------------------------------------- /tests/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/support/commands.js -------------------------------------------------------------------------------- /tests/cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/support/e2e.js -------------------------------------------------------------------------------- /tests/cypress/support/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/support/functions.js -------------------------------------------------------------------------------- /tests/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/cypress/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e-test-plugin/e2e-test-plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/e2e-test-plugin/e2e-test-plugin.php -------------------------------------------------------------------------------- /tests/php/ConnectionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/php/ConnectionsTest.php -------------------------------------------------------------------------------- /tests/php/DebugInfoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/php/DebugInfoTest.php -------------------------------------------------------------------------------- /tests/php/DistributorPostTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/php/DistributorPostTest.php -------------------------------------------------------------------------------- /tests/php/EnqueueScriptTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/php/EnqueueScriptTest.php -------------------------------------------------------------------------------- /tests/php/ExternalConnectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/php/ExternalConnectionTest.php -------------------------------------------------------------------------------- /tests/php/HooksTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/php/HooksTest.php -------------------------------------------------------------------------------- /tests/php/NetworkSiteConnectionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/php/NetworkSiteConnectionsTest.php -------------------------------------------------------------------------------- /tests/php/SubscriptionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/php/SubscriptionsTest.php -------------------------------------------------------------------------------- /tests/php/UtilsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/php/UtilsTest.php -------------------------------------------------------------------------------- /tests/php/WordPressExternalConnectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/php/WordPressExternalConnectionTest.php -------------------------------------------------------------------------------- /tests/php/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/php/bootstrap.php -------------------------------------------------------------------------------- /tests/php/includes/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/php/includes/TestCase.php -------------------------------------------------------------------------------- /tests/php/includes/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/tests/php/includes/common.php -------------------------------------------------------------------------------- /uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/uninstall.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/.editorconfig -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/.gitattributes: -------------------------------------------------------------------------------- 1 | /build export-ignore 2 | -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/.gitignore -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5/PucFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5/PucFactory.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Autoloader.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/DebugBar/Extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/DebugBar/Extension.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/DebugBar/Panel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/DebugBar/Panel.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/DebugBar/PluginExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/DebugBar/PluginExtension.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/DebugBar/PluginPanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/DebugBar/PluginPanel.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/DebugBar/ThemePanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/DebugBar/ThemePanel.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/InstalledPackage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/InstalledPackage.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Metadata.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/OAuthSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/OAuthSignature.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Plugin/Package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Plugin/Package.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Plugin/PluginInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Plugin/PluginInfo.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Plugin/Ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Plugin/Ui.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Plugin/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Plugin/Update.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Plugin/UpdateChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Plugin/UpdateChecker.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/PucFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/PucFactory.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Scheduler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Scheduler.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/StateStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/StateStore.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Theme/Package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Theme/Package.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Theme/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Theme/Update.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Theme/UpdateChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Theme/UpdateChecker.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Update.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/UpdateChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/UpdateChecker.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/UpgraderStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/UpgraderStatus.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Utils.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Vcs/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Vcs/Api.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Vcs/BaseChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Vcs/BaseChecker.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Vcs/BitBucketApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Vcs/BitBucketApi.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Vcs/GitHubApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Vcs/GitHubApi.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Vcs/GitLabApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Vcs/GitLabApi.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Vcs/PluginUpdateChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Vcs/PluginUpdateChecker.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Vcs/Reference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Vcs/Reference.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Vcs/ReleaseAssetSupport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Vcs/ReleaseAssetSupport.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Vcs/ReleaseFilteringFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Vcs/ReleaseFilteringFeature.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Vcs/ThemeUpdateChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Vcs/ThemeUpdateChecker.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Vcs/VcsCheckerMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/Puc/v5p1/Vcs/VcsCheckerMethods.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/README.md -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/composer.json -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/css/puc-debug-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/css/puc-debug-bar.css -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/examples/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/examples/plugin.json -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/examples/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/examples/theme.json -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/js/debug-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/js/debug-bar.js -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-ca.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-ca.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-ca.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-cs_CZ.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-cs_CZ.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-cs_CZ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-cs_CZ.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-da_DK.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-da_DK.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-da_DK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-da_DK.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-de_DE.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-de_DE.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_AR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_AR.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_AR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_AR.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_CL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_CL.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_CL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_CL.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_CO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_CO.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_CO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_CO.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_CR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_CR.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_CR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_CR.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_DO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_DO.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_DO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_DO.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_ES.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_ES.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_GT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_GT.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_GT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_GT.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_HN.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_HN.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_HN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_HN.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_MX.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_MX.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_MX.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_MX.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_PE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_PE.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_PE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_PE.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_PR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_PR.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_PR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_PR.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_UY.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_UY.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_UY.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_UY.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_VE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_VE.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_VE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-es_VE.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-fa_IR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-fa_IR.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-fa_IR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-fa_IR.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-fr_CA.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-fr_CA.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-fr_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-fr_CA.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-fr_FR.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-fr_FR.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-hu_HU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-hu_HU.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-hu_HU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-hu_HU.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-it_IT.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-it_IT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-it_IT.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-ja.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-ja.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-ja.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-nl_BE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-nl_BE.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-nl_BE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-nl_BE.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-nl_NL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-nl_NL.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-nl_NL.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-pt_BR.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-pt_BR.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-ru_RU.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-ru_RU.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-sl_SI.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-sl_SI.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-sl_SI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-sl_SI.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-sv_SE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-sv_SE.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-sv_SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-sv_SE.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-tr_TR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-tr_TR.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-tr_TR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-tr_TR.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-uk_UA.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-uk_UA.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-uk_UA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-uk_UA.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-zh_CN.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-zh_CN.mo -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker-zh_CN.po -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/languages/plugin-update-checker.pot -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/license.txt -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/load-v5p1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/load-v5p1.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/phpcs.xml -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/plugin-update-checker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/plugin-update-checker.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/vendor/Parsedown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/vendor/Parsedown.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/vendor/ParsedownModern.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/vendor/ParsedownModern.php -------------------------------------------------------------------------------- /vendor/yahnis-elsts/plugin-update-checker/vendor/PucReadmeParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/vendor/yahnis-elsts/plugin-update-checker/vendor/PucReadmeParser.php -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.config.release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/webpack.config.release.js -------------------------------------------------------------------------------- /wpdotcom-authorization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/distributor/HEAD/wpdotcom-authorization.md --------------------------------------------------------------------------------