Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
339f6e3
Checkpoint with some tests passing
rbnswartz Dec 1, 2025
fb359f5
More tests working
rbnswartz Dec 2, 2025
4388381
More tests passing
rbnswartz Dec 3, 2025
bd1e667
Before caching
rbnswartz Dec 4, 2025
8d7f63f
A quick stop in optimization land
rbnswartz Dec 4, 2025
e6e42a0
Fixed the last test
rbnswartz Dec 5, 2025
28cab50
WIP
rbnswartz Dec 11, 2025
ecca8e1
Fix a large performance regression
rbnswartz Dec 12, 2025
fc65b0a
And fix the tests
rbnswartz Dec 12, 2025
8e229bf
Handle escaping \
rbnswartz Dec 12, 2025
cd3c804
WIP
rbnswartz Dec 12, 2025
1d3df9d
WIP
rbnswartz Dec 12, 2025
e4438b7
Use default hierarchy for calculating the things that rely on a child
rbnswartz Dec 15, 2025
c6dcb39
Initial support for other hierarchies
rbnswartz Dec 15, 2025
c492d38
Add bits to allow swapping between hierarchies
rbnswartz Dec 19, 2025
9ec570f
More Hierarchies
rbnswartz Dec 22, 2025
5526e44
Some more minor fixes
rbnswartz Dec 23, 2025
ed82d46
Handle + sub markers
rbnswartz Dec 23, 2025
ac5a01b
Use a more intelligent method of finding out how big our array should be
rbnswartz Dec 23, 2025
5459cf4
Changes needed for bttwriterlib and updates for the CI/CD
rbnswartz Feb 24, 2026
6d7c9a4
Fixed typo in file name
rbnswartz Feb 25, 2026
cde2d9d
Added a test case for ending in escaped backslash
rbnswartz Feb 25, 2026
7881158
Fixed a typo and added a test for a potential case that we handle cor…
rbnswartz Feb 25, 2026
fcfc2c8
Update comments in parser
rbnswartz Mar 2, 2026
818e9e9
Added tests for a potential null mishandling in GetChildMarkers
rbnswartz Mar 2, 2026
f5b69f6
Fix the issue with double backslash handling
rbnswartz Mar 2, 2026
52cf198
Made just a bit more resilient to a null pointer issue
rbnswartz Mar 2, 2026
c2140e9
Some cleaner defaults for chapter/verse numbering
rbnswartz Mar 2, 2026
c16ecec
Removed a lot of uneeded includes
rbnswartz Mar 2, 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
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 8.0.x
dotnet-version: 10.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 8.0.x
dotnet-version: 10.0.x
- name: Build
run: dotnet build -c Release
- name: Test
Expand Down
Loading