Skip to content

Commit 7649477

Browse files
gnpricechrisbobbe
authored andcommitted
Try to fix up display names for the app
This is a followup to 1c25b03, the second commit in this repo's history: in this round, we try to edit all the user-facing representations of the name of the app. Specifically it's "Zulip beta" for the two platforms where we currently plan to distribute to users in general (so that there's a risk of confusion if we just said "Zulip"), and just "Zulip" on the rest. We don't regularly test on all these platforms, so it's possible I broke something on, say, Windows. If so we'll presumably figure that out if and when we later try to run there.
1 parent 3c9c1b0 commit 7649477

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

android/app/src/main/AndroidManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
package="com.zulip.flutter">
33
<uses-permission android:name="android.permission.INTERNET"/>
44
<application
5-
android:label="zulip"
5+
android:label="Zulip beta"
66
android:name="${applicationName}"
77
android:icon="@mipmap/ic_launcher">
88
<activity

ios/Runner/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
<key>CFBundleDevelopmentRegion</key>
88
<string>$(DEVELOPMENT_LANGUAGE)</string>
99
<key>CFBundleDisplayName</key>
10-
<string>Zulip</string>
10+
<string>Zulip beta</string>
1111
<key>CFBundleExecutable</key>
1212
<string>$(EXECUTABLE_NAME)</string>
1313
<key>CFBundleIdentifier</key>
1414
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
1515
<key>CFBundleInfoDictionaryVersion</key>
1616
<string>6.0</string>
1717
<key>CFBundleName</key>
18-
<string>zulip</string>
18+
<string>Zulip beta</string>
1919
<key>CFBundlePackageType</key>
2020
<string>APPL</string>
2121
<key>CFBundleShortVersionString</key>

linux/my_application.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ static void my_application_activate(GApplication* application) {
4040
if (use_header_bar) {
4141
GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new());
4242
gtk_widget_show(GTK_WIDGET(header_bar));
43-
gtk_header_bar_set_title(header_bar, "zulip");
43+
gtk_header_bar_set_title(header_bar, "Zulip");
4444
gtk_header_bar_set_show_close_button(header_bar, TRUE);
4545
gtk_window_set_titlebar(window, GTK_WIDGET(header_bar));
4646
} else {
47-
gtk_window_set_title(window, "zulip");
47+
gtk_window_set_title(window, "Zulip");
4848
}
4949

5050
gtk_window_set_default_size(window, 1280, 720);

macos/Runner/Configs/AppInfo.xcconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// 'flutter create' template.
66

77
// The application's name. By default this is also the title of the Flutter window.
8-
PRODUCT_NAME = zulip
8+
PRODUCT_NAME = Zulip
99

1010
// The application's bundle identifier
1111
PRODUCT_BUNDLE_IDENTIFIER = com.zulip.flutter

web/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
<!-- iOS meta tags & icons -->
2424
<meta name="apple-mobile-web-app-capable" content="yes">
2525
<meta name="apple-mobile-web-app-status-bar-style" content="black">
26-
<meta name="apple-mobile-web-app-title" content="zulip">
26+
<meta name="apple-mobile-web-app-title" content="Zulip">
2727
<link rel="apple-touch-icon" href="icons/Icon-192.png">
2828

2929
<!-- Favicon -->
3030
<link rel="icon" type="image/png" href="favicon.png"/>
3131

32-
<title>zulip</title>
32+
<title>Zulip</title>
3333
<link rel="manifest" href="manifest.json">
3434

3535
<script>

web/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "zulip",
2+
"name": "Zulip",
33
"short_name": "zulip",
44
"start_url": ".",
55
"display": "standalone",

windows/runner/Runner.rc

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ BEGIN
9595
VALUE "InternalName", "zulip" "\0"
9696
VALUE "LegalCopyright", "Copyright © 2022 Kandra Labs, Inc., and contributors. Licensed under the Apache License, Version 2.0." "\0"
9797
VALUE "OriginalFilename", "zulip.exe" "\0"
98-
VALUE "ProductName", "zulip" "\0"
98+
VALUE "ProductName", "Zulip" "\0"
9999
VALUE "ProductVersion", VERSION_AS_STRING "\0"
100100
END
101101
END

windows/runner/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
2727
FlutterWindow window(project);
2828
Win32Window::Point origin(10, 10);
2929
Win32Window::Size size(1280, 720);
30-
if (!window.Create(L"zulip", origin, size)) {
30+
if (!window.Create(L"Zulip", origin, size)) {
3131
return EXIT_FAILURE;
3232
}
3333
window.SetQuitOnClose(true);

0 commit comments

Comments
 (0)