rmcrackan
ef62ee15e2
Merge branch 'master' of https://github.com/rmcrackan/Libation
2026-06-07 12:56:21 -04:00
rmcrackan
c285522a0c
Add contributor from PR #1854
2026-06-07 12:56:13 -04:00
rmcrackan
0fb3eb152f
Merge pull request #1854 from matalvernaz/fix/1729-sqlite-migration-lock-deadlock
...
Skip EF migration lock when no migrations are pending (fixes SQLite scan-hang #1729 )
2026-06-07 12:55:20 -04:00
Matthew Alvernaz
63325b9cad
Skip EF migration lock when no migrations are pending ( #1729 )
...
DbContexts.GetContext() runs ApplyMigrations on every context creation,
calling Database.Migrate(). Migrate() acquires the EF migration lock
before checking whether anything is pending. For SQLite that lock is a
persisted row in __EFMigrationsLock with no timeout (SQLite has no
connection-scoped lock that frees on disconnect). A process killed after
acquiring the lock but before releasing it - even during an otherwise
no-op Migrate() - orphans the row, and every later Migrate() then spins
forever in SqliteHistoryRepository.AcquireDatabaseLock(). The row lives
in the db file, so restarts never clear it, matching the "scan hangs,
reboot doesn't help" reports in #1729 .
Guard Migrate()/MigrateAsync() behind GetPendingMigrations(), which only
reads __EFMigrationsHistory and never acquires the lock. The steady-state
path (schema already current) no longer touches the lock at all; first
run and real migrations are unchanged.
2026-06-06 22:23:12 -07:00
rmcrackan
37a60ca654
Merge pull request #1853 from rmcrackan/rmcrackan-patch-1
...
increm ver
v13.4.5
2026-06-05 10:42:50 -04:00
rmcrackan
6623300883
Update AppScaffolding.csproj
2026-06-05 10:42:21 -04:00
rmcrackan
329df0882a
Merge pull request #1852 from rmcrackan/rmcrackan/1851-threading
...
#1851 - threading bug
2026-06-04 10:23:11 -04:00
rmcrackan
da000694d7
upgrade dependency
2026-06-04 10:17:23 -04:00
rmcrackan
f1a7a837f3
CI bug. try upgrading
2026-06-04 10:13:22 -04:00
rmcrackan
869917e0ce
#1851 - threading bug
2026-06-04 09:59:12 -04:00
rmcrackan
d532e40fe9
Merge pull request #1850 from rmcrackan/rmcrackan/doc-cleanup
...
Clean up docs
2026-06-03 11:05:49 -04:00
rmcrackan
9ef5e95801
Clean up docs
2026-06-03 11:04:59 -04:00
rmcrackan
c1c3c33ea8
Merge pull request #1849 from rmcrackan/rmcrackan/docs-better-atmos
...
better atmos docs
2026-06-02 16:45:36 -04:00
rmcrackan
b31e7cb819
better atmos docs
2026-06-02 16:44:54 -04:00
rmcrackan
314a46d59d
Merge pull request #1848 from rmcrackan/rmcrackan/docs-spacial-audio
...
new page for spacial audio info
2026-06-02 16:39:21 -04:00
rmcrackan
721f09a62b
new page for spacial audio info
2026-06-02 16:38:12 -04:00
rmcrackan
545b3057d4
Merge pull request #1847 from rmcrackan/rmcrackan/1845-better-non-json
...
#1845 - improve error message for common VPN blocking errors
2026-06-02 12:58:30 -04:00
rmcrackan
2c2ae2c8b0
#1845 - improve error message for common VPN blocking errors. improve troubleshooting docs
2026-06-02 12:53:20 -04:00
rmcrackan
f456c68176
Merge pull request #1846 from rmcrackan/rmcrackan/1844-nre
...
#1844 - add lock to avoid race/NRE
2026-06-02 10:59:25 -04:00
rmcrackan
e6c17053f7
#1844 - add lock to avoid race/NRE
2026-06-02 10:54:14 -04:00
rmcrackan
0c22b821bf
incr ver
v13.4.4
2026-05-25 11:16:38 -04:00
rmcrackan
8902ddc565
Merge pull request #1838 from rmcrackan/rmcrackan/1836-disk-space
...
#1836 - Fix misleading "Not enough disk space" warnings
2026-05-25 11:15:08 -04:00
rmcrackan
9ed98cbfff
unit test fix: this is always going be a weird test. it's trying to balance machine speed vs long running process -- and test 'unreasonable' response time
2026-05-25 10:58:57 -04:00
rmcrackan
3cf5d0b3fa
unit test bug fix: culture info
2026-05-25 10:46:34 -04:00
rmcrackan
6bd1ea7ca4
fix unit tests for windows-only logic
2026-05-25 10:41:20 -04:00
rmcrackan
f8c5f0da68
#1836 - Fix misleading "Not enough disk space" warnings when Books and In progress are on different drives
2026-05-25 10:25:46 -04:00
rmcrackan
a3f272a48e
#1835 - add log file guidance to FAQ
2026-05-22 15:00:34 -04:00
Robert
9ee59738eb
incr ver
v13.4.3
2026-05-21 10:36:21 -04:00
rmcrackan
f57839c104
Merge pull request #1834 from rmcrackan/rmcrackan/1833-pdf-bug-fix
...
Download works but queue goes red with Download PDF
2026-05-21 10:33:52 -04:00
rmcrackan
d63fabd73d
Download works but queue goes red with Download PDF
2026-05-21 10:33:13 -04:00
rmcrackan
54a97cc3c4
Merge pull request #1830 from rmcrackan/fix/docs-vite-security-override
...
Pin vite 6.4.2 for docs site (Dependabot GHSA-4w7w-66w2-5vf9)
2026-05-19 09:44:28 -04:00
rmcrackan
1e3daa40dc
Pin vite 6.4.2 for docs site to resolve Dependabot alert.
...
VitePress 1.6.4 requires vite ^5.4.14, which has no backport for
GHSA-4w7w-66w2-5vf9. An npm override keeps VitePress 1.x while
using a patched vite. Deploy workflow now watches package files.
Co-authored-by: Cursor <cursoragent@cursor.com >
2026-05-19 09:40:44 -04:00
rmcrackan
8f3f069d54
Merge pull request #1829 from rmcrackan/rmcrakan/13-4-2
...
incr ver
v13.4.2
2026-05-19 08:57:00 -04:00
rmcrackan
88e3bbab89
Merge pull request #1828 from rmcrackan/rmcrackan/1827-cli-liberate-single
...
#1827 - CLI option to liberate single book
2026-05-19 08:56:49 -04:00
rmcrackan
ca52ed4b7a
incr ver
2026-05-19 08:55:57 -04:00
rmcrackan
bb4a5298ae
#1827 - CLI option to liberate single book
2026-05-19 08:51:21 -04:00
rmcrackan
9512e62deb
Merge pull request #1824 from rmcrackan/rmcrackan/1819-ntfs-note
...
#1819 - Better NTFS invalid character note
2026-05-18 16:47:25 -04:00
rmcrackan
91174ed8dd
Merge pull request #1826 from rmcrackan/rmcrackan/1823-full-disk
...
#1823 - Address full disk better
2026-05-18 10:09:33 -04:00
rmcrackan
b9490966bb
* Multi-step backup: PDF and later steps now run in the same awaited chain, so disk full on PDF stops the queue instead of counting as success.
...
* Detection: Quota / NAS “out of space” messages are treated like disk full, not generic retries.
2026-05-18 10:00:32 -04:00
rmcrackan
d1114b410e
sync/async bug fixes
2026-05-18 09:53:05 -04:00
rmcrackan
49e9b0c9ce
oops, wrong branch. revert
2026-05-18 09:42:08 -04:00
rmcrackan
0b0d1afc48
Fix build failures on non-windows
2026-05-18 09:39:57 -04:00
rmcrackan
77f518f8d3
#1823 - Address full disk better. Fail clearly and early when possible, fail safely when space cannot be queried, and do not take down the UI or spam the user when the disk is full.
2026-05-18 09:20:51 -04:00
rmcrackan
9f1d4a383b
Merge pull request #1825 from rmcrackan/rmcrackan/1822-crash-after-upgrade
...
#1822 - Fix the startup crash after auto-upgrade
2026-05-18 09:02:42 -04:00
rmcrackan
74b18c170a
#1822 - Fix the startup crash after auto-upgrade by loading the library only after InteropFactory assembly resolution is ready, checking that Microsoft.EntityFrameworkCore.Sqlite.dll is present in the install folder, and showing a clear reinstall message instead of a generic "Unexpected error" when that still fails.
2026-05-18 08:54:40 -04:00
rmcrackan
c85c11b27a
#1819 - Better NTFS invalid character note
2026-05-18 08:21:51 -04:00
rmcrackan
c8ac585ab3
Merge pull request #1817 from rmcrackan/rmcrackan/1811-threading
...
#1811 - fix UI threading
2026-05-15 12:10:39 -04:00
rmcrackan
55b45ae45d
#1811 - fix UI threading
2026-05-15 12:02:23 -04:00
rmcrackan
776cd5215f
Merge pull request #1816 from rmcrackan/rmcrackan/docker-yaml-context
...
Avoid default git context refs/pull/*/merge (breaks after PR merge or…
2026-05-15 11:45:03 -04:00
rmcrackan
1b8840c3b0
Avoid default git context refs/pull/*/merge (breaks after PR merge or on some re-runs)
2026-05-15 11:13:04 -04:00