Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
59c7367
Made handlebars creation more visible.
bubblobill Feb 12, 2026
581b234
Merge remote-tracking branch 'bb/handlebarsHelpers' into handlebarsHe…
bubblobill Feb 12, 2026
079574f
formatting
bubblobill Feb 12, 2026
42f9233
Added helper dependency
bubblobill Mar 12, 2026
cdab108
Merge branch 'RPTools:develop' into handlebarsHelpers
bubblobill Mar 17, 2026
74c5708
Merge branch 'RPTools:develop' into handlebarsHelpers
bubblobill Mar 17, 2026
4542caf
Null/blank check added to Base64EncodeHelper.
bubblobill Mar 18, 2026
d5e0927
Formatting
bubblobill Mar 18, 2026
fde4085
Removed println from HBLogger.
bubblobill Mar 18, 2026
90c3e03
Changed MathsHelpers.numbers() to enhanced for structure.
bubblobill Mar 18, 2026
c249a37
HandlebarsUtil - set preEvaluatePartialBlocks to false (apparently
bubblobill Mar 19, 2026
e06cf7e
corrected log level
bubblobill Mar 20, 2026
aee27fb
Added missing EmbeddedHelper to helper registration.
bubblobill Mar 21, 2026
90d2c91
formatting
bubblobill Mar 21, 2026
00cb47a
inline partial test
bubblobill Mar 21, 2026
b19ee56
Hyphenate stat-sheet.
bubblobill Mar 24, 2026
c73cc06
Merge remote-tracking branch 'bb/handlebarsHelpers' into handlebarsHe…
bubblobill Apr 3, 2026
dedb69e
Changed logger class.
bubblobill Apr 3, 2026
a48d33d
Merge branch 'RPTools:develop' into handlebarsHelpers
bubblobill May 13, 2026
b676bee
Merge branch 'RPTools:develop' into handlebarsHelpers
bubblobill Jun 19, 2026
03d8c91
Fix LibraryTemplateLoader.resolve(string) returning Windows path by
bubblobill Jun 19, 2026
f18d9e5
spotless
bubblobill Jun 19, 2026
cb8c903
Changed from use of Path to using URI for resolving template paths.
bubblobill Jun 20, 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
4 changes: 3 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ sentry = "7.22.5"
jide = "3.7.9"
flatlaf = "3.6.1"
handlebars = "4.4.0"
handlebars-jackson = "4.3.1"
jai-imageio = "1.4.0"
graalvm-js = "21.2.0"
pdfbox = "3.0.0"
Expand Down Expand Up @@ -94,6 +95,7 @@ jsvg = { group = "com.github.weisj", name = "jsvg", version = "1.4.0" }

handlebars = { group = "com.github.jknack", name = "handlebars", version.ref = "handlebars" }
handlebars-helpers = { group = "com.github.jknack", name = "handlebars-helpers", version.ref = "handlebars" }
handlebars-jackson-helper = { group = "com.github.jknack", name = "handlebars-jackson2", version.ref = "handlebars-jackson" }

# Apache commons and other utilities
# parsing of configuration data
Expand Down Expand Up @@ -213,7 +215,7 @@ flatlaf = [
"flatlaf-extras",
"flatlaf-jide-oss",
]
handlebars = ["handlebars", "handlebars-helpers"]
handlebars = ["handlebars", "handlebars-helpers", "handlebars-jackson-helper"]
junit = ["junit-api", "junit-engine", "junit-params"]
jai-imageio = ["jai-imageio-core", "jai-imageio-jpeg"]
graalvm-js = ["graalvm-js", "graalvm-js-scriptengine"]
Expand Down
Loading
Loading