| @@ -1,10 +1,10 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | /* |
| 3 | 3 | * Plugin Name: Blockspare |
| 4 | 4 | * Plugin URI: https://profiles.wordpress.org/blockspare |
| 5 | - * Description: Beautiful Page Building Blocks for WordPress | |
| 6 | - * Version: 1.1.2 | |
| 5 | + * Description: Beautiful Page Building Gutenberg Blocks for WordPress | |
| 6 | + * Version: 1.3.5 | |
| 7 | 7 | * Author: Blockspare |
| 8 | 8 | * Author URI: https://blockspare.com |
| 9 | 9 | * Text Domain: blockspare |
| 10 | 10 | * License: GPL-2.0+ |
| @@ -23,9 +23,9 @@ | ||
| 23 | 23 | * Plugin version. |
| 24 | 24 | * |
| 25 | 25 | * @var string |
| 26 | 26 | */ |
| 27 | - const VERSION = '1.1.2'; | |
| 27 | + const VERSION = '1.3.5'; | |
| 28 | 28 | |
| 29 | 29 | /** |
| 30 | 30 | * Instance of this class. |
| 31 | 31 | * |
| @@ -48,12 +48,18 @@ | ||
| 48 | 48 | defined('BLOCKSPARE_PLUGIN_URL') or define('BLOCKSPARE_PLUGIN_URL', plugin_dir_url(__FILE__)); |
| 49 | 49 | defined('BLOCKSPARE_PLUGIN_DIR') or define('BLOCKSPARE_PLUGIN_DIR', plugin_dir_path(__FILE__)); |
| 50 | 50 | |
| 51 | 51 | defined( 'BLOCKSPARE_SHOW_PRO_NOTICES' ) || define( 'BLOCKSPARE_SHOW_PRO_NOTICES', true ); |
| 52 | - defined( 'BLOCKSPARE_VERSION' ) || define( 'BLOCKSPARE_VERSION', '1.0.4' ); | |
| 52 | + defined( 'BLOCKSPARE_VERSION' ) || define( 'BLOCKSPARE_VERSION', '1.2.5' ); | |
| 53 | 53 | |
| 54 | - | |
| 55 | - | |
| 54 | + /** | |
| 55 | + * Freemius. | |
| 56 | + */ | |
| 57 | + require_once(BLOCKSPARE_PLUGIN_DIR.'/freemius.php'); | |
| 58 | + | |
| 59 | + /** | |
| 60 | + * Plugin init and welcome. | |
| 61 | + */ | |
| 56 | 62 | include_once 'src/init.php'; |
| 57 | 63 | include_once 'src/welcome.php'; |
| 58 | 64 | include_once 'src/fonts.php'; |
| 59 | 65 | |