aboutsummaryrefslogtreecommitdiff
path: root/src/ARMeilleure/Translation/TranslatorQueue.cs
AgeCommit message (Collapse)Author
2024-08-27Fix deadlock in background translation thread shutdown (#7239)David McFarland
TryDequeue checks for _disposed before taking the lock. If another thread calls Dispose before it takes the lock, it won't get woken up by the PulseAll call, and will deadlock in Monitor.Wait. Double-checking _disposed with the lock taken should avoid this.
2023-12-04editorconfig: Set default encoding to UTF-8 (#5793)TSRBerry
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
2023-04-27Move solution and projects to srcTSR Berry