diff --git a/api/CONFIG.md b/api/CONFIG.md index f3b2a8bb0b..b957b1fc56 100644 --- a/api/CONFIG.md +++ b/api/CONFIG.md @@ -175,6 +175,7 @@ Key | Default Value | Description :--- | :--- | :--- cmd | | The command to execute to spawn the “back-end” process. icon | | The icon to use for identifying your app on Windows. +logo | | The icon to use for identifying your app on Windows. pfx | | A relative path to the pfx file used for signing. # `window` diff --git a/src/cli/cli.cc b/src/cli/cli.cc index 1402667e2d..f06465040a 100644 --- a/src/cli/cli.cc +++ b/src/cli/cli.cc @@ -2220,7 +2220,7 @@ int main (const int argc, const char* argv[]) { } // create .gitignore if (!fs::exists(targetPath / ".gitignore")) { - SSC::writeFile(targetPath / ".gitignore", gDefaultGitignore); + writeFile(targetPath / ".gitignore", gDefaultGitignore); log(".gitignore created in " + targetPath.string()); } else { log(".gitignore already exists in " + targetPath.string()); diff --git a/src/cli/templates.hh b/src/cli/templates.hh index 83a172007e..65b2769b10 100644 --- a/src/cli/templates.hh +++ b/src/cli/templates.hh @@ -519,7 +519,7 @@ constexpr auto gWindowsAppManifest = R"XML( {{meta_title}} {{meta_description}} - {{win_icon}} + {{win_logo}} {{meta_maintainer}} @@ -545,12 +545,12 @@ constexpr auto gWindowsAppManifest = R"XML( - +