diff --git a/linux/CMakeLists.txt b/linux/CMakeLists.txt index d199e8b..9a7e1a2 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 "recon") +set(BINARY_NAME "OpenContacts") # The unique GTK application identifier for this application. See: # https://wiki.gnome.org/HowDoI/ChooseApplicationID set(APPLICATION_ID "de.tojcklguy.opencontacts") diff --git a/linux/my_application.cc b/linux/my_application.cc index dbd4e93..75d4da3 100644 --- a/linux/my_application.cc +++ b/linux/my_application.cc @@ -40,11 +40,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, "recon"); + gtk_header_bar_set_title(header_bar, "OpenContacts"); 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, "recon"); + gtk_window_set_title(window, "OpenContacts"); } gtk_window_set_default_size(window, 480, 900); diff --git a/web/manifest.json b/web/manifest.json index b2d225b..2a7081d 100644 --- a/web/manifest.json +++ b/web/manifest.json @@ -1,6 +1,6 @@ { - "name": "recon", - "short_name": "recon", + "name": "OpenContacts", + "short_name": "opc", "start_url": ".", "display": "standalone", "background_color": "#0175C2", diff --git a/windows/runner/main.cpp b/windows/runner/main.cpp index d97c34f..75a7078 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"recon", origin, size)) { + if (!window.Create(L"OpenContacts", origin, size)) { return EXIT_FAILURE; } window.SetQuitOnClose(true);