rmcrackan
7bd14bd5af
Merge pull request #1870 from rmcrackan/rmcrackan/incr-ver
...
incr ver
v13.4.9
2026-06-12 11:54:35 -04:00
rmcrackan
a85179f50a
incr ver
2026-06-12 11:54:14 -04:00
rmcrackan
158ee3d5ba
Merge pull request #1869 from rmcrackan/rmcrackan/1867-duplicate-asin
...
#1867 - Fix duplicate-ASIN crashes. New Hangover recovery
2026-06-12 11:52:42 -04:00
rmcrackan
b654a8b551
#1867 - Fix duplicate-ASIN crashes. New Hangover recovery
2026-06-12 11:48:32 -04:00
rmcrackan
bc28398e1c
Merge pull request #1868 from rmcrackan/rmcrackan/1865-bad-book-setting
...
#1865 - Add in-dialog "Apply to all" and "Remember in Settings"
2026-06-12 10:10:29 -04:00
rmcrackan
4d1b78f7e4
#1865 - Add in-dialog "Apply to all" and "Remember in Settings" for bad-book errors. Also a testing section when run in debug (ie: from visual studio)
2026-06-12 09:53:57 -04:00
rmcrackan
a50712256c
Merge pull request #1864 from rmcrackan/rmcrackan/1862-security
...
Rmcrackan/1862 security
2026-06-10 14:31:47 -04:00
rmcrackan
4345971e81
escape string to avoid accidental json injection
2026-06-10 14:29:57 -04:00
rmcrackan
1ad458fe5b
CSPRNG-safe
2026-06-10 12:12:38 -04:00
Robert
1547e6bec3
incr ver
v13.4.8
2026-06-08 15:41:20 -04:00
rmcrackan
81175e5427
The edit targets two problems in the macOS bundle script.
...
Reliability: `hdiutil create` can fail on GitHub’s macOS runners with `Resource busy` even when the app build is fine. The retry wrapper gives it several attempts, waits between tries, and cleans up partial DMGs so transient runner issues are less likely to break the release.
Correctness: The script used to keep going after `hdiutil` failed and still exit successfully, which left `./bundle/` empty and made artifact upload fail with a misleading error. `set -euo pipefail` and explicit failure exits make a DMG creation failure stop the job immediately instead of pretending the bundle step succeeded.
2026-06-08 14:42:05 -04:00
rmcrackan
14551c745f
Merge pull request #1861 from rmcrackan/rmcrackan/elevate-upgrader
...
Only elevate upgrader when necessary
2026-06-08 14:31:09 -04:00
rmcrackan
e3cfe3a8f0
Only elevate upgrader when necessary
2026-06-08 14:30:35 -04:00
rmcrackan
51fbe73ea1
make vitepress happy
2026-06-08 14:23:00 -04:00
rmcrackan
41fa7b7142
Merge pull request #1860 from rmcrackan/rmcrackan/win-installer-phase-1
...
Finish windows installers, phase 1
2026-06-08 14:19:41 -04:00
rmcrackan
b7ce96e91d
Finish windows installers, phase 1
2026-06-08 14:03:59 -04:00
rmcrackan
a25fd35f29
Fix release upload path for merge-multiple artifact download
v13.4.7
2026-06-08 13:19:10 -04:00
rmcrackan
20a99c6e20
Exclude Docker cache blobs from release artifact download
2026-06-08 11:59:03 -04:00
rmcrackan
f39cfaccc7
Fix release artifact pattern for Libation-Classic assets
2026-06-08 11:21:20 -04:00
rmcrackan
6db78e4268
Merge pull request #1859 from rmcrackan/rmcrackan/windows-installer-fix
...
Fix arm64 Windows zip artifact name in CI matrix
2026-06-08 11:03:49 -04:00
rmcrackan
74e9cf24a8
Fix arm64 Windows zip artifact name in CI matrix
2026-06-08 11:01:42 -04:00
rmcrackan
6ce88072c5
Merge pull request #1858 from rmcrackan/rmcrackan/windows-installer-fix
...
yaml bug fix
2026-06-08 10:53:50 -04:00
rmcrackan
9058c7368c
yaml bug fix
2026-06-08 10:53:05 -04:00
rmcrackan
37d5517756
Merge pull request #1857 from rmcrackan/rmcrackan/windows-installer
...
Add Windows installers to release build
2026-06-08 10:45:39 -04:00
rmcrackan
0a33863635
Merge branch 'master' into rmcrackan/windows-installer
2026-06-08 10:44:58 -04:00
rmcrackan
d03955a2ca
Add Windows installers to release build
2026-06-08 10:43:32 -04:00
Robert
b2c5ae3c2e
incr ver
v13.4.6
2026-06-08 10:27:17 -04:00
rmcrackan
fb7e0857c6
Merge pull request #1856 from rmcrackan/rmcrackan/releaseindex
...
update backwards compat releaseindex in prep for future changes
2026-06-08 10:15:26 -04:00
rmcrackan
60965902ca
update backwards compat releaseindex in prep for future changes
2026-06-08 10:15:00 -04:00
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