Skip to content

Commit

Permalink
Merge pull request #26 from arceusVen1/naming_update
Browse files Browse the repository at this point in the history
naming_update
  • Loading branch information
arceusVen1 authored May 9, 2024
2 parents 5b07b6c + 82afdba commit 2824e24
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:label="paraworld_gsf_viewer"
android:label="ParaWorld GSF Viewer"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity
Expand Down
2 changes: 1 addition & 1 deletion ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>Paraworld Gsf Viewer</string>
<string>ParaWorld GSF Viewer</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
Expand Down
4 changes: 2 additions & 2 deletions linux/my_application.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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, "paraworld_gsf_viewer");
gtk_header_bar_set_title(header_bar, "ParaWorld GSF Viewer");
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, "paraworld_gsf_viewer");
gtk_window_set_title(window, "ParaWorld GSF Viewer");
}

gtk_window_set_default_size(window, 1280, 720);
Expand Down
12 changes: 6 additions & 6 deletions windows/runner/Runner.rc
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,13 @@ BEGIN
BEGIN
BLOCK "040904e4"
BEGIN
VALUE "CompanyName", "com.example" "\0"
VALUE "FileDescription", "paraworld_gsf_viewer" "\0"
VALUE "CompanyName", "ParaWelt" "\0"
VALUE "FileDescription", "ParaWorld GSF Viewer" "\0"
VALUE "FileVersion", VERSION_AS_STRING "\0"
VALUE "InternalName", "paraworld_gsf_viewer" "\0"
VALUE "LegalCopyright", "Copyright (C) 2024 com.example. All rights reserved." "\0"
VALUE "OriginalFilename", "paraworld_gsf_viewer.exe" "\0"
VALUE "ProductName", "paraworld_gsf_viewer" "\0"
VALUE "InternalName", "ParaWorld GSF Viewer" "\0"
VALUE "LegalCopyright", "Copyright (C) 2024 ParaWelt. All rights reserved." "\0"
VALUE "OriginalFilename", "GSF Viewer.exe" "\0"
VALUE "ProductName", "ParaWorld GSF Viewer" "\0"
VALUE "ProductVersion", VERSION_AS_STRING "\0"
END
END
Expand Down
2 changes: 1 addition & 1 deletion windows/runner/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"paraworld_gsf_viewer", origin, size)) {
if (!window.Create(L"ParaWorld GSF Viewer", origin, size)) {
return EXIT_FAILURE;
}
window.SetQuitOnClose(true);
Expand Down

0 comments on commit 2824e24

Please sign in to comment.