Releases: aheze/SupportDocs
Releases · aheze/SupportDocs
Version 1.1.1
Version 1.1.0
Hey everyone! The major addition this time is a search bar!
You can customize its properties via SupportOptions
like usual.
let options = SupportOptions(
searchBar: .init(
placeholder: "Type here to search!", /// placeholder
placeholderColor: UIColor.label.withAlphaComponent(0.75), /// color of the placeholder
textColor: UIColor.label, /// text color
tintColor: UIColor.blue, /// color of cursor and cancel button
backgroundColor: UIColor.secondarySystemBackground.withAlphaComponent(0.3), /// color of the search bar's background
clearButtonMode: .whileEditing /// when the clear button appears
)
)
But besides that, here's some other minor edits:
- Apply the navigation bar styles with the same code for both iOS 13 and 14
- Smoother fade animation for the list once the JSON loads
Version 1.0.0
After 2 months of programming and writing documentation, SupportDocs is complete! This version lets you...
On GitHub:
- Add and edit documents
- Tag documents
- Automatically compile them into JSON
- Customize the look of rendered documents
- Reorder documents
- Show a TOC of all your documents
In your app:
- Display a help center (that is what SupportDocs is all about!)
- Display specific categories consisting of documents with tags
- Customize just about everything
- Includes support for navigating links (clicking a link pushes the Navigation View)
This is SupportDocs' first release, so there might be some bugs. If you find one, raise an issue. Contributions are welcome!