Browse Source

change display name to ESSE

pull/6/head
Sun 4 years ago
parent
commit
88d4728851
  1. 3
      android/app/src/main/AndroidManifest.xml
  2. 2
      ios/Runner/Info.plist
  3. 2
      lib/main.dart
  4. 4
      linux/my_application.cc
  5. 6
      macos/Runner.xcodeproj/project.pbxproj
  6. 4
      windows/runner/Runner.rc
  7. 2
      windows/runner/main.cpp

3
android/app/src/main/AndroidManifest.xml

@ -1,7 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.cympletech.esse"> package="com.cympletech.esse">
<application <application
android:label="Esse" android:label="ESSE"
android:requestLegacyExternalStorage="true" android:requestLegacyExternalStorage="true"
android:icon="@mipmap/ic_launcher"> android:icon="@mipmap/ic_launcher">
<activity <activity
@ -40,4 +40,5 @@
android:value="2" /> android:value="2" />
</application> </application>
<uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
</manifest> </manifest>

2
ios/Runner/Info.plist

@ -5,7 +5,7 @@
<key>CFBundleDevelopmentRegion</key> <key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string> <string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key> <key>CFBundleDisplayName</key>
<string>Esse</string> <string>ESSE</string>
<key>CFBundleExecutable</key> <key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string> <string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key> <key>CFBundleIdentifier</key>

2
lib/main.dart

@ -48,7 +48,7 @@ class MyApp extends StatelessWidget {
final options = context.watch<Options>(); final options = context.watch<Options>();
return MaterialApp( return MaterialApp(
title: 'Esse', title: 'ESSE',
debugShowCheckedModeBanner: false, debugShowCheckedModeBanner: false,
themeMode: options.themeMode, themeMode: options.themeMode,
theme: AppTheme.lightThemeData, theme: AppTheme.lightThemeData,

4
linux/my_application.cc

@ -40,12 +40,12 @@ 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, "Esse"); gtk_header_bar_set_title(header_bar, "ESSE");
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, "Esse"); gtk_window_set_title(window, "ESSE");
} }
gtk_window_set_default_size(window, 1280, 720); gtk_window_set_default_size(window, 1280, 720);

6
macos/Runner.xcodeproj/project.pbxproj

@ -427,7 +427,7 @@
"@executable_path/../Frameworks", "@executable_path/../Frameworks",
); );
PRODUCT_BUNDLE_IDENTIFIER = com.cympletech.esse; PRODUCT_BUNDLE_IDENTIFIER = com.cympletech.esse;
PRODUCT_NAME = Esse; PRODUCT_NAME = ESSE;
PROVISIONING_PROFILE_SPECIFIER = ""; PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_VERSION = 5.0; SWIFT_VERSION = 5.0;
}; };
@ -556,7 +556,7 @@
"@executable_path/../Frameworks", "@executable_path/../Frameworks",
); );
PRODUCT_BUNDLE_IDENTIFIER = com.cympletech.esse; PRODUCT_BUNDLE_IDENTIFIER = com.cympletech.esse;
PRODUCT_NAME = Esse; PRODUCT_NAME = ESSE;
PROVISIONING_PROFILE_SPECIFIER = ""; PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0; SWIFT_VERSION = 5.0;
@ -579,7 +579,7 @@
"@executable_path/../Frameworks", "@executable_path/../Frameworks",
); );
PRODUCT_BUNDLE_IDENTIFIER = com.cympletech.esse; PRODUCT_BUNDLE_IDENTIFIER = com.cympletech.esse;
PRODUCT_NAME = Esse; PRODUCT_NAME = ESSE;
PROVISIONING_PROFILE_SPECIFIER = ""; PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_VERSION = 5.0; SWIFT_VERSION = 5.0;
}; };

4
windows/runner/Runner.rc

@ -92,10 +92,10 @@ BEGIN
VALUE "CompanyName", "com.cympletech" "\0" VALUE "CompanyName", "com.cympletech" "\0"
VALUE "FileDescription", "Encrypted Secure Session Engine" "\0" VALUE "FileDescription", "Encrypted Secure Session Engine" "\0"
VALUE "FileVersion", VERSION_AS_STRING "\0" VALUE "FileVersion", VERSION_AS_STRING "\0"
VALUE "InternalName", "Esse" "\0" VALUE "InternalName", "ESSE" "\0"
VALUE "LegalCopyright", "Copyright (C) 2021 cympletech.com All rights reserved." "\0" VALUE "LegalCopyright", "Copyright (C) 2021 cympletech.com All rights reserved." "\0"
VALUE "OriginalFilename", "esse.exe" "\0" VALUE "OriginalFilename", "esse.exe" "\0"
VALUE "ProductName", "Esse" "\0" VALUE "ProductName", "ESSE" "\0"
VALUE "ProductVersion", VERSION_AS_STRING "\0" VALUE "ProductVersion", VERSION_AS_STRING "\0"
END END
END END

2
windows/runner/main.cpp

@ -30,7 +30,7 @@ int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
FlutterWindow window(&run_loop, project); FlutterWindow window(&run_loop, project);
Win32Window::Point origin(10, 10); Win32Window::Point origin(10, 10);
Win32Window::Size size(1280, 720); Win32Window::Size size(1280, 720);
if (!window.CreateAndShow(L"Esse", origin, size)) { if (!window.CreateAndShow(L"ESSE", origin, size)) {
return EXIT_FAILURE; return EXIT_FAILURE;
} }
window.SetQuitOnClose(true); window.SetQuitOnClose(true);

Loading…
Cancel
Save