From a56581c25ed11a93cfc23a4afdc3a95229140ab7 Mon Sep 17 00:00:00 2001 From: Dr-Blank <64108942+Dr-Blank@users.noreply.github.com> Date: Fri, 23 Aug 2024 04:23:42 -0400 Subject: [PATCH] chore: Update app label and branding to "Vaani" --- .vscode/launch.json | 7 +- android/app/build.gradle | 2 +- .../example/whispering_pages/MainActivity.kt | 2 +- linux/CMakeLists.txt | 4 +- linux/my_application.cc | 4 +- web/index.html | 4 +- web/manifest.json | 66 +++++++++---------- windows/CMakeLists.txt | 4 +- windows/runner/Runner.rc | 8 +-- windows/runner/main.cpp | 2 +- 10 files changed, 51 insertions(+), 52 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index cc37f37..2745f3e 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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" diff --git a/android/app/build.gradle b/android/app/build.gradle index cc436b5..0759e63 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -23,7 +23,7 @@ if (flutterVersionName == null) { } android { - namespace "com.example.whispering_pages" + namespace "dr.blank.vaani" compileSdk flutter.compileSdkVersion ndkVersion flutter.ndkVersion diff --git a/android/app/src/main/kotlin/com/example/whispering_pages/MainActivity.kt b/android/app/src/main/kotlin/com/example/whispering_pages/MainActivity.kt index f8b7422..9182821 100644 --- a/android/app/src/main/kotlin/com/example/whispering_pages/MainActivity.kt +++ b/android/app/src/main/kotlin/com/example/whispering_pages/MainActivity.kt @@ -1,4 +1,4 @@ -package com.example.whispering_pages +package dr.blank.vaani import io.flutter.embedding.android.FlutterActivity diff --git a/linux/CMakeLists.txt b/linux/CMakeLists.txt index ff22425..5fc9873 100644 --- a/linux/CMakeLists.txt +++ b/linux/CMakeLists.txt @@ -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. diff --git a/linux/my_application.cc b/linux/my_application.cc index 0d202a2..8a52c8b 100644 --- a/linux/my_application.cc +++ b/linux/my_application.cc @@ -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); diff --git a/web/index.html b/web/index.html index 911d70e..c5cbb61 100644 --- a/web/index.html +++ b/web/index.html @@ -23,13 +23,13 @@ - + - whispering_pages + vaani