Skip to content

Releases: ShindouMihou/siopao

v1.0.6

28 Mar 14:41
1685c88
Compare
Choose a tag to compare

Changelog

  • Adds Reader.EachChar method to read the file character by character.
  • Exposes File.MkdirParent to make the directories of the path.
  • MIT License is permanent and irrevocable is now explicitly stated under README.

Installation

go get github.com/ShindouMihou/[email protected]

Documentations

You can read the documentation for siopao over at your development environment, or through:

v1.0.5

22 Mar 11:21
0b4e7bd
Compare
Choose a tag to compare

Changelog

  • Adds Recurse method to recursively scan files in a directory.
  • Adds IsDir and UncachedIsDir to check whether the File is a directory.

Installation

go get github.com/ShindouMihou/[email protected]

Documentations

You can read the documentation for siopao over at your development environment, or through:

v1.0.4

21 Sep 20:54
ba5c100
Compare
Choose a tag to compare

Changelog

  • File is now concurrent-safe (as it doesn't share os.File with other methods inside anymore).

Installation

go get github.com/ShindouMihou/[email protected]

Documentations

You can read the documentations for siopao over at your development environment, or through:

v1.0.3

11 Sep 03:31
d223c96
Compare
Choose a tag to compare

Changelog

  • Fixed a bug where MoveTo didn't copy the file name properly (due to a wrongly supplied base path).
  • Truncation now happens directly on openRead, which means streams will now truncate properly.
  • Fixed a minor behavior problem with Move and MoveTo where the new destination's folders aren't being created.
  • Added more tests to test out the rename and copying.

Installation

go get github.com/ShindouMihou/[email protected]

Documentations

You can read the documentations for siopao over at your development environment, or through:

v1.0.2

10 Sep 08:53
bb6dea0
Compare
Choose a tag to compare

Changelog

  • Added File.copy, File.move, File.rename, File.moveTo methods.
  • Added support for bufio.Reader and io.Reader as write values (in both Writer and the File API).
  • Added support for File.Delete and File.DeleteRecursively.
  • Added support for File.CopyAndHash and File.Checksum that boasts support for sha512, sha256 and md5 checksum.
  • Added MIT license.

Installation

go get github.com/ShindouMihou/[email protected]

Documentations

You can read the documentations for siopao over at your development environment, or through:

v1.0.1

10 Sep 04:33
51b72d3
Compare
Choose a tag to compare
Create LICENSE

v1.0.0

10 Sep 03:57
bb14503
Compare
Choose a tag to compare
feat: add documentation to the writer