Skip to content

Releases: richardwilkes/toolbox

v1.6.1

21 May 21:53
Compare
Choose a tag to compare
  • 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

17 May 15:22
Compare
Choose a tag to compare
  • Add Intersects() to geom.Rect

v1.5.2

13 May 22:52
Compare
Choose a tag to compare
  • Account for case with too many fractional digits when parsing fixed values

v1.5.1

24 Apr 20:15
Compare
Choose a tag to compare
  • ConstrainForHint now ignores values less than 1

v1.5.0

24 Mar 21:36
Compare
Choose a tag to compare
  • Added embedded.NewSubFileSystem()

v1.4.0

24 Mar 20:54
Compare
Choose a tag to compare
  • Add support for embedding a zip file into your executable and using that as a filesystem. See embedded.NewFileSystemFromEmbeddedZip().

v1.3.0

20 Mar 16:48
Compare
Choose a tag to compare
  • Add txt.Wrap()

v1.2.2

15 Mar 23:50
Compare
Choose a tag to compare
  • Added network.ExternalIP()

v1.2.1

13 Mar 23:10
Compare
Choose a tag to compare

Add txt.FirstToLower()

v1.2.0

26 Feb 22:57
Compare
Choose a tag to compare
Add LayeredFS