From 8d2fc7e9e6ec24fd9db821a4a39626d10213f249 Mon Sep 17 00:00:00 2001 From: Manuel Cillero Date: Sat, 23 Mar 2024 12:42:05 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Config=20tweak?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/predefined-settings.toml | 2 +- src/config.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/predefined-settings.toml b/docs/predefined-settings.toml index e40e8af8..6ffa19cd 100644 --- a/docs/predefined-settings.toml +++ b/docs/predefined-settings.toml @@ -1,5 +1,5 @@ [app] -name = "PageTop Application" +name = "My App" description = "Developed with the amazing PageTop framework." # Default theme. theme = "Default" diff --git a/src/config.rs b/src/config.rs index e88a1669..0390f6f2 100644 --- a/src/config.rs +++ b/src/config.rs @@ -212,7 +212,7 @@ pub struct Settings { /// See [`Settings`]. pub struct App { /// El nombre de la aplicación. - /// Por defecto: *"PageTop App"*. + /// Por defecto: *"My App"*. pub name: String, /// Una descripción breve de la aplicación. /// Por defecto: *"Developed with the amazing PageTop framework."*. @@ -318,7 +318,7 @@ pub struct Server { default_settings!( // [app] - "app.name" => "PageTop App", + "app.name" => "My App", "app.description" => "Developed with the amazing PageTop framework.", "app.theme" => "Default", "app.language" => "en-US",