Skip to content

Commit

Permalink
Update Mod Loader Documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Sewer56 committed Aug 13, 2019
1 parent d6eaeb4 commit 6ff5a59
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
24 changes: 23 additions & 1 deletion Docs/UpdateSupport.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
</div>

# Table of Contents
- [Supported Archive Formats](#supported-archive-formats)
- [Existing Services](#existing-services)
- [Reloaded II Repository](#reloaded-ii-repository)
- [Github](#github)
- [Determining Version](#determining-version)
- [User Configuration](#user-configuration)
Expand All @@ -24,6 +24,28 @@ See: [SharpCompress Supported Format Table](https://github.com/adamhathcock/shar

# Existing Services

### Reloaded II Repository

This is a self hosted official service for distributing Reloaded-II mods. When any dependencies of a given mod are missing, this is also the repository used for resolving dependencies.

This repository is open to everyone: Registration free!

To upload: first generate a NuGet package for your mod from inside the launcher using the `Convert to NuGet format` button.

![Example](https://i.imgur.com/V7uq4Jl.png)

Once conversion completes, Reloaded will open a folder containing the newly generated `.nupkg` file.

To upload this file, use the `dotnet` commandline utility that ships with the .NET Core SDK (if you are using Reloaded-II you'll probably have this).

```
dotnet nuget push -s http://167.71.128.50:5000/v3/index.json -k YOUR-UNIQUE-KEY package.nupkg
```

Before you upload however, you **must** read the [Upload Page](http://167.71.128.50:5000/upload) for some additional important information.

Please be respectful and also follow the [Site Rules](http://167.71.128.50:5000/home).

### Github

Support for mod updates from Github Releases can be added by copying the `ReloadedGithubUpdater.json` file from the Launcher's `Template` folder the to mod loader folder.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

## Reloaded: For Modders
- [Getting Started: Modifications](./Docs/GettingStartedMods.md)
- [Getting Started: Update Support](./Docs/UpdateSupport.md)
- [Publishing Your Mods](./Docs/UpdateSupport.md)

## Reloaded: For Programmers
- [Getting Started: Developer Mod Guide](./Docs/DeveloperModGuide.md)
Expand Down

0 comments on commit 6ff5a59

Please sign in to comment.