SupportDocs Versions Save

Generate help centers for your iOS apps. Hosted by GitHub and always up-to-date.

1.1.1

1 year ago

Added support for iOS 16.

1.1.0

3 years ago

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

1.0.0

3 years ago

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!