diff --git a/backend/app/Config.php b/backend/app/Config.php index 205f444..11ef1de 100644 --- a/backend/app/Config.php +++ b/backend/app/Config.php @@ -21,7 +21,7 @@ class Config public const VAR_PREFIX = 'bit_smtp_'; - public const VERSION = '1.1.4'; + public const VERSION = '1.1.5'; public const DB_VERSION = '1.0'; diff --git a/backend/app/Providers/InstallerProvider.php b/backend/app/Providers/InstallerProvider.php index 33c767d..42b76a8 100644 --- a/backend/app/Providers/InstallerProvider.php +++ b/backend/app/Providers/InstallerProvider.php @@ -75,16 +75,16 @@ public static function registerUninstaller($networkWide) public static function migration() { $migrations = [ - 'BSPluginOptions', + 'BitSmtpPluginOptions', ]; return [ 'path' => Config::get('BASEDIR') - . DIRECTORY_SEPARATOR - . 'db' - . DIRECTORY_SEPARATOR - . 'Migrations' - . DIRECTORY_SEPARATOR, + . DIRECTORY_SEPARATOR + . 'db' + . DIRECTORY_SEPARATOR + . 'Migrations' + . DIRECTORY_SEPARATOR, 'migrations' => $migrations, ]; } @@ -92,16 +92,16 @@ public static function migration() public static function drop() { $migrations = [ - 'BSPluginOptions', + 'BitSmtpPluginOptions', ]; return [ 'path' => Config::get('BASEDIR') - . DIRECTORY_SEPARATOR - . 'db' - . DIRECTORY_SEPARATOR - . 'Migrations' - . DIRECTORY_SEPARATOR, + . DIRECTORY_SEPARATOR + . 'db' + . DIRECTORY_SEPARATOR + . 'Migrations' + . DIRECTORY_SEPARATOR, 'migrations' => $migrations, ]; } diff --git a/backend/db/Migrations/BSPluginOptions.php b/backend/db/Migrations/BitSmtpPluginOptions.php similarity index 70% rename from backend/db/Migrations/BSPluginOptions.php rename to backend/db/Migrations/BitSmtpPluginOptions.php index 9d67e9e..d7728bc 100644 --- a/backend/db/Migrations/BSPluginOptions.php +++ b/backend/db/Migrations/BitSmtpPluginOptions.php @@ -1,14 +1,14 @@