Update readme and release notes
This commit is contained in:
parent
f9d316aeb1
commit
e2d0307932
|
@ -57,6 +57,12 @@ pod DSSwiftKit
|
|||
|
||||
|
||||
|
||||
## Supported Platforms
|
||||
|
||||
SwiftKit supports `iOS 13`, `macOS 10.13`, `tvOS 13` and `watchOS 6`.
|
||||
|
||||
|
||||
|
||||
## Documentation
|
||||
|
||||
The SwiftKit documentation contains extensive information, code examples etc. and makes it easy to overview the various parts of the library.
|
||||
|
@ -99,6 +105,7 @@ SwiftKit is available under the MIT license. See [LICENSE][License] file for mor
|
|||
[Email]: mailto:daniel.saidi@gmail.com
|
||||
[Twitter]: http://www.twitter.com/danielsaidi
|
||||
[Website]: http://www.danielsaidi.com
|
||||
[Sponsors]: https://github.com/sponsors/danielsaidi
|
||||
|
||||
[Documentation]: https://github.com/danielsaidi/Documentation/blob/main/Docs/SwiftKit.doccarchive.zip?raw=true
|
||||
[License]: https://github.com/danielsaidi/SwiftKit/blob/master/LICENSE
|
||||
|
|
|
@ -5,8 +5,15 @@
|
|||
|
||||
### ✨ New features
|
||||
|
||||
* `FileManager+UniqueFileName` contains functionality for generating a unique file name.
|
||||
* `String+Capitalize` contains functionality for capitalizing the first char in a String.
|
||||
* `String+Characters` contains single-char characters like `newLine` and `tab`.
|
||||
* `String+Subscript` contains functionality for accessing chars in a String.
|
||||
* `String+Paragraph` contains functionality for finding paragraphs in the text.
|
||||
* `String+Subscript` contains functionality for accessing chars in a String.
|
||||
|
||||
### 💡 Behavior changes
|
||||
|
||||
* `String+UrlEncode` now handles + as well.
|
||||
|
||||
|
||||
## 1.0
|
||||
|
|
|
@ -3,13 +3,31 @@
|
|||
SwiftKit adds extra functionality to the Swift framework, like extensions to native types, utilites, services etc.
|
||||
|
||||
|
||||
|
||||
## Overview
|
||||
|
||||

|
||||
|
||||
SwiftKit is divided into the sections found in the Topics section below.
|
||||
|
||||
You can explore the sections in this documentation or in the demo app.
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
The best way to add SwiftKit to your app is to use the Swift Package Manager.
|
||||
|
||||
```
|
||||
https://github.com/danielsaidi/SwiftKit.git
|
||||
```
|
||||
|
||||
You can add SwiftKit to any target that needs it.
|
||||
|
||||
|
||||
|
||||
## Supported Platforms
|
||||
|
||||
SwiftKit supports `iOS 13`, `macOS 10.13`, `tvOS 13` and `watchOS 6`.
|
||||
|
||||
|
||||
|
||||
## Topics
|
||||
|
|
Loading…
Reference in New Issue