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

Releases: ml-archive/Codemine

Support for Swift 4.2

Choose a tag to compare

@pbodsk pbodsk released this 03 May 14:09

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

Choose a tag to compare

@roxanajula roxanajula released this 12 Sep 06:53
e41d930
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

Choose a tag to compare

@kjoneandrei kjoneandrei released this 13 Jun 14:08
fdcb648

Added extensions for URLSession and Codable

Adds new append function to URL extension

Choose a tag to compare

@pbodsk pbodsk released this 19 Feb 15:00
1cd6200

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

Choose a tag to compare

@cglarsen cglarsen released this 04 Oct 13:29

Added html to attributed string

Choose a tag to compare

@chriscombs chriscombs released this 29 Jun 09:07

Added html to attributed string

Swift 3 support, swiftier naming and improved coverage

Choose a tag to compare

@mariusc mariusc released this 14 Jan 10:41

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

Swift 2.3

Choose a tag to compare

@chriscombs chriscombs released this 20 Sep 13:16
0.2.5

Updated to swift 2.3

Initial release

Choose a tag to compare

@mariusc mariusc released this 19 Feb 12:17

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

First pre-release

First pre-release Pre-release
Pre-release

Choose a tag to compare

@mariusc mariusc released this 18 Feb 15:58

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.