Fix extension loading, enhance theming, add horizontal scrolling, improve emoji parsing, rename to Main Quests

This commit is contained in:
Spicy_Marinara
2025-10-26 22:31:21 +01:00
parent d68ddd601e
commit 141a3f4bec
17 changed files with 2888 additions and 437 deletions
+2 -6
View File
@@ -266,15 +266,11 @@ export function applyPanelPosition() {
* Updates the UI based on generation mode selection.
*/
export function updateGenerationModeUI() {
const $mobileBtn = $('#rpg-manual-update-mobile');
if (extensionSettings.generationMode === 'together') {
// In "together" mode, hide both desktop and mobile refresh buttons
// In "together" mode, manual update button is hidden
$('#rpg-manual-update').hide();
$mobileBtn.addClass('rpg-hidden-mode');
} else {
// In "separate" mode, show both desktop and mobile refresh buttons
// In "separate" mode, manual update button is visible
$('#rpg-manual-update').show();
$mobileBtn.removeClass('rpg-hidden-mode');
}
}