Skip to content

Commit

Permalink
1.05
Browse files Browse the repository at this point in the history
  • Loading branch information
mouse0270 committed Oct 23, 2022
1 parent 620ff8d commit 7bbc53f
Show file tree
Hide file tree
Showing 21 changed files with 595 additions and 1,274 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# Version 1.0.5 - QOL Stuff
- Blatantly copied @TyphonJS StyleManager Logic to move css variables `html` element to `style` element.
- Fixed Localization for Activating Preset.
- Updated TidyHUD
- Broke Options into individual togglable options
- Added the ability to align the hotbar
- Added the option to expand player UI when showing offline Players
- Updated Collapsible Button to a plus and minus
- Added the ability to click on the title to open and collapse.
- Fixed resetting default color when not using lib - Color Settings from setting color to black
- Updated Presets to only Save values that are not defaults
- Added two Default Presets

# version 1.0.4 - GM Theme
- Fixed issue with GM Theme not hiding Configure Theme Button with Fantasy RPG UI
- Fixed GM Theme not applying to user when logging into world
Expand Down
52 changes: 51 additions & 1 deletion languages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,15 @@
"enableMasterTheme.name": "Enable GM Theme",
"enableMasterTheme.hint": "When enabled, all connected players will recieve the Game Masters theme. This is useful if you want everyone to use the same theme.",
"userStorage.name": "Custom Theme Directory",
"userStorage.hint": "libThemer will attempt to load in any .theme files in this directory. Useful for custom themes without needing to make a whole module."
"userStorage.hint": "libThemer will attempt to load in any .theme files in this directory. Useful for custom themes without needing to make a whole module.",
"presets.createDefault": {
"name": "Enable Default Theme Presets",
"hint": "This will add predefined theme presets to libThemer's Manage Presets menu.",
"label": "Add Theme Presets",
"content": "Would you like to add predefined theme presets to libThemer's Manage Presets Menu?",
"confirm": "Confirm",
"cancel": "Cancel"
}
},
"dialog": {
"theme": {
Expand All @@ -25,6 +33,7 @@
"overwritePreset": "Update this preset with your current theme values?",
"deletePreset": "Are you sure you want to delete this Preset?",
"deletePresetWarning": "This action can <strong>NOT</strong> be undone!",
"activatePreset": "Activate this Preset?",
"errors": {
"noTitle": "Please enter a Title for your Preset."
}
Expand Down Expand Up @@ -274,6 +283,34 @@
"name": "Tidy HUD",
"hint": "This stylesheet attempts to tidy up / minify the HUD elements of foundry for a cleaner look.",
"settings": {
"cssTidyHUDDisableLogo": {
"name": "Hide Logo",
"hint": "This will hide the logo in the top left of the UI"
},
"cssTidyHUDControls": {
"name": "Adjust UI Controls",
"hint": "This allows you to change the size and position of the UI Controls."
},
"cssTidyHUDSceneBrowser": {
"name": "Adjust UI Scene Browser",
"hint": "This allows you to change the position of the UI Scene Browser."
},
"cssTidyHUDPlayers": {
"name": "Minify Players UI",
"hint": "This will shrink the players UI to make it more compact"
},
"cssTidyHUDPlayersExpandOffline": {
"name": "Expand Player UI",
"hint": "The Player UI will expand to full width when showing offline players."
},
"cssTidyHUDHotbar": {
"name": "Adjust UI Hotbar",
"hint": "This allows you to change the position of the UI Hotbar."
},
"cssTidyHUDNotifications": {
"name": "Minify Notifications",
"hint": "This will make notifications appear more like a OS notification, but making them less wide and placing them next to the Sidebar."
},
"tidyHUDControlsAlignment": {
"name": "Controls Alignment",
"hint": "This allows you to adjust the alignment of the controls.",
Expand Down Expand Up @@ -302,6 +339,19 @@
"tidyHUDOffsetMarginLeft": {
"name": "Scene Explorer Left Offset",
"hint": "This allows you to adjust the controls spacing from the left."
},
"tidyHUDHotbarAlignment": {
"name": "Hotbar Alignment",
"hint": "This allows you to adjust the alignment of the hotbar.",
"choices": {
"left": "Left",
"center": "Center",
"right": "right"
}
},
"tidyHUDHotbarOffset": {
"name": "Hotbar Offset",
"hint": "This allows you to adjust the offset of the hotbar alignment."
}
}
},
Expand Down
Loading

0 comments on commit 7bbc53f

Please sign in to comment.