Skip to content

Tags: jflow/Files

Tags

4.2.1

Toggle 4.2.1's commit message

4.2.0

Toggle 4.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add `isEmpty` method for `Folder` (JohnSundell#119)

* Add `isEmpty` method for `Folder`

Co-authored-by: Grzegorz Wikiera <[email protected]>

4.1.1

Toggle 4.1.1's commit message
Fixed MacCatalyst compile error. (JohnSundell#104)

4.1.0

Toggle 4.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix nameExcludingExtension bug when there’s no extension (JohnSundell…

…#102)

Currently using `nameExcludingExtension` on a location that doesn’t
actually have an extension results in an empty string, which this
patch fixes. Now the full name is returned instead in those situations.

4.0.2

Toggle 4.0.2's commit message
Fix root subfolder parent (JohnSundell#75)

4.0.1

Toggle 4.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Return copied filed/folder when calling copy() (JohnSundell#91)

This patch fixes a regression that would cause a copied file or folder
not to be returned as part of that operation. A test has also been
added to make sure that this feature stays intact in the future.

4.0.0

Toggle 4.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Files 4.0 (JohnSundell#87)

Files 4.0

This change includes a brand new implementation for Files,
that keeps most of the public API intact, while modernizing
the underlying implementation.

Under the hood, Files now uses value types and protocols,
rather than class inheritance - which improves the type safety
of the API, and streamlines the underlying code. Error handling
is also improved to include more underlying info, and the docs
have been reworked to be much more thorough.

The API has also been fine-tuned and modernized, dropping the
`FileSystem` class in favor of more “Swifty” APIs on `Folder`,
introducing more options for creating new files and folders, and
making it possible to easily change properties on file system
sequences.

A list of all changes will be posted as part of this version’s
release notes.

3.1.0

Toggle 3.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request JohnSundell#80 from JohnSundell/relative-paths

Add API for computing a path relative to a parent folder

3.0.0

Toggle 3.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
README: Update for Swift 5.0

2.3.0

Toggle 2.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request JohnSundell#77 from JohnSundell/remove-deprecated-api

Remove deprecated ‘creatingSubfolderFailed’ API