From 832437f9eae48888a253909f28aa2200d1dce546 Mon Sep 17 00:00:00 2001 From: kfj001 Date: Thu, 30 Apr 2026 02:41:45 +0000 Subject: [PATCH] - Normalizes naming. - Updates `readme.md` --- README.md | 23 ++++++++++++++++++++++- android/app/src/main/AndroidManifest.xml | 2 +- ios/Runner/Info.plist | 4 ++-- linux/CMakeLists.txt | 2 +- linux/runner/my_application.cc | 2 +- macos/Runner/Configs/AppInfo.xcconfig | 2 +- macos/Runner/Info.plist | 2 +- pubspec.yaml | 1 + web/index.html | 2 +- web/manifest.json | 6 +++--- windows/CMakeLists.txt | 2 +- 11 files changed, 35 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 07908fd..47ffb3b 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,23 @@ -# kryz-go-flutter +# KRYZ Go! + +## About +A Flutter application for KRYZ LP-FM 98.5 Mariposa. This is our Mobile application that ties our listiners into our radio station while on the Go! + +## Operations + +## Build + +`flutter build ` + +Will build a release build for ``. +## Running in Debug mode +With a device or devices connected: + +`flutter run ` + +Will execute the application in the debugging sandbox. + +## Building and deploying in release mode (required for iOS launcher.) +Assumes the device is connected meaningfully to the session: +`flutter build && flutter install` diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 850104e..4d589ee 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -7,7 +7,7 @@ CFBundleDevelopmentRegion $(DEVELOPMENT_LANGUAGE) CFBundleDisplayName - Kryz Go Flutter + KRYZ Go! CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier @@ -15,7 +15,7 @@ CFBundleInfoDictionaryVersion 6.0 CFBundleName - kryz_go_flutter + KRYZ Go! CFBundlePackageType APPL CFBundleShortVersionString diff --git a/linux/CMakeLists.txt b/linux/CMakeLists.txt index 4ae71e4..99f69f2 100644 --- a/linux/CMakeLists.txt +++ b/linux/CMakeLists.txt @@ -1,6 +1,6 @@ # Project-level configuration. cmake_minimum_required(VERSION 3.13) -project(runner LANGUAGES CXX) +project(KRYZ Go! LANGUAGES CXX) # The name of the executable created for the application. Change this to change # the on-disk name of your application. diff --git a/linux/runner/my_application.cc b/linux/runner/my_application.cc index d5869ed..e8bf3d0 100644 --- a/linux/runner/my_application.cc +++ b/linux/runner/my_application.cc @@ -49,7 +49,7 @@ static void my_application_activate(GApplication* application) { 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, "kryz_go_flutter"); + gtk_window_set_title(window, "KRYZ Go!"); } gtk_window_set_default_size(window, 1280, 720); diff --git a/macos/Runner/Configs/AppInfo.xcconfig b/macos/Runner/Configs/AppInfo.xcconfig index e260b12..71bcdad 100644 --- a/macos/Runner/Configs/AppInfo.xcconfig +++ b/macos/Runner/Configs/AppInfo.xcconfig @@ -5,7 +5,7 @@ // 'flutter create' template. // The application's name. By default this is also the title of the Flutter window. -PRODUCT_NAME = kryz_go_flutter +PRODUCT_NAME = KRYZ Go! // The application's bundle identifier PRODUCT_BUNDLE_IDENTIFIER = com.example.kryzGoFlutter diff --git a/macos/Runner/Info.plist b/macos/Runner/Info.plist index 4789daa..bcfe6d7 100644 --- a/macos/Runner/Info.plist +++ b/macos/Runner/Info.plist @@ -13,7 +13,7 @@ CFBundleInfoDictionaryVersion 6.0 CFBundleName - $(PRODUCT_NAME) + KRYZ Go! CFBundlePackageType APPL CFBundleShortVersionString diff --git a/pubspec.yaml b/pubspec.yaml index 5375986..87fbd37 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -40,6 +40,7 @@ dependencies: webview_flutter: ^4.13.0 dev_dependencies: + flutter_name_manager: ^1.0.0 flutter_test: sdk: flutter diff --git a/web/index.html b/web/index.html index 179de21..f214d02 100644 --- a/web/index.html +++ b/web/index.html @@ -29,7 +29,7 @@ - kryz_go_flutter + KRYZ Go! diff --git a/web/manifest.json b/web/manifest.json index 553e7f8..abeb9dc 100644 --- a/web/manifest.json +++ b/web/manifest.json @@ -1,6 +1,6 @@ { - "name": "kryz_go_flutter", - "short_name": "kryz_go_flutter", + "name": "KRYZ Go!", + "short_name": "KRYZ Go!", "start_url": ".", "display": "standalone", "background_color": "#0175C2", @@ -32,4 +32,4 @@ "purpose": "maskable" } ] -} +} \ No newline at end of file diff --git a/windows/CMakeLists.txt b/windows/CMakeLists.txt index b60debf..498ca4c 100644 --- a/windows/CMakeLists.txt +++ b/windows/CMakeLists.txt @@ -1,6 +1,6 @@ # Project-level configuration. cmake_minimum_required(VERSION 3.14) -project(kryz_go_flutter LANGUAGES CXX) +project(KRYZ Go! LANGUAGES CXX) # The name of the executable created for the application. Change this to change # the on-disk name of your application.