From 996b054b66051030a8e4781d7eda97d1c4decb71 Mon Sep 17 00:00:00 2001 From: SHsuperCM Date: Thu, 6 Oct 2022 11:18:00 +0300 Subject: Update README.md --- README.md | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 55 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index faacf7b..03f4e36 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,56 @@ -# CITResewn -Fabric implementation of mcpatcher's cit +

+ +

-# [For more information, head to the docs!](https://citresewn.shcm.io/) +CIT Resewn is MCPatcher's CIT features re-written outside of optifine as a standalone mod for fabric. + +The main CIT Resewn mod serves as an API to add types and conditions while CIT Resewn: Defaults uses that API to provide the default types and conditions that naturally come with the CIT format. + +## Downloads +You can get CIT Resewn(bundled with Defaults) from Modrinth, Curse Forge or by compiling it from source + +                      + + +## CIT Docs +Docs for CIT Resewn's usage are available over at https://citresewn.shcm.io + +## API + +CIT Resewn is distributed for development through Modrinth's Maven repository under `cit-resewn`.
+Defaults can be added separately through the same Maven under `cit-resewn-defaults`. + +Gradle example: +```groovy +// Add the modrinth maven repository: +repositories { + .. + maven { + name = "Modrinth" + url = "https://api.modrinth.com/maven" + content { + includeGroup "maven.modrinth" + } + } +} + +dependencies { + .. + // Add the base CIT Resewn API to the project + modCompileOnly "maven.modrinth:cit-resewn:1.1.2+1.19.2" + // Add Defaults to the project + modCompileOnly "maven.modrinth:cit-resewn-defaults:1.1.2+1.19.2" +} +``` + +API usage documentation will be available soon over at [the docs](https://citresewn.shcm.io/mods/mod_api/). + +For example usage of the CIT Resewn API, take a look at how Defaults does it. + +## Contributing + +Bug fixes and feature implementations are always welcome and will usually be accepted once verified to be ok/fit in the mod. + +Translations aren't really necessary but if you PR them there's no reason they won't be accepted. + +Lastly, the docs site is also open source, PRs can be made to the [docs branch](https://github.com/SHsuperCM/CITResewn/tree/docs). -- cgit