Skip to content

Releases: aheze/SupportDocs

Version 1.1.1

11 Sep 02:42
Compare
Choose a tag to compare

Added support for iOS 16.

Version 1.1.0

11 Dec 04:11
Compare
Choose a tag to compare

Hey everyone! The major addition this time is a search bar!

Screen Shot 2020-12-10 at 7 52 52 PM

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

21 Nov 06:28
Compare
Choose a tag to compare

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!