Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
4075301
Set globals for ESLint, clean and fix errors
WebMaestroFr Jun 10, 2024
ed1f973
Fix build command
WebMaestroFr Jun 10, 2024
f0335a7
Fix warnings
WebMaestroFr Dec 2, 2025
2e26998
Merge branches 'main' and '2024-06-08-eslint-prettier' of github.com:…
WebMaestroFr Dec 2, 2025
b34cdb8
Merge branch 'v12-compatibility' of github.com:ForgeVTT/forge-compend…
WebMaestroFr Dec 2, 2025
b17cd7d
Fix CSS syntax error
WebMaestroFr Dec 2, 2025
52bcb06
WIP Use ApplicationV2
WebMaestroFr Dec 8, 2025
30ab425
Revert formatting changes on Vue components
WebMaestroFr Dec 9, 2025
208b1d5
Improve retro-compatibility with <v12
WebMaestroFr Dec 9, 2025
07c5e26
Clean up
WebMaestroFr Dec 10, 2025
2265779
Fix Compendium browser
WebMaestroFr Dec 10, 2025
6ba6a81
Updated the code to hide compendium entries in the sidebar
zeel01 Feb 18, 2026
b25f3ee
Removed older version of base app
zeel01 Feb 18, 2026
c4273ac
Added support for dark mode
zeel01 Feb 18, 2026
e17c82c
Refactored inner document rendering flow.
zeel01 Feb 18, 2026
990a771
Added development section to Readme
zeel01 Feb 18, 2026
9f32c4f
Removed redundant classes from wrapper, classes are needed on the "fr…
zeel01 Feb 18, 2026
1a89783
Adjusted general alignments and styles
zeel01 Feb 19, 2026
dd9bc1d
Updated the way sub-document sheets are displayed within the app.
zeel01 Feb 19, 2026
477e669
Made listing group background contrast better in dark mode
zeel01 Feb 19, 2026
bbc0b11
Removed some more jquery from the scene section
zeel01 Feb 19, 2026
7f0b922
Fixed imports
zeel01 Feb 19, 2026
a445a81
Fixed item tabs
zeel01 Feb 19, 2026
71ae717
Made breadcrumb bar text size consistent with previous version
zeel01 Feb 19, 2026
717b273
Tweaked the display of sub-document sheets
zeel01 Feb 19, 2026
a9e59c3
Replaced some warnings with debug output instead
zeel01 Feb 19, 2026
f880a30
Updated package manifest
zeel01 Feb 19, 2026
cbb3765
Modified readme
zeel01 Feb 19, 2026
ba40996
Update debug message to match method name
zeel01 Mar 6, 2026
ab87ede
Ignore zip files
zeel01 Mar 6, 2026
97d2864
Revert iterating version number a second time
zeel01 Mar 6, 2026
e47e032
Cleaned up commented out code
zeel01 Mar 6, 2026
11bd15a
Removed unneeded version check
zeel01 Mar 6, 2026
8ea9e9f
Removed unnecessary base class.
zeel01 Mar 6, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# EditorConfig is awesome: https://EditorConfig.org

[*.js]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ pnpm-debug.log*
*.njsproj
*.sln
*.sw?
*.zip
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.6.0

v13 Compatibility.

## 1.5.0

v12 Compatibility
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ D&D Beyond converted books (since converter version 0.2.0) will automatically be

![cover](img/cover.png)

For more information, visit the [Forge's documentation](https://forums.forge-vtt.com/docs?topic=17791)
For more information, visit the [Forge's documentation](https://forums.forge-vtt.com/docs?topic=17791)
9 changes: 3 additions & 6 deletions module.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
{
"name": "forge-compendium-browser",
"id": "forge-compendium-browser",
"title": "The Forge: Compendium Library",
"description": "Browse your compendium books like they were meant to be viewed. The Forge's Compendium Library lets you navigate your D&amp;D Beyond imported books in a beautiful and easy to use interface!",
"version": "1.5.0",
"minimumCoreVersion": "9",
"compatibleCoreVersion": "12",
"version": "1.6.0",
"compatibility": {
"minimum": "9",
"verified": "12"
"minimum": "13",
"verified": "13"
},
"author": "The Forge",
"authors": [
Expand Down
Loading