From 757e649f94b9a202efc1d3c4a9d8cc65f7929f14 Mon Sep 17 00:00:00 2001 From: klockky Date: Wed, 27 May 2026 17:22:59 +0000 Subject: [PATCH] =?UTF-8?q?feat:=20=D0=BE=D1=82=D0=BE=D0=B1=D1=80=D0=B0?= =?UTF-8?q?=D0=B6=D0=B0=D0=B5=D0=BC=D0=BE=D0=B5=20=D0=B8=D0=BC=D1=8F=20?= =?UTF-8?q?=D0=BF=D1=80=D0=B8=D0=BB=D0=BE=D0=B6=D0=B5=D0=BD=D0=B8=D1=8F=20?= =?UTF-8?q?=D1=81=20=D0=B1=D0=BE=D0=BB=D1=8C=D1=88=D0=BE=D0=B9=20=D0=B1?= =?UTF-8?q?=D1=83=D0=BA=D0=B2=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release-main.yml | 2 +- android/app/src/main/AndroidManifest.xml | 2 +- ios/Runner/Info.plist | 2 +- linux/CMakeLists.txt | 2 +- linux/runner/my_application.cc | 4 ++-- macos/Runner/Configs/AppInfo.xcconfig | 2 +- windows/CMakeLists.txt | 2 +- windows/runner/Runner.rc | 8 ++++---- windows/runner/main.cpp | 2 +- 9 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/release-main.yml b/.github/workflows/release-main.yml index c1d8c51..adc94f8 100644 --- a/.github/workflows/release-main.yml +++ b/.github/workflows/release-main.yml @@ -276,7 +276,7 @@ jobs: - `Komet-android-oneme.aab` — App Bundle для Google Play. ### Windows - - **`Komet-windows-x64.zip`** — портативная сборка для Windows 10/11 (x64). Распаковать и запустить `komet.exe`. + - **`Komet-windows-x64.zip`** — портативная сборка для Windows 10/11 (x64). Распаковать и запустить `Komet.exe`. ### Linux - **`Komet-linux-x64.tar.gz`** — сборка для 64-битного Linux. Требуются `libgtk-3`, `libsecret-1`, `libjsoncpp`. Распаковать и запустить бинарник. diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index a3b1ba5..06e92c7 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -6,7 +6,7 @@ CFBundleInfoDictionaryVersion 6.0 CFBundleName - komet + Komet CFBundlePackageType APPL CFBundleShortVersionString diff --git a/linux/CMakeLists.txt b/linux/CMakeLists.txt index ed7975d..106dcd4 100644 --- a/linux/CMakeLists.txt +++ b/linux/CMakeLists.txt @@ -4,7 +4,7 @@ project(runner 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 "komet") +set(BINARY_NAME "Komet") # The unique GTK application identifier for this application. See: # https://wiki.gnome.org/HowDoI/ChooseApplicationID set(APPLICATION_ID "ru.komet.app") diff --git a/linux/runner/my_application.cc b/linux/runner/my_application.cc index 380209e..832e416 100644 --- a/linux/runner/my_application.cc +++ b/linux/runner/my_application.cc @@ -45,11 +45,11 @@ static void my_application_activate(GApplication* application) { if (use_header_bar) { GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new()); gtk_widget_show(GTK_WIDGET(header_bar)); - gtk_header_bar_set_title(header_bar, "komet"); + gtk_header_bar_set_title(header_bar, "Komet"); gtk_header_bar_set_show_close_button(header_bar, TRUE); gtk_window_set_titlebar(window, GTK_WIDGET(header_bar)); } else { - gtk_window_set_title(window, "komet"); + gtk_window_set_title(window, "Komet"); } gtk_window_set_default_size(window, 1280, 720); diff --git a/macos/Runner/Configs/AppInfo.xcconfig b/macos/Runner/Configs/AppInfo.xcconfig index e8f873a..000aa53 100644 --- a/macos/Runner/Configs/AppInfo.xcconfig +++ b/macos/Runner/Configs/AppInfo.xcconfig @@ -5,7 +5,7 @@ // 'flutter create' template. // The application's name. By default this is also the title of the Flutter window. -PRODUCT_NAME = komet +PRODUCT_NAME = Komet // The application's bundle identifier PRODUCT_BUNDLE_IDENTIFIER = ru.komet.app diff --git a/windows/CMakeLists.txt b/windows/CMakeLists.txt index 7b65d96..2667668 100644 --- a/windows/CMakeLists.txt +++ b/windows/CMakeLists.txt @@ -4,7 +4,7 @@ project(komet 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 "komet") +set(BINARY_NAME "Komet") # 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 9427177..223e5d4 100644 --- a/windows/runner/Runner.rc +++ b/windows/runner/Runner.rc @@ -90,12 +90,12 @@ BEGIN BLOCK "040904e4" BEGIN VALUE "CompanyName", "ru.komet" "\0" - VALUE "FileDescription", "komet" "\0" + VALUE "FileDescription", "Komet" "\0" VALUE "FileVersion", VERSION_AS_STRING "\0" - VALUE "InternalName", "komet" "\0" + VALUE "InternalName", "Komet" "\0" VALUE "LegalCopyright", "Copyright (C) 2026 ru.komet. All rights reserved." "\0" - VALUE "OriginalFilename", "komet.exe" "\0" - VALUE "ProductName", "komet" "\0" + VALUE "OriginalFilename", "Komet.exe" "\0" + VALUE "ProductName", "Komet" "\0" VALUE "ProductVersion", VERSION_AS_STRING "\0" END END diff --git a/windows/runner/main.cpp b/windows/runner/main.cpp index e9e529a..3761490 100644 --- a/windows/runner/main.cpp +++ b/windows/runner/main.cpp @@ -27,7 +27,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"komet", origin, size)) { + if (!window.Create(L"Komet", origin, size)) { return EXIT_FAILURE; } window.SetQuitOnClose(true);