trying to fix bug
This commit is contained in:
parent
cac9f1d491
commit
717ed8a6bf
3 changed files with 4 additions and 2 deletions
|
@ -71,10 +71,12 @@ namespace WeeXnes
|
||||||
Game newGame = Game.Methods.GameFromIni(new INIFile(file.FullName));
|
Game newGame = Game.Methods.GameFromIni(new INIFile(file.FullName));
|
||||||
DiscordRPCView.Data.Games.Add(newGame);
|
DiscordRPCView.Data.Games.Add(newGame);
|
||||||
Console.WriteLine(file.Name + " loaded");
|
Console.WriteLine(file.Name + " loaded");
|
||||||
|
MessageBox.Show(file.Name + " loaded");
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
Console.WriteLine(file.Name + ": " + ex.Message);
|
Console.WriteLine(file.Name + ": " + ex.Message);
|
||||||
|
MessageBox.Show(file.Name + ": " + ex.Message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Functions.CheckFolderAndCreate(Global.AppDataPathKEY);
|
Functions.CheckFolderAndCreate(Global.AppDataPathKEY);
|
||||||
|
|
|
@ -6,7 +6,7 @@ namespace WeeXnes.Core
|
||||||
{
|
{
|
||||||
public class Information
|
public class Information
|
||||||
{
|
{
|
||||||
public const string Version = "4.0.9";
|
public const string Version = "4.1.0";
|
||||||
public const string EncryptionHash = "8zf5#RdyQ]$4x4_";
|
public const string EncryptionHash = "8zf5#RdyQ]$4x4_";
|
||||||
public const string ApiUrl = "https://api.github.com/repos/weexnes/weexnessuite/releases/latest";
|
public const string ApiUrl = "https://api.github.com/repos/weexnes/weexnessuite/releases/latest";
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
<Version>4.0.9</Version>
|
<Version>4.1.0</Version>
|
||||||
<ProjectGuid>{4B33CEE7-C74D-43B9-B99A-8B273D5195BC}</ProjectGuid>
|
<ProjectGuid>{4B33CEE7-C74D-43B9-B99A-8B273D5195BC}</ProjectGuid>
|
||||||
<OutputType>WinExe</OutputType>
|
<OutputType>WinExe</OutputType>
|
||||||
<RootNamespace>WeeXnes</RootNamespace>
|
<RootNamespace>WeeXnes</RootNamespace>
|
||||||
|
|
Loading…
Add table
Reference in a new issue