├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── composer.json ├── docs ├── images │ └── screenshot.png ├── mu-plugin-info.md └── testing │ └── testing-tips.md ├── jetpack-beta.php ├── src ├── admin │ ├── admin.css │ ├── admin.js │ ├── branch-card.template.php │ ├── exception.template.php │ ├── header.template.php │ ├── notice.template.php │ ├── plugin-manage.template.php │ ├── plugin-select.template.php │ ├── show-needed-updates.template.php │ ├── toggles.template.php │ └── updates.js ├── class-admin.php ├── class-autoupdateself.php ├── class-clicommand.php ├── class-hooks.php ├── class-parsedownext.php ├── class-plugin.php ├── class-plugindataexception.php └── class-utils.php └── vendor ├── autoload.php ├── autoload_packages.php ├── automattic └── jetpack-admin-ui │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ └── src │ └── class-admin-menu.php ├── composer ├── ClassLoader.php ├── InstalledVersions.php ├── LICENSE ├── autoload_classmap.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php ├── installed.json ├── installed.php ├── jetpack_autoload_classmap.php ├── platform_check.php └── semver │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── Comparator.php │ ├── CompilingMatcher.php │ ├── Constraint │ ├── Bound.php │ ├── Constraint.php │ ├── ConstraintInterface.php │ ├── MatchAllConstraint.php │ ├── MatchNoneConstraint.php │ └── MultiConstraint.php │ ├── Interval.php │ ├── Intervals.php │ ├── Semver.php │ └── VersionParser.php ├── erusev └── parsedown │ ├── LICENSE.txt │ ├── Parsedown.php │ ├── README.md │ └── composer.json └── jetpack-autoloader ├── class-autoloader-handler.php ├── class-autoloader-locator.php ├── class-autoloader.php ├── class-container.php ├── class-hook-manager.php ├── class-latest-autoloader-guard.php ├── class-manifest-reader.php ├── class-path-processor.php ├── class-php-autoloader.php ├── class-plugin-locator.php ├── class-plugins-handler.php ├── class-shutdown-handler.php ├── class-version-loader.php └── class-version-selector.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/SECURITY.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/composer.json -------------------------------------------------------------------------------- /docs/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/docs/images/screenshot.png -------------------------------------------------------------------------------- /docs/mu-plugin-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/docs/mu-plugin-info.md -------------------------------------------------------------------------------- /docs/testing/testing-tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/docs/testing/testing-tips.md -------------------------------------------------------------------------------- /jetpack-beta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/jetpack-beta.php -------------------------------------------------------------------------------- /src/admin/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/src/admin/admin.css -------------------------------------------------------------------------------- /src/admin/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/src/admin/admin.js -------------------------------------------------------------------------------- /src/admin/branch-card.template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/src/admin/branch-card.template.php -------------------------------------------------------------------------------- /src/admin/exception.template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/src/admin/exception.template.php -------------------------------------------------------------------------------- /src/admin/header.template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/src/admin/header.template.php -------------------------------------------------------------------------------- /src/admin/notice.template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/src/admin/notice.template.php -------------------------------------------------------------------------------- /src/admin/plugin-manage.template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/src/admin/plugin-manage.template.php -------------------------------------------------------------------------------- /src/admin/plugin-select.template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/src/admin/plugin-select.template.php -------------------------------------------------------------------------------- /src/admin/show-needed-updates.template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/src/admin/show-needed-updates.template.php -------------------------------------------------------------------------------- /src/admin/toggles.template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/src/admin/toggles.template.php -------------------------------------------------------------------------------- /src/admin/updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/src/admin/updates.js -------------------------------------------------------------------------------- /src/class-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/src/class-admin.php -------------------------------------------------------------------------------- /src/class-autoupdateself.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/src/class-autoupdateself.php -------------------------------------------------------------------------------- /src/class-clicommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/src/class-clicommand.php -------------------------------------------------------------------------------- /src/class-hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/src/class-hooks.php -------------------------------------------------------------------------------- /src/class-parsedownext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/src/class-parsedownext.php -------------------------------------------------------------------------------- /src/class-plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/src/class-plugin.php -------------------------------------------------------------------------------- /src/class-plugindataexception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/src/class-plugindataexception.php -------------------------------------------------------------------------------- /src/class-utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/src/class-utils.php -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/autoload_packages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/autoload_packages.php -------------------------------------------------------------------------------- /vendor/automattic/jetpack-admin-ui/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/automattic/jetpack-admin-ui/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/automattic/jetpack-admin-ui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/automattic/jetpack-admin-ui/LICENSE.txt -------------------------------------------------------------------------------- /vendor/automattic/jetpack-admin-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/automattic/jetpack-admin-ui/README.md -------------------------------------------------------------------------------- /vendor/automattic/jetpack-admin-ui/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/automattic/jetpack-admin-ui/SECURITY.md -------------------------------------------------------------------------------- /vendor/automattic/jetpack-admin-ui/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/automattic/jetpack-admin-ui/composer.json -------------------------------------------------------------------------------- /vendor/automattic/jetpack-admin-ui/src/class-admin-menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/automattic/jetpack-admin-ui/src/class-admin-menu.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/installed.php -------------------------------------------------------------------------------- /vendor/composer/jetpack_autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/jetpack_autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/platform_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/platform_check.php -------------------------------------------------------------------------------- /vendor/composer/semver/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/semver/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/composer/semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/semver/LICENSE -------------------------------------------------------------------------------- /vendor/composer/semver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/semver/README.md -------------------------------------------------------------------------------- /vendor/composer/semver/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/semver/composer.json -------------------------------------------------------------------------------- /vendor/composer/semver/src/Comparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/semver/src/Comparator.php -------------------------------------------------------------------------------- /vendor/composer/semver/src/CompilingMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/semver/src/CompilingMatcher.php -------------------------------------------------------------------------------- /vendor/composer/semver/src/Constraint/Bound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/semver/src/Constraint/Bound.php -------------------------------------------------------------------------------- /vendor/composer/semver/src/Constraint/Constraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/semver/src/Constraint/Constraint.php -------------------------------------------------------------------------------- /vendor/composer/semver/src/Constraint/ConstraintInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/semver/src/Constraint/ConstraintInterface.php -------------------------------------------------------------------------------- /vendor/composer/semver/src/Constraint/MatchAllConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/semver/src/Constraint/MatchAllConstraint.php -------------------------------------------------------------------------------- /vendor/composer/semver/src/Constraint/MatchNoneConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/semver/src/Constraint/MatchNoneConstraint.php -------------------------------------------------------------------------------- /vendor/composer/semver/src/Constraint/MultiConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/semver/src/Constraint/MultiConstraint.php -------------------------------------------------------------------------------- /vendor/composer/semver/src/Interval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/semver/src/Interval.php -------------------------------------------------------------------------------- /vendor/composer/semver/src/Intervals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/semver/src/Intervals.php -------------------------------------------------------------------------------- /vendor/composer/semver/src/Semver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/semver/src/Semver.php -------------------------------------------------------------------------------- /vendor/composer/semver/src/VersionParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/composer/semver/src/VersionParser.php -------------------------------------------------------------------------------- /vendor/erusev/parsedown/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/erusev/parsedown/LICENSE.txt -------------------------------------------------------------------------------- /vendor/erusev/parsedown/Parsedown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/erusev/parsedown/Parsedown.php -------------------------------------------------------------------------------- /vendor/erusev/parsedown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/erusev/parsedown/README.md -------------------------------------------------------------------------------- /vendor/erusev/parsedown/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/erusev/parsedown/composer.json -------------------------------------------------------------------------------- /vendor/jetpack-autoloader/class-autoloader-handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/jetpack-autoloader/class-autoloader-handler.php -------------------------------------------------------------------------------- /vendor/jetpack-autoloader/class-autoloader-locator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/jetpack-autoloader/class-autoloader-locator.php -------------------------------------------------------------------------------- /vendor/jetpack-autoloader/class-autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/jetpack-autoloader/class-autoloader.php -------------------------------------------------------------------------------- /vendor/jetpack-autoloader/class-container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/jetpack-autoloader/class-container.php -------------------------------------------------------------------------------- /vendor/jetpack-autoloader/class-hook-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/jetpack-autoloader/class-hook-manager.php -------------------------------------------------------------------------------- /vendor/jetpack-autoloader/class-latest-autoloader-guard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/jetpack-autoloader/class-latest-autoloader-guard.php -------------------------------------------------------------------------------- /vendor/jetpack-autoloader/class-manifest-reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/jetpack-autoloader/class-manifest-reader.php -------------------------------------------------------------------------------- /vendor/jetpack-autoloader/class-path-processor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/jetpack-autoloader/class-path-processor.php -------------------------------------------------------------------------------- /vendor/jetpack-autoloader/class-php-autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/jetpack-autoloader/class-php-autoloader.php -------------------------------------------------------------------------------- /vendor/jetpack-autoloader/class-plugin-locator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/jetpack-autoloader/class-plugin-locator.php -------------------------------------------------------------------------------- /vendor/jetpack-autoloader/class-plugins-handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/jetpack-autoloader/class-plugins-handler.php -------------------------------------------------------------------------------- /vendor/jetpack-autoloader/class-shutdown-handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/jetpack-autoloader/class-shutdown-handler.php -------------------------------------------------------------------------------- /vendor/jetpack-autoloader/class-version-loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/jetpack-autoloader/class-version-loader.php -------------------------------------------------------------------------------- /vendor/jetpack-autoloader/class-version-selector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/jetpack-beta/HEAD/vendor/jetpack-autoloader/class-version-selector.php --------------------------------------------------------------------------------