Skip to content

Releases: richardwilkes/toolbox

v1.1.9

22 Feb 21:47
Compare
Choose a tag to compare
Add xlsx.Read() for reading a stream

v1.1.8

22 Feb 00:38
Compare
Choose a tag to compare
Update deps

v1.1.7

22 Feb 00:37
Compare
Choose a tag to compare
Update deps

v1.1.6

07 Feb 20:09
Compare
Choose a tag to compare

When using web.Server, if you omit the port in the WebServer.Addr field and specify a list of port numbers in the new Ports field, each port will be tried in sequence until one can be listened upon or the it reaches the end of the list. For example, setting WebServer.Addr to 127.0.0.1 and Ports to {54321, 0} would result in first port 54321 being tried, and if that failed, it would then use a free port on the system.

v1.1.5

07 Feb 18:07
Compare
Choose a tag to compare
  • Added txt.ToCamelCaseWithExceptions()
  • Fixed an issue where errs.Wrap() wasn't trimming itself from the call stack appropriately due to a previous change that had it calling yet another function.

v1.1.4

14 Jan 18:00
Compare
Choose a tag to compare
  • Add support for detecting the Windows locale
  • Add errs.WrapTyped
  • mkembeddedfs now runs the source formatter over the generated code

v1.1.3

13 Dec 00:41
Compare
Choose a tag to compare

Remove some debug printf's... (sigh)

v1.1.2

07 Dec 16:35
Compare
Choose a tag to compare

Stop safe.CreateWithMode from attempting to set the mode on Windows, since it isn't really supported there and just throws an error.

v1.1.1

05 Dec 21:42
Compare
Choose a tag to compare

Normalize paths to fix EFS support on Windows

v1.1.0

05 Dec 01:02
Compare
Choose a tag to compare

Add fs.Copy()