v3.6.0 - Bug fixes and number display mode for stats

- Fixed custom status fields not being sent to prompts or parsed
- Fixed date format selection not working beyond default format
- Fixed widget text overflow issues with minimal scrollbars
- Added ability to display stats as numbers with custom max values instead of percentages
- Enabled desktop strip widgets by default
- Removed icon from Desktop Collapsed Strip Widgets heading
This commit is contained in:
Spicy_Marinara
2026-01-13 13:52:18 +01:00
parent ce668c4793
commit e8edc42164
12 changed files with 340 additions and 64 deletions
+45
View File
@@ -147,6 +147,12 @@ export function loadSettings() {
// Migrate to preset manager system if presets don't exist
migrateToPresetManager();
// Initialize custom status fields
initializeCustomStatusFields();
// Ensure all stats have maxValue (for number display mode)
ensureStatsHaveMaxValue();
} catch (error) {
console.error('[RPG Companion] Error loading settings:', error);
console.error('[RPG Companion] Error details:', error.message, error.stack);
@@ -694,6 +700,45 @@ export function migrateToPresetManager() {
}
}
/**
* Initializes custom status fields in userStats based on trackerConfig
* Ensures all defined custom status fields have a value in the userStats object
*/
function initializeCustomStatusFields() {
const customFields = extensionSettings.trackerConfig?.userStats?.statusSection?.customFields || [];
// Initialize each custom field if it doesn't exist
for (const fieldName of customFields) {
const fieldKey = fieldName.toLowerCase();
if (extensionSettings.userStats[fieldKey] === undefined) {
extensionSettings.userStats[fieldKey] = 'None';
// console.log(`[RPG Companion] Initialized custom status field: ${fieldKey}`);
}
}
}
/**
* Ensures all custom stats have a maxValue property
* This migration supports the number display mode feature
*/
function ensureStatsHaveMaxValue() {
const customStats = extensionSettings.trackerConfig?.userStats?.customStats || [];
for (const stat of customStats) {
if (stat && stat.maxValue === undefined) {
stat.maxValue = 100; // Default to 100 for backward compatibility
// console.log(`[RPG Companion] Added maxValue to stat: ${stat.id || stat.name}`);
}
}
// Ensure statsDisplayMode is set (default to percentage)
if (extensionSettings.trackerConfig?.userStats &&
extensionSettings.trackerConfig.userStats.statsDisplayMode === undefined) {
extensionSettings.trackerConfig.userStats.statsDisplayMode = 'percentage';
// console.log('[RPG Companion] Initialized statsDisplayMode to percentage');
}
}
/**
* Gets all available presets
* @returns {Object} Map of preset ID to preset data
+8 -6
View File
@@ -86,7 +86,7 @@ export let extensionSettings = {
},
// Desktop strip widget display options (shown in collapsed panel strip)
desktopStripWidgets: {
enabled: false, // Master toggle for strip widgets (disabled by default)
enabled: true, // Master toggle for strip widgets (enabled by default)
weatherIcon: { enabled: true }, // Weather emoji (☀️, 🌧️, etc.)
clock: { enabled: true }, // Current time display
date: { enabled: true }, // Date display
@@ -125,13 +125,15 @@ export let extensionSettings = {
// Tracker customization configuration
trackerConfig: {
userStats: {
// Stats display mode: 'percentage' or 'number'
statsDisplayMode: 'percentage',
// Array of custom stats (allows add/remove/rename)
customStats: [
{ id: 'health', name: 'Health', enabled: true, persistInHistory: false },
{ id: 'satiety', name: 'Satiety', enabled: true, persistInHistory: false },
{ id: 'energy', name: 'Energy', enabled: true, persistInHistory: false },
{ id: 'hygiene', name: 'Hygiene', enabled: true, persistInHistory: false },
{ id: 'arousal', name: 'Arousal', enabled: true, persistInHistory: false }
{ id: 'health', name: 'Health', enabled: true, persistInHistory: false, maxValue: 100 },
{ id: 'satiety', name: 'Satiety', enabled: true, persistInHistory: false, maxValue: 100 },
{ id: 'energy', name: 'Energy', enabled: true, persistInHistory: false, maxValue: 100 },
{ id: 'hygiene', name: 'Hygiene', enabled: true, persistInHistory: false, maxValue: 100 },
{ id: 'arousal', name: 'Arousal', enabled: true, persistInHistory: false, maxValue: 100 }
],
// RPG Attributes (customizable D&D-style attributes)
showRPGAttributes: true,