SwiftFM Versions Save

SwiftFM is a Swift framework for the FileMaker Data API

2.3.2

1 year ago

This fixes a DocC format bug

2.3.0

1 year ago

Refactored Codable return types, updating functions to match. Non-breaking change. Just a bit of cleaning up. 🧹

Updated readme code examples.

2.2.4

2 years ago

Apache License 2.0

2.2.3

2 years ago

This release is all about DocC support, which is now available throughout SwiftFM. 🥰

No additions or changes to existing code or behavior.

2.2.2

2 years ago

Returned count (console) for fetches... .foundCount to .returnedCount

2.2.0

2 years ago

Query(), GetRecord(), and GetRecords() previously returned (Data?, Data?). Returning a tuple of optionals meant an extra step before unwrapping either result. Not ideal. All record fetching methods now throw and return (Data, DataInfo). This means:

  • You no longer need an extra let (data, info) = call prior to unwrapping data or info.
  • You can now 'dot' directly into info, like this: print("fetched \(info.foundCount) records").