Skip to content

Latest commit

 

History

History
43 lines (38 loc) · 1.78 KB

ReadMe.md

File metadata and controls

43 lines (38 loc) · 1.78 KB

ModLinks

This is the repository that holds information on every public mod that should be accessible via mod installers.

How to add/update a mod to ModLinks

  1. don't create a fork
  2. go to https://github.com/hk-modding/modlinks/blob/main/ModLinks.xml
  3. click the pencil at the top right corner
  4. make the changes
  5. scroll to the bottom of the github page and click the button that says propose changes
  6. do that and it should also give an option to delete that branch after the pull request got merged.

Example manifest

<Manifest>
    <Name>Test Name</Name>
    <Description>Test description</Description>
    <Version>0.0.0.0</Version>
    <Links>
        <Linux SHA256="0000000000000000000000000000000000000000000000000000000000000000"><![CDATA[https://linux.link]]></Linux>
        <Mac SHA256="0000000000000000000000000000000000000000000000000000000000000000"><![CDATA[https://mac.link]]></Mac>
        <Windows SHA256="0000000000000000000000000000000000000000000000000000000000000000"><![CDATA[https://windows.link]]></Windows>
    </Links>
    <Link SHA256="0000000000000000000000000000000000000000000000000000000000000000"><![CDATA[https://multiplatform.link]]></Link>
    <Dependencies>
        <Dependency>Another mod's name that this mod depends on</Dependency>
    </Dependencies>
    <Repository>
        <![CDATA[https://github.com/user/repo]]>
    </Repository>
    <Integrations>
        <Integration>Another mod's name, like the dependency list, but not a hard dependency, but extra stuff when it is installed alongside</Integration>
    </Integrations>
    <Tags>
        <Tag>Either of: 'Boss', 'Cosmetic', 'Expansion', 'Gameplay', 'Library', 'Utility'</Tag>
    </Tags>
    <Authors>
        <Author>An author's name. Has no specific format.</Author>
    </Authors>
</Manifest>