Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Commit

Permalink
licensing links within loader + readme buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
atenfyr committed Apr 25, 2021
1 parent 728cdd7 commit 0ed474f
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 13 deletions.
44 changes: 42 additions & 2 deletions AboutPopup.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 11 additions & 7 deletions AboutPopup.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;
using System.Windows.Forms;

namespace AstroModLoader
Expand All @@ -21,5 +15,15 @@ private void closeButton_Click(object sender, EventArgs e)
{
this.Close();
}

private void licenseButton_Click(object sender, EventArgs e)
{
Process.Start("https://github.com/AstroTechies/AstroModLoader/blob/master/LICENSE.md");
}

private void thirdPartyButton_Click(object sender, EventArgs e)
{
Process.Start("https://github.com/AstroTechies/AstroModLoader/blob/master/NOTICE.md");
}
}
}
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
[![Discord](https://img.shields.io/discord/774729322674126858.svg?style=flat-square)](https://discord.gg/bBqdVYxu4k)
[![Release](https://img.shields.io/github/v/release/AstroTechies/AstroModLoader.svg?style=flat-square)](https://github.com/AstroTechies/AstroModLoader/releases/latest)
[![Downloads](https://img.shields.io/github/downloads/AstroTechies/AstroModLoader/total.svg?style=flat-square)](https://github.com/AstroTechies/AstroModLoader/releases)
[![Stars](https://img.shields.io/github/stars/AstroTechies/AstroModLoader.svg?style=flat-square)](https://github.com/AstroTechies/AstroModLoader/stargazers)
[![Issues](https://img.shields.io/github/issues/AstroTechies/AstroModLoader.svg?style=flat-square)](https://github.com/AstroTechies/AstroModLoader/issues)
[![License](https://img.shields.io/github/license/AstroTechies/AstroModLoader.svg?style=flat-square)](https://github.com/AstroTechies/AstroModLoader/blob/master/LICENSE.md)

<p align="center">
<h3 align="center">AstroModLoader</h3>
</p>
Expand All @@ -20,21 +27,20 @@ AstroModLoader includes the following features and more:
## Usage
To run a local copy of AstroModLoader, visit the [Releases tab](https://github.com/AstroTechies/AstroModLoader/releases) to download the executable, or clone the repository and build AstroModLoader yourself within Visual Studio.

If you encounter any problems with AstroModLoader or you would like to learn more about Astroneer modding in general, feel free to join the Astroneer Modding Discord community: https://discord.gg/bBqdVYxu4k

### Mod Installation
To install mods, drag and drop the .zip or the .pak file of your mod onto the AstroModLoader window while it is running.

Alternatively, on Steam, you can also manually add mods for use with AstroModLoader by placing them into the `%localappdata%\Astro\Saved\Mods` directory.
On the Windows Store, you can place them into the `%localappdata%\Packages\SystemEraSoftworks.29415440E1269_ftk5pbg2rayv2\LocalState\Astro\Saved\Mods` directory.

Feel free to join the Astroneer Modding Discord community to learn more about using or creating Astroneer mods: https://discord.gg/bBqdVYxu4k

### Usage Notes
AstroModLoader features a fully-functional set of hotkeys to fully control your mods list. Below is a list of keyboard commands to manipulate the list of mods:
* DEL deletes all versions of the currently selected mod.
* ALT+DEL deletes all versions of the currently selected mod except for the newest from disk.
* SHIFT+UP and SHIFT+DOWN adjust the position of the currently selected mod. Mods at the top of the list (low priority) are loaded by the game before mods at the bottom of the list (high priority).

[//]: # (* ESC de-selects the current row in the mod list.)
* ESC de-selects the current row in the mod list.

Additionally, the following keyboard commands can be used within the profile selector:
* DEL deletes the current profile.
Expand Down
1 change: 1 addition & 0 deletions next_patch_notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Added an "About" button and window.
* Changed the help text to always appear below the data grid view instead of only when there are no mods installed.
* Changed the appearance of read-only check boxes to be easier to understand.
* Changed the server sync menu to display which mods in particular fail to sync, if any.
* Removed the infamous "the mod loader is currently fetching auto-update information" error message.
* Fixed a bug in which priorities would not properly be loaded when switching platforms.
* Fixed a bug in which the TAB key would not switch between buttons in the proper order in some windows.

0 comments on commit 0ed474f

Please sign in to comment.