Skip to content

Releases: JohnSundell/Files

Files 2.2.0

01 Apr 19:59
4359654
Compare
Choose a tag to compare

This release bumps Files' Swift version to 4.1. Thanks @krzyzanowskim! 👍

View build details and download artifacts on buddybuild:
Files (iOS, Files-iOS)

Files 2.1.0

27 Mar 20:55
7b3110d
Compare
Choose a tag to compare

This release of Files contains great improvements from the community! 🎉

  • Fix for invalid paths generated by moving a folder (by @clayellis)
  • You now get a much better debug description from a file or folder sequence (by @gwikiera)
  • You can now append data to a file (by @ikhsan)

View build details and download artifacts on buddybuild:
Files (iOS, Files-iOS)

Files 2.0.1

05 Nov 19:41
6171f9e
Compare
Choose a tag to compare

Files now uses the Swift 4 version of the Swift Package Description API.

View build details and download artifacts on buddybuild:
Files (iOS, Files-iOS)

Files 2.0.0

04 Nov 13:15
0054c6d
Compare
Choose a tag to compare
  • Files now uses Swift 4 (thanks @artemnovichkov!)
  • Errors now have much nicer descriptions when printed (thanks @VFUC!)
  • You can now modify a folder that you are iterating over, and the changes will propagate to the iteration (thanks @LarsJK!)

View build details and download artifacts on buddybuild:
Files (iOS, Files-iOS)

Files 1.12.0

23 Sep 10:07
Compare
Choose a tag to compare

This release adds an API for copying files/folders (thanks @artemnovichkov!)

Files 1.11.0

15 Aug 20:31
Compare
Choose a tag to compare

You can now include hidden files/folders when moving the contents of a folder to another (thanks @clayellis!)

Files 1.10.0

10 Jul 11:32
Compare
Choose a tag to compare
  • You can now create a file with string content directly using:
    folder.createFile(named: "File", content: "Hello world")
  • Iterating over files and folders recursively is now done in the same order on all supported operating systems.

View build details and download artifacts on buddybuild:
Files (iOS, Files-iOS)

Files 1.9.0

03 Jun 18:38
Compare
Choose a tag to compare
  • Files now has Continuous Integration for all its supported platforms.
  • Both File and Folder now has a modificationDate property.
  • FileSystem now has a createFileIfNeeded() method (thanks @cojoj!).

See build details and artifacts at buddybuild:
https://dashboard.buddybuild.com/apps/5932f7d9b0c2b000015d6b79/build/59330242c5a55b00016d6165

Files 1.8.0

30 Apr 17:45
Compare
Choose a tag to compare

This new version of Files adds new APIs for accessing the current, home and temporary folders using Folder.current, Folder.home and Folder.temporary. Thanks to @yageek for implementing this! 🚀

Files 1.7.0

17 Apr 18:50
Compare
Choose a tag to compare

This version of Files makes it easier to check if a folder contains a given file or subfolder, by introducing two new APIs on Folder:

folder.containsFile(named: "File")

and

folder.containsSubfolder(named: "Subfolder")