chore: Update app label and branding to "Vaani"

This commit is contained in:
Dr-Blank 2024-08-23 04:23:42 -04:00
parent d0f1f01dde
commit a56581c25e
No known key found for this signature in database
GPG key ID: 7452CC63F210A266
10 changed files with 51 additions and 52 deletions

7
.vscode/launch.json vendored
View file

@ -4,20 +4,19 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "whispering_pages",
"name": "vaani",
"request": "launch",
"type": "dart"
},
{
"name": "whispering_pages (profile mode)",
"name": "vaani (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "whispering_pages (release mode)",
"name": "vaani (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release"

View file

@ -23,7 +23,7 @@ if (flutterVersionName == null) {
}
android {
namespace "com.example.whispering_pages"
namespace "dr.blank.vaani"
compileSdk flutter.compileSdkVersion
ndkVersion flutter.ndkVersion

View file

@ -1,4 +1,4 @@
package com.example.whispering_pages
package dr.blank.vaani
import io.flutter.embedding.android.FlutterActivity

View file

@ -4,10 +4,10 @@ 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 "whispering_pages")
set(BINARY_NAME "vaani")
# The unique GTK application identifier for this application. See:
# https://wiki.gnome.org/HowDoI/ChooseApplicationID
set(APPLICATION_ID "com.example.whispering_pages")
set(APPLICATION_ID "dr.blank.vaani")
# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
# versions of CMake.

View file

@ -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, "whispering_pages");
gtk_header_bar_set_title(header_bar, "vaani");
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, "whispering_pages");
gtk_window_set_title(window, "vaani");
}
gtk_window_set_default_size(window, 1280, 720);

View file

@ -23,13 +23,13 @@
<!-- iOS meta tags & icons -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="whispering_pages">
<meta name="apple-mobile-web-app-title" content="vaani">
<link rel="apple-touch-icon" href="icons/Icon-192.png">
<!-- Favicon -->
<link rel="icon" type="image/png" href="favicon.png"/>
<title>whispering_pages</title>
<title>vaani</title>
<link rel="manifest" href="manifest.json">
<script>

View file

@ -1,6 +1,6 @@
{
"name": "whispering_pages",
"short_name": "whispering_pages",
"name": "vaani",
"short_name": "vaani",
"start_url": ".",
"display": "standalone",
"background_color": "#0175C2",

View file

@ -1,10 +1,10 @@
# Project-level configuration.
cmake_minimum_required(VERSION 3.14)
project(whispering_pages LANGUAGES CXX)
project(vaani 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 "whispering_pages")
set(BINARY_NAME "vaani")
# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
# versions of CMake.

View file

@ -90,12 +90,12 @@ BEGIN
BLOCK "040904e4"
BEGIN
VALUE "CompanyName", "com.example" "\0"
VALUE "FileDescription", "whispering_pages" "\0"
VALUE "FileDescription", "vaani" "\0"
VALUE "FileVersion", VERSION_AS_STRING "\0"
VALUE "InternalName", "whispering_pages" "\0"
VALUE "InternalName", "vaani" "\0"
VALUE "LegalCopyright", "Copyright (C) 2024 com.example. All rights reserved." "\0"
VALUE "OriginalFilename", "whispering_pages.exe" "\0"
VALUE "ProductName", "whispering_pages" "\0"
VALUE "OriginalFilename", "vaani.exe" "\0"
VALUE "ProductName", "vaani" "\0"
VALUE "ProductVersion", VERSION_AS_STRING "\0"
END
END

View file

@ -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"whispering_pages", origin, size)) {
if (!window.Create(L"vaani", origin, size)) {
return EXIT_FAILURE;
}
window.SetQuitOnClose(true);