diff --git a/UPGRADE.md b/UPGRADE.md deleted file mode 100644 index f6afa77..0000000 --- a/UPGRADE.md +++ /dev/null @@ -1,32 +0,0 @@ -# Upgrade from 1.1.* to 1.2.0 - -## lucent.php config file - -There is now an array of commands, accepting more than one. - -from -```php -"generateCommand" => env("LUCENT_GENERATE_COMMAND", "generate:static"), -``` - -to -```php -"commands" => [ - "generate:static" => "Build Website", -], -``` -## config/filesystems.php - -Lucent has its own filesystem. - -You should now add: - -``` -'lucent' => [ - 'driver' => 'local', - 'root' => storage_path('app/public'), - 'url' => env('APP_URL').'/storage', - 'visibility' => 'public', - 'throw' => false, -], -``` \ No newline at end of file diff --git a/config/lucent.php b/config/lucent.php index 83af640..41e2f13 100644 --- a/config/lucent.php +++ b/config/lucent.php @@ -4,7 +4,7 @@ return [ "env" => env("LUCENT_ENV", "production"), "schemas_path" => env("LUCENT_SCHEMAS_PATH", "resources/lucent/schemas"), "database" => env('LUCENT_DB_CONNECTION', env('DB_CONNECTION', "sqlite")), - "name" => env("LUCENT_NAME", "Lucent"), + "name" => env("LUCENT_NAME", "Stoic"), "url" => env("LUCENT_URL", env('APP_URL')), "previewTarget" => env("LUCENT_PREVIEW_TARGET", "previewTarget"), /* diff --git a/front/js/svelte/libs/TipTap.svelte b/front/js/svelte/libs/TipTap.svelte deleted file mode 100644 index 2d5a3dc..0000000 --- a/front/js/svelte/libs/TipTap.svelte +++ /dev/null @@ -1,174 +0,0 @@ - - -{#if editor} -
- - - - - - - - - - - - - -
-{/if} - -
\ No newline at end of file diff --git a/front/views/auth/login.blade.php b/front/views/auth/login.blade.php index 5bcb84d..91ae806 100644 --- a/front/views/auth/login.blade.php +++ b/front/views/auth/login.blade.php @@ -1,5 +1,8 @@ @extends("lucent::layouts.account") +@section("title") + Log in +@endsection @section("content")
diff --git a/front/views/auth/verify.blade.php b/front/views/auth/verify.blade.php index 2702bda..f18bef0 100644 --- a/front/views/auth/verify.blade.php +++ b/front/views/auth/verify.blade.php @@ -1,5 +1,7 @@ @extends("lucent::layouts.account") - +@section("title") + Enter +@endsection @section("content")