From 4511a7ec65add2ffc5ada42a4c61a91d8365a957 Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Thu, 1 Aug 2024 17:13:10 -0400 Subject: [PATCH 1/2] update updater endpoint this marks the point that plugins will look to the new endpoint for updates. The plugin will then self-update to the new version of the plugin. --- bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.php b/bootstrap.php index 58c300f..8178db9 100644 --- a/bootstrap.php +++ b/bootstrap.php @@ -90,7 +90,7 @@ function () { mm_require( MM_BASE_DIR . 'inc/admin-page-notifications-blocker.php' ); // Set up the updater endpoint and map values -$mojo_update_url = 'https://hiive.cloud/workers/release-api/plugins/bluehost/mojo-marketplace-wp-plugin?file=mojo-marketplace.php'; // Custom API GET endpoint +$mojo_update_url = 'https://hiive.cloud/workers/release-api/plugins/newfold-labs/wp-plugin-mojo?slug=mojo-marketplace-wp-plugin&file=mojo-marketplace.php '; // Custom API GET endpoint $mojo_plugin_updater = new PluginUpdater( MM_FILE, $mojo_update_url ); $mojo_plugin_updater->setDataMap( array( From feba73d35166d39744f9575a4d61268b02897600 Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Thu, 1 Aug 2024 17:16:47 -0400 Subject: [PATCH 2/2] version bump to 1.8.0 --- mojo-marketplace.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mojo-marketplace.php b/mojo-marketplace.php index 76406e9..89b025d 100644 --- a/mojo-marketplace.php +++ b/mojo-marketplace.php @@ -11,8 +11,8 @@ * Plugin Name: The MOJO Marketplace * Plugin URI: https://mojomarketplace.com * Description: This plugin adds shortcodes, widgets, and themes to your WordPress site. - * Version: 1.7.9 - * Tested up to: 6.3.2 + * Version: 1.8.0 + * Tested up to: 6.6.1 * Requires at least: 5.8 * Requires PHP: 5.6 * Author: Bluehost @@ -28,7 +28,7 @@ die; } -define( 'MM_VERSION', '1.7.9' ); +define( 'MM_VERSION', '1.8.0' ); define( 'MM_FILE', __FILE__ ); define( 'MM_BASE_DIR', plugin_dir_path( __FILE__ ) ); define( 'MM_BASE_URL', plugin_dir_url( __FILE__ ) );