diff --git a/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme index a25f670..98eb9be 100644 --- a/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +++ b/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -15,7 +15,7 @@ @@ -31,7 +31,7 @@ @@ -66,7 +66,7 @@ @@ -83,7 +83,7 @@ diff --git a/web/manifest.json b/web/manifest.json index 51ec133..d284b92 100644 --- a/web/manifest.json +++ b/web/manifest.json @@ -1,6 +1,6 @@ { - "name": "island", - "short_name": "island", + "name": "Solian", + "short_name": "Solian", "start_url": ".", "display": "standalone", "background_color": "#ffffff", diff --git a/windows/CMakeLists.txt b/windows/CMakeLists.txt index 2dbc4f2..a0b4a87 100644 --- a/windows/CMakeLists.txt +++ b/windows/CMakeLists.txt @@ -4,7 +4,7 @@ project(island LANGUAGES CXX) # The name of the executable created for the application. Change this to change # the on-disk name of your application. -set(BINARY_NAME "island") +set(BINARY_NAME "Solian") # Explicitly opt in to modern CMake behaviors to avoid warnings with recent # versions of CMake. diff --git a/windows/runner/Runner.rc b/windows/runner/Runner.rc index 3626782..74dbec4 100644 --- a/windows/runner/Runner.rc +++ b/windows/runner/Runner.rc @@ -90,12 +90,12 @@ BEGIN BLOCK "040904e4" BEGIN VALUE "CompanyName", "com.example" "\0" - VALUE "FileDescription", "island" "\0" + VALUE "FileDescription", "Solian" "\0" VALUE "FileVersion", VERSION_AS_STRING "\0" - VALUE "InternalName", "island" "\0" + VALUE "InternalName", "Solian" "\0" VALUE "LegalCopyright", "Copyright (C) 2025 com.example. All rights reserved." "\0" - VALUE "OriginalFilename", "island.exe" "\0" - VALUE "ProductName", "island" "\0" + VALUE "OriginalFilename", "Solian.exe" "\0" + VALUE "ProductName", "Solian" "\0" VALUE "ProductVersion", VERSION_AS_STRING "\0" END END diff --git a/windows/runner/main.cpp b/windows/runner/main.cpp index c527e95..f2872cd 100644 --- a/windows/runner/main.cpp +++ b/windows/runner/main.cpp @@ -30,7 +30,7 @@ int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev, FlutterWindow window(project); Win32Window::Point origin(10, 10); Win32Window::Size size(1280, 720); - if (!window.Create(L"island", origin, size)) { + if (!window.Create(L"Solian", origin, size)) { return EXIT_FAILURE; } window.SetQuitOnClose(true);