Releases: richardwilkes/toolbox
Releases · richardwilkes/toolbox
v1.6.1
- Fix embedded zip fs support on Linux. Either the Go linker is producing garbage at the end of executables on Linux, or an extra section isn't being recorded in the ELF data on that platform when cgo is used with a binary. Regardless, this issue made it impossible to find the correct starting point within the binary for the zip content. The zip reader, however, can locate the right data if we first run the zip utility's "adjust self-extracting exe" fixup on our binary and then just tell it the whole file is a zip. So... at the expense of having the zip reader traverse the whole binary looking for the start of the zip data, we now support Linux even when cgo is involved. (sigh)
v1.6.0
- Add
Intersects()
to geom.Rect
v1.5.2
- Account for case with too many fractional digits when parsing fixed values
v1.5.1
- ConstrainForHint now ignores values less than 1
v1.5.0
- Added
embedded.NewSubFileSystem()
v1.4.0
- Add support for embedding a zip file into your executable and using that as a filesystem. See
embedded.NewFileSystemFromEmbeddedZip()
.
v1.3.0
- Add txt.Wrap()
v1.2.2
- Added network.ExternalIP()
v1.2.1
Add txt.FirstToLower()
v1.2.0
Add LayeredFS