├── CHANGES.md ├── LICENSE.md ├── README.md ├── aspire-update.php ├── assets ├── banner-1544x500.jpg ├── banner-772x250.jpg ├── css │ └── aspire-update.css ├── icon-128x128.jpg ├── icon-256x256.jpg ├── icon.svg ├── images │ └── aspirepress-logo-icon.svg ├── js │ └── aspire-update.js └── playground │ └── blueprint.json ├── composer.json ├── hosts.json ├── includes ├── autoload.php ├── class-admin-settings.php ├── class-api-rewrite.php ├── class-aspirecloud-api.php ├── class-branding.php ├── class-controller.php ├── class-debug.php ├── class-filesystem-direct.php ├── class-plugins-screens.php ├── class-themes-screens.php ├── class-utilities.php └── views │ ├── page-admin-settings.php │ └── voltron.txt ├── languages └── aspireupdate.pot ├── readme.txt └── vendor └── afragen ├── autoloader ├── Autoloader.php ├── CHANGES.md ├── LICENSE ├── README.md └── composer.json ├── git-updater-lite ├── LICENSE ├── Lite.php ├── README.md ├── composer.json └── languages │ └── git-updater-lite.pot └── translations-updater ├── CHANGES.md ├── LICENSE ├── README.md ├── composer.json └── src └── Translations_Updater ├── API.php ├── Base.php ├── Init.php ├── Language_Pack.php └── Language_Pack_API.php /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/README.md -------------------------------------------------------------------------------- /aspire-update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/aspire-update.php -------------------------------------------------------------------------------- /assets/banner-1544x500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/assets/banner-1544x500.jpg -------------------------------------------------------------------------------- /assets/banner-772x250.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/assets/banner-772x250.jpg -------------------------------------------------------------------------------- /assets/css/aspire-update.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/assets/css/aspire-update.css -------------------------------------------------------------------------------- /assets/icon-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/assets/icon-128x128.jpg -------------------------------------------------------------------------------- /assets/icon-256x256.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/assets/icon-256x256.jpg -------------------------------------------------------------------------------- /assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/assets/icon.svg -------------------------------------------------------------------------------- /assets/images/aspirepress-logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/assets/images/aspirepress-logo-icon.svg -------------------------------------------------------------------------------- /assets/js/aspire-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/assets/js/aspire-update.js -------------------------------------------------------------------------------- /assets/playground/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/assets/playground/blueprint.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/composer.json -------------------------------------------------------------------------------- /hosts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/hosts.json -------------------------------------------------------------------------------- /includes/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/includes/autoload.php -------------------------------------------------------------------------------- /includes/class-admin-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/includes/class-admin-settings.php -------------------------------------------------------------------------------- /includes/class-api-rewrite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/includes/class-api-rewrite.php -------------------------------------------------------------------------------- /includes/class-aspirecloud-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/includes/class-aspirecloud-api.php -------------------------------------------------------------------------------- /includes/class-branding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/includes/class-branding.php -------------------------------------------------------------------------------- /includes/class-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/includes/class-controller.php -------------------------------------------------------------------------------- /includes/class-debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/includes/class-debug.php -------------------------------------------------------------------------------- /includes/class-filesystem-direct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/includes/class-filesystem-direct.php -------------------------------------------------------------------------------- /includes/class-plugins-screens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/includes/class-plugins-screens.php -------------------------------------------------------------------------------- /includes/class-themes-screens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/includes/class-themes-screens.php -------------------------------------------------------------------------------- /includes/class-utilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/includes/class-utilities.php -------------------------------------------------------------------------------- /includes/views/page-admin-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/includes/views/page-admin-settings.php -------------------------------------------------------------------------------- /includes/views/voltron.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/includes/views/voltron.txt -------------------------------------------------------------------------------- /languages/aspireupdate.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/languages/aspireupdate.pot -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/readme.txt -------------------------------------------------------------------------------- /vendor/afragen/autoloader/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/vendor/afragen/autoloader/Autoloader.php -------------------------------------------------------------------------------- /vendor/afragen/autoloader/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/vendor/afragen/autoloader/CHANGES.md -------------------------------------------------------------------------------- /vendor/afragen/autoloader/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/vendor/afragen/autoloader/LICENSE -------------------------------------------------------------------------------- /vendor/afragen/autoloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/vendor/afragen/autoloader/README.md -------------------------------------------------------------------------------- /vendor/afragen/autoloader/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/vendor/afragen/autoloader/composer.json -------------------------------------------------------------------------------- /vendor/afragen/git-updater-lite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/vendor/afragen/git-updater-lite/LICENSE -------------------------------------------------------------------------------- /vendor/afragen/git-updater-lite/Lite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/vendor/afragen/git-updater-lite/Lite.php -------------------------------------------------------------------------------- /vendor/afragen/git-updater-lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/vendor/afragen/git-updater-lite/README.md -------------------------------------------------------------------------------- /vendor/afragen/git-updater-lite/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/vendor/afragen/git-updater-lite/composer.json -------------------------------------------------------------------------------- /vendor/afragen/git-updater-lite/languages/git-updater-lite.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/vendor/afragen/git-updater-lite/languages/git-updater-lite.pot -------------------------------------------------------------------------------- /vendor/afragen/translations-updater/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/vendor/afragen/translations-updater/CHANGES.md -------------------------------------------------------------------------------- /vendor/afragen/translations-updater/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/vendor/afragen/translations-updater/LICENSE -------------------------------------------------------------------------------- /vendor/afragen/translations-updater/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/vendor/afragen/translations-updater/README.md -------------------------------------------------------------------------------- /vendor/afragen/translations-updater/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/vendor/afragen/translations-updater/composer.json -------------------------------------------------------------------------------- /vendor/afragen/translations-updater/src/Translations_Updater/API.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/vendor/afragen/translations-updater/src/Translations_Updater/API.php -------------------------------------------------------------------------------- /vendor/afragen/translations-updater/src/Translations_Updater/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/vendor/afragen/translations-updater/src/Translations_Updater/Base.php -------------------------------------------------------------------------------- /vendor/afragen/translations-updater/src/Translations_Updater/Init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/vendor/afragen/translations-updater/src/Translations_Updater/Init.php -------------------------------------------------------------------------------- /vendor/afragen/translations-updater/src/Translations_Updater/Language_Pack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/vendor/afragen/translations-updater/src/Translations_Updater/Language_Pack.php -------------------------------------------------------------------------------- /vendor/afragen/translations-updater/src/Translations_Updater/Language_Pack_API.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspirepress/aspireupdate/HEAD/vendor/afragen/translations-updater/src/Translations_Updater/Language_Pack_API.php --------------------------------------------------------------------------------