Skip to content

Commit

Permalink
V1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Elaviers committed Apr 29, 2019
1 parent 0c2cced commit 98a5c8d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion GCManager/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace GCManager
{
public partial class App : Application
{
public static readonly string VERSION = "1.2.0";
public static readonly string VERSION = "1.3.0";

public MainWindow window = null;

Expand Down
4 changes: 3 additions & 1 deletion GCManager/ProfileManager.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ private void RecreateLists()

foreach (string file in profiles)
{
profileNameList.Add(new DirectoryInfo(file).Name);
profileNameList.Add(Path.GetFileNameWithoutExtension(file));

profileList.Add(JsonConvert.DeserializeObject<Profile>(File.ReadAllText(file)));
}
Expand Down Expand Up @@ -144,8 +144,10 @@ private void SaveProfile_Click(object sender, RoutedEventArgs e)
NoProfileError();
else
{
_currentProfile.entries.Clear();
AddCurrentInstalledModsToProfile(_currentProfile);
_currentProfile.Save();
RecreateLists();
}
}

Expand Down
4 changes: 2 additions & 2 deletions GCManager/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2.0.0")]
[assembly: AssemblyFileVersion("1.2.0.0")]
[assembly: AssemblyVersion("1.3.0.0")]
[assembly: AssemblyFileVersion("1.3.0.0")]
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
# GCManager
*A Risk of Rain 2 Mod manager featuring:*

- ROR2MM uri support (you can install mods using the thunderstore's install buttons now!)
- ROR2MM uri support (you can install mods using thunderstore's install buttons now!)

- Mod Operations
- Mod operations
- Installation
- Uninstallation
- Automatic updating
- Automatic dependency installation
- Automatic dependency installation

- Somewhat ugly profile manager
- Save all current installed mod info in a profile
- Clipboard import/export


![GCManager](https://i.imgur.com/7ofdi52.png)
![GCManager](https://i.imgur.com/jIheHD9.png)

0 comments on commit 98a5c8d

Please sign in to comment.