- Normalizes naming.

- Updates `readme.md`
This commit is contained in:
2026-04-30 02:41:45 +00:00
parent f907a4f3b6
commit 832437f9ea
11 changed files with 35 additions and 13 deletions
+22 -1
View File
@@ -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 <platform>`
Will build a release build for `<platform>`.
## Running in Debug mode
With a device or devices connected:
`flutter run <platform>`
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 <platform> && flutter install`
+1 -1
View File
@@ -7,7 +7,7 @@
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
<application
android:label="kryz_go_flutter"
android:label="KRYZ Go!"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity
+2 -2
View File
@@ -7,7 +7,7 @@
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>Kryz Go Flutter</string>
<string>KRYZ Go!</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
@@ -15,7 +15,7 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>kryz_go_flutter</string>
<string>KRYZ Go!</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
+1 -1
View File
@@ -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.
+1 -1
View File
@@ -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);
+1 -1
View File
@@ -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
+1 -1
View File
@@ -13,7 +13,7 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<string>KRYZ Go!</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
+1
View File
@@ -40,6 +40,7 @@ dependencies:
webview_flutter: ^4.13.0
dev_dependencies:
flutter_name_manager: ^1.0.0
flutter_test:
sdk: flutter
+1 -1
View File
@@ -29,7 +29,7 @@
<!-- Favicon -->
<link rel="icon" type="image/png" href="favicon.png"/>
<title>kryz_go_flutter</title>
<title>KRYZ Go!</title>
<link rel="manifest" href="manifest.json">
</head>
<body>
+3 -3
View File
@@ -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"
}
]
}
}
+1 -1
View File
@@ -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.