Changeset 3015023
- Timestamp:
- 12/28/2023 09:58:21 AM (2 years ago)
- Location:
- flywp
- Files:
-
- 14 edited
- 1 copied
-
tags/0.4.2 (copied) (copied from flywp/trunk)
-
tags/0.4.2/flywp.php (modified) (2 diffs)
-
tags/0.4.2/includes/Api/Plugins.php (modified) (1 diff)
-
tags/0.4.2/includes/Api/Themes.php (modified) (1 diff)
-
tags/0.4.2/includes/Api/Updates.php (modified) (4 diffs)
-
tags/0.4.2/languages/flywp.pot (modified) (2 diffs)
-
tags/0.4.2/readme.txt (modified) (2 diffs)
-
tags/0.4.2/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/flywp.php (modified) (2 diffs)
-
trunk/includes/Api/Plugins.php (modified) (1 diff)
-
trunk/includes/Api/Themes.php (modified) (1 diff)
-
trunk/includes/Api/Updates.php (modified) (4 diffs)
-
trunk/languages/flywp.pot (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
flywp/tags/0.4.2/flywp.php
r3014205 r3015023 4 4 * Plugin URI: https://flywp.com 5 5 * Description: Helper plugin for FlyWP 6 * Version: 0.4. 16 * Version: 0.4.2 7 7 * Author: FlyWP 8 8 * Author URI: https://flywp.com/?utm_source=wporg&utm_medium=banner&utm_campaign=author-uri … … 42 42 * @var string 43 43 */ 44 public $version = '0.4. 1';44 public $version = '0.4.2'; 45 45 46 46 /** -
flywp/tags/0.4.2/includes/Api/Plugins.php
r3014203 r3015023 27 27 if ( ! function_exists( 'get_plugin_updates' ) ) { 28 28 require_once ABSPATH . 'wp-admin/includes/update.php'; 29 } 30 31 // Update the update cache if requested. 32 if ( isset( $args['force'] ) && $args['force'] === 'true' ) { 33 wp_update_plugins(); 29 34 } 30 35 -
flywp/tags/0.4.2/includes/Api/Themes.php
r3014203 r3015023 19 19 public function respond( $args ) { 20 20 $response = []; 21 22 // Update the update cache if requested. 23 if ( isset( $args['force'] ) && $args['force'] === 'true' ) { 24 wp_update_themes(); 25 } 21 26 22 27 $themes = wp_get_themes(); -
flywp/tags/0.4.2/includes/Api/Updates.php
r3014203 r3015023 60 60 61 61 wp_send_json_success( [ 62 'message' => ' Updated successfully.',62 'message' => 'Plugins updated successfully.', 63 63 ] ); 64 64 } … … 71 71 * @return void 72 72 */ 73 public function update_theme ( $args ) {73 public function update_themes( $args ) { 74 74 if ( ! isset( $args['themes'] ) || ! is_array( $args['themes'] ) ) { 75 75 wp_send_json_error( 'Missing theme name(s)' ); … … 87 87 88 88 wp_send_json_success( [ 89 'message' => ' Updated successfully.',89 'message' => 'Themes updated successfully.', 90 90 ] ); 91 91 } … … 132 132 133 133 wp_send_json_success( [ 134 'message' => ' Updated successfully.',134 'message' => 'WordPress core updated successfully.', 135 135 ] ); 136 136 } -
flywp/tags/0.4.2/languages/flywp.pot
r3014205 r3015023 2 2 msgid "" 3 3 msgstr "" 4 "Project-Id-Version: FlyWP 0.4. 1\n"4 "Project-Id-Version: FlyWP 0.4.2\n" 5 5 "Report-Msgid-Bugs-To: https://github.com/flywp/flywp-helper/issues\n" 6 6 "Last-Translator: [email protected]\n" … … 9 9 "Content-Type: text/plain; charset=UTF-8\n" 10 10 "Content-Transfer-Encoding: 8bit\n" 11 "POT-Creation-Date: 2023-12-2 6T06:07:48+00:00\n"11 "POT-Creation-Date: 2023-12-28T09:57:15+00:00\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 13 "X-Generator: WP-CLI 2.9.0\n" -
flywp/tags/0.4.2/readme.txt
r3014205 r3015023 5 5 Tested up to: 6.4 6 6 Requires PHP: 7.4 7 Stable tag: 0.4. 17 Stable tag: 0.4.2 8 8 Requires PHP: 7.1 or higher 9 9 License: GPLv2 or later … … 54 54 55 55 == Changelog == 56 57 = v0.4.2 (28 December, 2023) = 58 59 * **Fix:** Theme REST API had a typo, hence was not working. 60 * **Improved:** Added a parameter to forcefully update the theme and plugin list to have the latest changes. 56 61 57 62 = v0.4.1 (26 December, 2023) = -
flywp/tags/0.4.2/vendor/composer/installed.php
r3014205 r3015023 2 2 'root' => array( 3 3 'name' => 'flywp/flywp', 4 'pretty_version' => '0.4. 1',5 'version' => '0.4. 1.0',4 'pretty_version' => '0.4.2', 5 'version' => '0.4.2.0', 6 6 'reference' => NULL, 7 7 'type' => 'wordpress-plugin', … … 12 12 'versions' => array( 13 13 'flywp/flywp' => array( 14 'pretty_version' => '0.4. 1',15 'version' => '0.4. 1.0',14 'pretty_version' => '0.4.2', 15 'version' => '0.4.2.0', 16 16 'reference' => NULL, 17 17 'type' => 'wordpress-plugin', -
flywp/trunk/flywp.php
r3014205 r3015023 4 4 * Plugin URI: https://flywp.com 5 5 * Description: Helper plugin for FlyWP 6 * Version: 0.4. 16 * Version: 0.4.2 7 7 * Author: FlyWP 8 8 * Author URI: https://flywp.com/?utm_source=wporg&utm_medium=banner&utm_campaign=author-uri … … 42 42 * @var string 43 43 */ 44 public $version = '0.4. 1';44 public $version = '0.4.2'; 45 45 46 46 /** -
flywp/trunk/includes/Api/Plugins.php
r3014203 r3015023 27 27 if ( ! function_exists( 'get_plugin_updates' ) ) { 28 28 require_once ABSPATH . 'wp-admin/includes/update.php'; 29 } 30 31 // Update the update cache if requested. 32 if ( isset( $args['force'] ) && $args['force'] === 'true' ) { 33 wp_update_plugins(); 29 34 } 30 35 -
flywp/trunk/includes/Api/Themes.php
r3014203 r3015023 19 19 public function respond( $args ) { 20 20 $response = []; 21 22 // Update the update cache if requested. 23 if ( isset( $args['force'] ) && $args['force'] === 'true' ) { 24 wp_update_themes(); 25 } 21 26 22 27 $themes = wp_get_themes(); -
flywp/trunk/includes/Api/Updates.php
r3014203 r3015023 60 60 61 61 wp_send_json_success( [ 62 'message' => ' Updated successfully.',62 'message' => 'Plugins updated successfully.', 63 63 ] ); 64 64 } … … 71 71 * @return void 72 72 */ 73 public function update_theme ( $args ) {73 public function update_themes( $args ) { 74 74 if ( ! isset( $args['themes'] ) || ! is_array( $args['themes'] ) ) { 75 75 wp_send_json_error( 'Missing theme name(s)' ); … … 87 87 88 88 wp_send_json_success( [ 89 'message' => ' Updated successfully.',89 'message' => 'Themes updated successfully.', 90 90 ] ); 91 91 } … … 132 132 133 133 wp_send_json_success( [ 134 'message' => ' Updated successfully.',134 'message' => 'WordPress core updated successfully.', 135 135 ] ); 136 136 } -
flywp/trunk/languages/flywp.pot
r3014205 r3015023 2 2 msgid "" 3 3 msgstr "" 4 "Project-Id-Version: FlyWP 0.4. 1\n"4 "Project-Id-Version: FlyWP 0.4.2\n" 5 5 "Report-Msgid-Bugs-To: https://github.com/flywp/flywp-helper/issues\n" 6 6 "Last-Translator: [email protected]\n" … … 9 9 "Content-Type: text/plain; charset=UTF-8\n" 10 10 "Content-Transfer-Encoding: 8bit\n" 11 "POT-Creation-Date: 2023-12-2 6T06:07:48+00:00\n"11 "POT-Creation-Date: 2023-12-28T09:57:15+00:00\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 13 "X-Generator: WP-CLI 2.9.0\n" -
flywp/trunk/readme.txt
r3014205 r3015023 5 5 Tested up to: 6.4 6 6 Requires PHP: 7.4 7 Stable tag: 0.4. 17 Stable tag: 0.4.2 8 8 Requires PHP: 7.1 or higher 9 9 License: GPLv2 or later … … 54 54 55 55 == Changelog == 56 57 = v0.4.2 (28 December, 2023) = 58 59 * **Fix:** Theme REST API had a typo, hence was not working. 60 * **Improved:** Added a parameter to forcefully update the theme and plugin list to have the latest changes. 56 61 57 62 = v0.4.1 (26 December, 2023) = -
flywp/trunk/vendor/composer/installed.php
r3014205 r3015023 2 2 'root' => array( 3 3 'name' => 'flywp/flywp', 4 'pretty_version' => '0.4. 1',5 'version' => '0.4. 1.0',4 'pretty_version' => '0.4.2', 5 'version' => '0.4.2.0', 6 6 'reference' => NULL, 7 7 'type' => 'wordpress-plugin', … … 12 12 'versions' => array( 13 13 'flywp/flywp' => array( 14 'pretty_version' => '0.4. 1',15 'version' => '0.4. 1.0',14 'pretty_version' => '0.4.2', 15 'version' => '0.4.2.0', 16 16 'reference' => NULL, 17 17 'type' => 'wordpress-plugin',
Note: See TracChangeset
for help on using the changeset viewer.