Skip to content

Commit

Permalink
release ready for 0.1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jaedm97 committed Jan 4, 2024
1 parent 4abd9b0 commit 111aada
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 23 deletions.
24 changes: 2 additions & 22 deletions instawp-connect.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @wordpress-plugin
* Plugin Name: InstaWP Connect
* Description: 1-click WP Staging with Sync. Manage your Live sites.
* Version: 0.1.0.7
* Version: 0.1.0.8
* Author: InstaWP Team
* Author URI: https://instawp.com/
* License: GPL-3.0+
Expand All @@ -23,7 +23,7 @@

global $wpdb;

define( 'INSTAWP_PLUGIN_VERSION', '0.1.0.7' );
define( 'INSTAWP_PLUGIN_VERSION', '0.1.0.8' );
define( 'INSTAWP_RESTORE_INIT', 'init' );
define( 'INSTAWP_API_DOMAIN_PROD', 'https://app.instawp.io' );

Expand Down Expand Up @@ -195,23 +195,3 @@ function run_instawp() {
}
} );


add_action( 'init', function () {
if ( isset( $_GET['debug'] ) && $_GET['debug'] == 'yes' ) {

// $access_token = 'WGRwiCmKZGz7PulLLosbckgNHwAfwZSm88FbtimO';
// InstaWP_Setting::instawp_generate_api_key( $access_token, true );

$site_name = 'Jaed Test Site @@ 2';
$site_name = strtolower( $site_name );
$site_name = preg_replace( '/[^a-z0-9-_]/', ' ', $site_name );
$site_name = preg_replace( '/\s+/', '-', $site_name );


echo "<pre>";
print_r( $site_name );
echo "</pre>";

die();
}
}, 0 );
7 changes: 6 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: clone, migrate, staging, backup, restore
Requires at least: 5.4
Tested up to: 6.4.2
Requires PHP: 7.4
Stable tag: 0.1.0.7
Stable tag: 0.1.0.8
License: GPLv3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html

Expand Down Expand Up @@ -94,6 +94,11 @@ Need support or want to partner with us? Go to our [website](http://instawp.com/

== Changelog ==

= 0.1.0.8 - 4 Jan 2024 =

- NEW - Added support for custom name of the staging website.
- FIX - Fixed 2 way sync event tracking issue.

= 0.1.0.7 - 28 Dec 2023 =

- NEW - Really Simple SSL Redirect plugin support in htaccess file.
Expand Down

0 comments on commit 111aada

Please sign in to comment.