Skip to content

Commit

Permalink
readme, repo rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Rynchodon committed Oct 25, 2016
1 parent 51a8f1b commit 172ab9e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
6 changes: 3 additions & 3 deletions Injector/GitHubClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class GitHubClient

public static void CreateRelease(string userAgent, string oAuthToken, Release release, params string[] assetsPaths)
{
HttpWebRequest request = WebRequest.CreateHttp(@"https://api.github.com/repos/Rynchodon/Autopilot/releases");
HttpWebRequest request = WebRequest.CreateHttp(@"https://api.github.com/repos/Rynchodon/ARMS/releases");
request.UserAgent = userAgent;
request.Method = "POST";
request.Headers.Add("Authorization", "token " + oAuthToken);
Expand All @@ -25,7 +25,7 @@ public static void CreateRelease(string userAgent, string oAuthToken, Release re
{
string fileName = Path.GetFileName(asset);
Console.WriteLine("Posting asset: " + fileName);
request = WebRequest.CreateHttp(@"https://uploads.github.com/repos/Rynchodon/Autopilot/releases/" + release.id + "/assets?name=" + fileName);
request = WebRequest.CreateHttp(@"https://uploads.github.com/repos/Rynchodon/ARMS/releases/" + release.id + "/assets?name=" + fileName);
request.UserAgent = userAgent;
request.Method = "POST";
request.ContentType = "application/dll";
Expand All @@ -41,7 +41,7 @@ public static void CreateRelease(string userAgent, string oAuthToken, Release re

public static Release[] GetReleases(string userAgent)
{
HttpWebRequest request = WebRequest.CreateHttp(@"https://api.github.com/repos/Rynchodon/Autopilot/releases");
HttpWebRequest request = WebRequest.CreateHttp(@"https://api.github.com/repos/Rynchodon/ARMS/releases");
request.UserAgent = userAgent;
WebResponse response;
response = request.GetResponse();
Expand Down
12 changes: 5 additions & 7 deletions Readme.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
Modifies the whitelist of Space Engineers while it is running to allow more types of mods. Other than creating a log file, ExtendWhitelist will not modify any files on your hard drive.

Mods used with ExtendWhitelist might harm your computer. When running ExtendWhitelist, only use mods that you trust.
Downloads the latest ARMS scripts and loads them into Space Engineers. The scripts will run only alongside the models, which are distributed via steam.

Usage
=====
Unpack to ...\SpaceEngineers\Bin64, run ExtendWhitelist.exe.
If the game is not running, ExtendWhitelist will start it. If the game is running, the whitelist of the running game will be updated. You will need to reload any running world.
Unpack to ...\SpaceEngineers\Bin64, run LoadARMS.exe.
If the game is not running, LoadARMS will start it. If the game is running, ARMS will be loaded into the running game. You will need to reload any running world.

Dedicated Server
================
Unpack to ...\SpaceEngineers\DedicatedServer64, run ExtendWhitelist.exe.
If the dedicated server is not running, ExtendWhitelist will start the configurator. If the configurator is already running, ExtendWhitelist will wait for the server to start. If the dedicated server is running, ExtendWhitelist will modify the whitelist.
Unpack to ...\SpaceEngineers\DedicatedServer64, run LoadARMS.exe.
If the dedicated server is not running, LoadARMS will start the configurator. If the configurator is already running, LoadARMS will wait for the server to start. If the dedicated server is running, LoadARMS will load ARMS into the server.

0 comments on commit 172ab9e

Please sign in to comment.