It's rim(W!)orld
This commit is contained in:
@@ -10,7 +10,7 @@ void main() {
|
||||
|
||||
// Get a reference to the logger (now auto-initializes)
|
||||
final logger = Logger.instance;
|
||||
logger.info('Rimworld Mod Manager starting...');
|
||||
logger.info('RimWorld Mod Manager starting...');
|
||||
|
||||
// Initialize the mod manager
|
||||
modManager = ModList(path: modsRoot);
|
||||
@@ -25,7 +25,7 @@ class RimWorldModManager extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return MaterialApp(
|
||||
title: 'Rimworld Mod Manager',
|
||||
title: 'RimWorld Mod Manager',
|
||||
theme: ThemeData.dark().copyWith(
|
||||
primaryColor: const Color(0xFF3D4A59),
|
||||
colorScheme: ColorScheme.fromSeed(
|
||||
@@ -62,7 +62,7 @@ class _ModManagerHomePageState extends State<ModManagerHomePage> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: AppBar(title: const Text('Rimworld Mod Manager')),
|
||||
appBar: AppBar(title: const Text('RimWorld Mod Manager')),
|
||||
body: _pages[_selectedIndex],
|
||||
bottomNavigationBar: BottomNavigationBar(
|
||||
currentIndex: _selectedIndex,
|
||||
@@ -186,7 +186,7 @@ class _ModManagerPageState extends State<ModManagerPage> {
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
Text(
|
||||
'Ready to scan for Rimworld mods.',
|
||||
'Ready to scan for RimWorld mods.',
|
||||
style: Theme.of(context).textTheme.bodyLarge,
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
|
||||
@@ -133,9 +133,9 @@ class ModList {
|
||||
name:
|
||||
existingMod?.name ??
|
||||
(isBaseGame
|
||||
? "Rimworld"
|
||||
? "RimWorld"
|
||||
: isExpansion
|
||||
? "Rimworld ${_expansionNameFromId(modId)}"
|
||||
? "RimWorld ${_expansionNameFromId(modId)}"
|
||||
: modId),
|
||||
id: existingMod?.id ?? modId,
|
||||
path: existingMod?.path ?? '',
|
||||
|
||||
@@ -4,7 +4,7 @@ import 'package:rimworld_modman/logger.dart';
|
||||
import 'package:rimworld_modman/mod.dart';
|
||||
import 'package:xml/xml.dart';
|
||||
|
||||
const root = r'C:/Users/Administrator/Seafile/Games-Rimworld';
|
||||
const root = r'C:/Users/Administrator/Seafile/Games-RimWorld';
|
||||
const modsRoot = '$root/294100';
|
||||
const configRoot = '$root/AppData/RimWorld by Ludeon Studios/Config';
|
||||
const configPath = '$configRoot/ModsConfig.xml';
|
||||
|
||||
Reference in New Issue
Block a user