| @@ -2,9 +2,9 @@ | ||
| 2 | 2 | /** |
| 3 | 3 | * Plugin Name: FlyWP |
| 4 | 4 | * Plugin URI: https://flywp.com |
| 5 | 5 | * Description: Helper plugin for FlyWP |
| 6 | - * Version: 1.2 | |
| 6 | + * Version: 1.0 | |
| 7 | 7 | * Author: FlyWP |
| 8 | 8 | * Author URI: https://flywp.com/?utm_source=wporg&utm_medium=banner&utm_campaign=author-uri |
| 9 | 9 | * License: GPL2 |
| 10 | 10 | */ |
| @@ -40,9 +40,9 @@ | ||
| 40 | 40 | * Plugin version. |
| 41 | 41 | * |
| 42 | 42 | * @var string |
| 43 | 43 | */ |
| 44 | - public $version = '1.2'; | |
| 44 | + public $version = '1.0'; | |
| 45 | 45 | |
| 46 | 46 | /** |
| 47 | 47 | * Plugin Constructor. |
| 48 | 48 | * |
| @@ -101,15 +101,14 @@ | ||
| 101 | 101 | } else { |
| 102 | 102 | $this->frontend = new FlyWP\Frontend(); |
| 103 | 103 | } |
| 104 | 104 | |
| 105 | - $this->router = new FlyWP\Router(); | |
| 106 | - $this->rest = new FlyWP\Api(); | |
| 107 | - $this->fastcgi = new FlyWP\Fastcgi_Cache(); | |
| 108 | - $this->opcache = new FlyWP\Opcache(); | |
| 109 | - $this->flyapi = new FlyWP\FlyApi(); | |
| 110 | - $this->email = new FlyWP\Email(); | |
| 111 | - $this->optimize = new FlyWP\Optimizations(); | |
| 105 | + $this->router = new FlyWP\Router(); | |
| 106 | + $this->rest = new FlyWP\Api(); | |
| 107 | + $this->fastcgi = new FlyWP\Fastcgi_Cache(); | |
| 108 | + $this->opcache = new FlyWP\Opcache(); | |
| 109 | + $this->flyapi = new FlyWP\FlyApi(); | |
| 110 | + $this->email = new FlyWP\Email(); | |
| 112 | 111 | } |
| 113 | 112 | |
| 114 | 113 | /** |
| 115 | 114 | * Show admin notice if API key is not set. |