Passt Anzeigenamen an

This commit is contained in:
2025-12-20 15:58:06 +01:00
parent 9632cebf96
commit 0b33b83a9c
6 changed files with 7 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> <manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application <application
android:label="dragon_ledger" android:label="DragonLedger"
android:name="${applicationName}" android:name="${applicationName}"
android:icon="@mipmap/ic_launcher"> android:icon="@mipmap/ic_launcher">
<activity <activity

View File

@@ -46,11 +46,11 @@ static void my_application_activate(GApplication* application) {
if (use_header_bar) { if (use_header_bar) {
GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new()); GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new());
gtk_widget_show(GTK_WIDGET(header_bar)); gtk_widget_show(GTK_WIDGET(header_bar));
gtk_header_bar_set_title(header_bar, "dragon_ledger"); gtk_header_bar_set_title(header_bar, "DragonLedger");
gtk_header_bar_set_show_close_button(header_bar, TRUE); gtk_header_bar_set_show_close_button(header_bar, TRUE);
gtk_window_set_titlebar(window, GTK_WIDGET(header_bar)); gtk_window_set_titlebar(window, GTK_WIDGET(header_bar));
} else { } else {
gtk_window_set_title(window, "dragon_ledger"); gtk_window_set_title(window, "DragonLedger");
} }
gtk_window_set_default_size(window, 1280, 720); gtk_window_set_default_size(window, 1280, 720);

View File

@@ -23,7 +23,7 @@
<!-- iOS meta tags & icons --> <!-- iOS meta tags & icons -->
<meta name="mobile-web-app-capable" content="yes"> <meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black"> <meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="dragon_ledger"> <meta content="DragonLedger 🐉📒" name="apple-mobile-web-app-title">
<link rel="apple-touch-icon" href="icons/Icon-192.png"> <link rel="apple-touch-icon" href="icons/Icon-192.png">
<!-- Favicon --> <!-- Favicon -->

View File

@@ -1,5 +1,5 @@
{ {
"name": "dragon_ledger", "name": "DragonLedger",
"short_name": "dragon_ledger", "short_name": "dragon_ledger",
"start_url": ".", "start_url": ".",
"display": "standalone", "display": "standalone",

View File

@@ -95,7 +95,7 @@ BEGIN
VALUE "InternalName", "dragon_ledger" "\0" VALUE "InternalName", "dragon_ledger" "\0"
VALUE "LegalCopyright", "Copyright (C) 2025 de.creativedragonslayer. All rights reserved." "\0" VALUE "LegalCopyright", "Copyright (C) 2025 de.creativedragonslayer. All rights reserved." "\0"
VALUE "OriginalFilename", "dragon_ledger.exe" "\0" VALUE "OriginalFilename", "dragon_ledger.exe" "\0"
VALUE "ProductName", "dragon_ledger" "\0" VALUE "ProductName", "DragonLedger" "\0"
VALUE "ProductVersion", VERSION_AS_STRING "\0" VALUE "ProductVersion", VERSION_AS_STRING "\0"
END END
END END

View File

@@ -27,7 +27,7 @@ int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
FlutterWindow window(project); FlutterWindow window(project);
Win32Window::Point origin(10, 10); Win32Window::Point origin(10, 10);
Win32Window::Size size(1280, 720); Win32Window::Size size(1280, 720);
if (!window.Create(L"dragon_ledger", origin, size)) { if (!window.Create(L"DragonLedger", origin, size)) {
return EXIT_FAILURE; return EXIT_FAILURE;
} }
window.SetQuitOnClose(true); window.SetQuitOnClose(true);