Skip to content
This repository has been archived by the owner on Feb 2, 2022. It is now read-only.

Releases: ml-archive/Codemine

Support for Swift 4.2

03 May 14:09
Compare
Choose a tag to compare

Codemine is now built using Swift 4.2.

Additional improvements

  • New README containing snippets and descriptions if you want to use individual nuggets of gold but don't want to include the entire framework
  • You can now change the value of a URL parameter with changeQueryParamValue(for url: URL, withName: String, toValue: String)

Adds new option to html string to fix encoding issue

12 Sep 06:53
e41d930
Compare
Choose a tag to compare
Merge pull request #58 from nodes-ios/fix/html-string-characterEncoding

Added an option for html string attributes string to fix encoding issues

URLSession and Codable

13 Jun 14:08
fdcb648
Compare
Choose a tag to compare

Added extensions for URLSession and Codable

Adds new append function to URL extension

19 Feb 15:00
1cd6200
Compare
Choose a tag to compare

We've added a new method in our URL extension:

append(queryParameters: [String: String])

This means that you can add query parameters to a URL as a dictionary of key value pairs like so:

let url = URL(string: "https://example.com")!
url.append(queryParameters: ["param1" : "value1, "param2" : "value2"]
//url is now: https://example.com?param1=value1&param2=value2

Disabled Code Coverage for Carthage issue

04 Oct 13:29
Compare
Choose a tag to compare

Added html to attributed string

29 Jun 09:07
Compare
Choose a tag to compare

Added html to attributed string

Swift 3 support, swiftier naming and improved coverage

14 Jan 10:41
Compare
Choose a tag to compare

Codemine 1.0.0 brings Swift 3 support, renamed function names to be more swifty and better code coverage

Swift 2.3

20 Sep 13:16
Compare
Choose a tag to compare
0.2.5

Updated to swift 2.3

Initial release

19 Feb 12:17
Compare
Choose a tag to compare

Initial release of Codemine, a collection of extensions containing useful functions and syntactic sugar for your Swift project.

First pre-release

18 Feb 15:58
Compare
Choose a tag to compare
First pre-release Pre-release
Pre-release

This is the initial pre-release of Codemine, a gold mine of code, filled with neat utility functions. This is a pre-release and it's not intended to be used in production.