
--- 2021 ---

02.20 (0.9.1)
	- NEW: Settings file to configure some default values.
	- NEW: Ability to modify animation speed.
	- NEW/TWEAK: Arrow keys now seek by 1 frame (inaccurately) by default. Hold
		Ctrl+Shift to seek by 1 second. Press down/up to go to the start/end
		of the selected time range.
	- TWEAK: Disabled "-layers OptimizeFrame" by default from imagemagick.
		It doesn't seem to help filesize much at all with the command being
		used, and may even occasionally produce glitchy artifacts.
	- ENHANCE: Improved text wrapping so words don't get cut from the middle.
	- FIX: Output gets stretched weirdly.
		Cause: some video files have additional resources like fonts or
		cover images on them. ffprobe treats attached images as "video
		streams" which makes them behave identically to the actual video, so
		sometimes an image size would sneak in instead of the video size.
		This problem may not be 100% fixed because I don't know if there's
		more similar attachment types.
	- FIX: Crash when closing the program.
		Cause: I called the wrong function to release the window's pixel
		data. I use generic "Image" objects to handle pixel operations, but
		sometimes the data for said images is created by a library (stb_image)
		which requires it's own mechanism for releasing the data. I was
		mistakenly using the library's mechanism for ALL images, including
		images created manually (such as the window's pixels).
	- FIX: Modifying the Top/Left crop values messes up the Bottom/Right values.
		Cause: I mistakenly thought the Top/Left inputs should work
		identically to the Y/X inputs without thinking much about it.
	- WHOCARES: Moved trivia into the readme file. I made the info screen before
		I had a readme.

02.15 (0.9)
	- Initial release
