From 4c78216c6f8d8996879eea14033cd770ba772909 Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Sun, 25 Jan 2026 16:04:12 +0100 Subject: [PATCH] Rename to BrandManager --- README_APP.md | 2 +- android/app/src/main/AndroidManifest.xml | 2 +- ios/Runner/Info.plist | 4 ++-- lib/main.dart | 8 ++++---- lib/views/info_view.dart | 5 ----- lib/views/more_view.dart | 5 ----- lib/views/welcome_view.dart | 7 ------- pubspec.yaml | 4 ++-- 8 files changed, 10 insertions(+), 27 deletions(-) diff --git a/README_APP.md b/README_APP.md index e8f57e5..209b79f 100644 --- a/README_APP.md +++ b/README_APP.md @@ -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. diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 117ee5d..841c556 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,7 +1,7 @@ CFBundleDevelopmentRegion $(DEVELOPMENT_LANGUAGE) CFBundleDisplayName - Bmmanager + BrandManager CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier @@ -13,7 +13,7 @@ CFBundleInfoDictionaryVersion 6.0 CFBundleName - bmmanager + BrandManager CFBundlePackageType APPL CFBundleShortVersionString diff --git a/lib/main.dart b/lib/main.dart index 0c815b0..c478212 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -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( diff --git a/lib/views/info_view.dart b/lib/views/info_view.dart index b19e097..10e7b5e 100644 --- a/lib/views/info_view.dart +++ b/lib/views/info_view.dart @@ -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', diff --git a/lib/views/more_view.dart b/lib/views/more_view.dart index f541f0e..a9046f6 100644 --- a/lib/views/more_view.dart +++ b/lib/views/more_view.dart @@ -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', diff --git a/lib/views/welcome_view.dart b/lib/views/welcome_view.dart index caeffc4..d03a569 100644 --- a/lib/views/welcome_view.dart +++ b/lib/views/welcome_view.dart @@ -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( diff --git a/pubspec.yaml b/pubspec.yaml index 28fa2ef..14cdcb9 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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