
--- 2025 ---

07-28 (0.9.6)
	- FIX: Problem: crashes sometimes when typing in the search bar.
		Cause: There's a program thread that searches files, and there's another thread that
		reads the results and shows them on the screen. I was hoping I could just be lazy and not
		have to deal with any data-race issues if thread A modifies data when thread B is in the
		middle of reading it, but it turned out to be a problem after all. It sounded plausible
		but I forgot that an array may re-allocate data. I am not 100% sure if the crash is fixed
		because I'm still being lazy, I just slapped a mutex on it and hoping that's enough.

05-09 (0.9.5)
	- (initial release)
