Browse Source

Update version and reword a message

tags/v1.3.0
NorbiPeti 3 years ago
parent
commit
1f413eebda
2 changed files with 5 additions and 5 deletions
  1. +1
    -3
      GCMM/GCMM.csproj
  2. +4
    -2
      GCMM/MainModInstaller.cs

+ 1
- 3
GCMM/GCMM.csproj View File

@@ -6,9 +6,7 @@
<UseWindowsForms>true</UseWindowsForms>
<SignAssembly>false</SignAssembly>
<ApplicationIcon>favicon.ico</ApplicationIcon>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<FileVersion>1.2.0.0</FileVersion>
<Version>1.2.0</Version>
<Version>1.3.0</Version>
<Authors>NorbiPeti</Authors>
<Company>ExMods</Company>
<Description>A mod manager for Gamecraft. It automatically downloads and runs GCIPA and allows the user to install mods.</Description>


+ 4
- 2
GCMM/MainModInstaller.cs View File

@@ -160,8 +160,10 @@ namespace GCMM
var gcmapi = mods["GamecraftModdingAPI"];
if (!gcmapi.Installed || gcmapi.Updatable)
{
if (MessageBox.Show($"GamecraftModdingAPI will be {(gcmapi.Installed ? "updated" : "installed")} as most mods need it to work. You can uninstall it if you're sure you don't need it.", "API needed", MessageBoxButtons.OKCancel)
== DialogResult.OK)
if (MessageBox.Show(gcmapi.Installed ?
"GamecraftModdingAPI will be updated as there's a new version available. It's needed for most mods to function."
: "GamecraftModdingAPI will be installed as most mods need it to work. You can uninstall it if you're sure you don't need it.", "API needed",
MessageBoxButtons.OKCancel) == DialogResult.OK)
await InstallMod(gcmapi);
}
}


Loading…
Cancel
Save