Rename to BrandManager

This commit is contained in:
2026-01-25 16:04:12 +01:00
parent 99aebb2c5f
commit 4c78216c6f
8 changed files with 10 additions and 27 deletions

View File

@@ -1,4 +1,4 @@
# BM Manager
# BrandManager
A Flutter application for managing DMR devices and talkgroups through the BrandMeister network API, based on the PyroMeister Manager iOS app.

View File

@@ -1,7 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:label="bmmanager"
android:label="BrandManager"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity

View File

@@ -5,7 +5,7 @@
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>Bmmanager</string>
<string>BrandManager</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
@@ -13,7 +13,7 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>bmmanager</string>
<string>BrandManager</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>

View File

@@ -4,18 +4,18 @@ import 'services/authentication_manager.dart';
import 'views/content_view.dart';
void main() {
runApp(const BmManagerApp());
runApp(const BrandManagerApp());
}
class BmManagerApp extends StatelessWidget {
const BmManagerApp({super.key});
class BrandManagerApp extends StatelessWidget {
const BrandManagerApp({super.key});
@override
Widget build(BuildContext context) {
return ChangeNotifierProvider(
create: (_) => AuthenticationManager(),
child: MaterialApp(
title: 'BM Manager',
title: 'BrandManager',
debugShowCheckedModeBanner: false,
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(

View File

@@ -75,11 +75,6 @@ class InfoView extends StatelessWidget {
),
),
const SizedBox(height: 16),
const _InfoRow(
icon: Icons.info,
label: 'App Name',
value: 'BM Manager',
),
const _InfoRow(
icon: Icons.analytics,
label: 'Version',

View File

@@ -79,11 +79,6 @@ class MoreView extends StatelessWidget {
),
),
const SizedBox(height: 16),
const _InfoRow(
icon: Icons.info,
label: 'App Name',
value: 'BM Manager',
),
const _InfoRow(
icon: Icons.analytics,
label: 'Version',

View File

@@ -16,13 +16,6 @@ class WelcomeView extends StatelessWidget {
color: Theme.of(context).colorScheme.primary,
),
const SizedBox(height: 24),
Text(
'BM Manager',
style: Theme.of(context).textTheme.headlineLarge?.copyWith(
fontWeight: FontWeight.bold,
),
),
const SizedBox(height: 8),
Text(
'Manage your BrandMeister devices',
style: Theme.of(context).textTheme.bodyMedium?.copyWith(

View File

@@ -1,5 +1,5 @@
name: bmmanager
description: "A new Flutter project."
name: brandmanager
description: "Manage your Brandmeister network devices."
# The following line prevents the package from being accidentally published to
# pub.dev using `flutter pub publish`. This is preferred for private packages.
publish_to: 'none' # Remove this line if you wish to publish to pub.dev