Releases: richardwilkes/toolbox
Releases · richardwilkes/toolbox
v1.1.9
Add xlsx.Read() for reading a stream
v1.1.8
Update deps
v1.1.7
Update deps
v1.1.6
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
- 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
- Add support for detecting the Windows locale
- Add errs.WrapTyped
- mkembeddedfs now runs the source formatter over the generated code
v1.1.3
Remove some debug printf's... (sigh)
v1.1.2
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
Normalize paths to fix EFS support on Windows
v1.1.0
Add fs.Copy()