mirror of
https://github.com/mogzol/sharpii.git
synced 2024-11-10 12:45:07 +01:00
Updated to 1.7.1 - Fixed a bug that prevented Sharpii from checking for SharpiiIP in the system variables
This commit is contained in:
parent
fc6fc5571c
commit
a4f73b4ea2
@ -104,16 +104,16 @@ namespace Sharpii
|
||||
Environment.SetEnvironmentVariable("SharpiiIP", ip, EnvironmentVariableTarget.Machine);
|
||||
}
|
||||
|
||||
if (ip == "")
|
||||
if (String.IsNullOrEmpty(ip))
|
||||
ip = Environment.GetEnvironmentVariable("SharpiiIP", EnvironmentVariableTarget.User);
|
||||
if (ip == "")
|
||||
if (String.IsNullOrEmpty(ip))
|
||||
ip = Environment.GetEnvironmentVariable("SharpiiIP", EnvironmentVariableTarget.Machine);
|
||||
if (ip == "")
|
||||
if (String.IsNullOrEmpty(ip))
|
||||
{
|
||||
Console.WriteLine("ERROR: No IP set");
|
||||
return;
|
||||
}
|
||||
if (noip = true && Quiet.quiet > 2)
|
||||
if (noip == true && Quiet.quiet > 2)
|
||||
Console.WriteLine("No IP set, using {0}", ip);
|
||||
|
||||
libWiiSharp.Protocol proto = Protocol.JODI;
|
||||
@ -279,16 +279,16 @@ namespace Sharpii
|
||||
ios = "0";
|
||||
}
|
||||
|
||||
if (ip == "")
|
||||
if (String.IsNullOrEmpty(ip))
|
||||
ip = Environment.GetEnvironmentVariable("SharpiiIP", EnvironmentVariableTarget.User);
|
||||
if (ip == "")
|
||||
if (String.IsNullOrEmpty(ip))
|
||||
ip = Environment.GetEnvironmentVariable("SharpiiIP", EnvironmentVariableTarget.Machine);
|
||||
if (ip == "")
|
||||
if (String.IsNullOrEmpty(ip))
|
||||
{
|
||||
Console.WriteLine("ERROR: No IP set");
|
||||
return;
|
||||
}
|
||||
if (noip = true && Quiet.quiet > 2)
|
||||
if (noip == true && Quiet.quiet > 2)
|
||||
Console.WriteLine("No IP set, using {0}", ip);
|
||||
|
||||
libWiiSharp.Protocol proto = Protocol.JODI;
|
||||
|
@ -321,5 +321,5 @@ namespace Sharpii
|
||||
}
|
||||
public class Version
|
||||
{
|
||||
public static string version = "1.7";
|
||||
public static string version = "1.7.1";
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
/------------------------------------------------------------------------------>
|
||||
Sharpii 1.7
|
||||
Sharpii 1.7.1
|
||||
<---------------------------------------------------------------->
|
||||
An app by person66
|
||||
libWiiSharp.dll by leathl (mod by scooby74029)
|
||||
@ -145,6 +145,9 @@ See "LICENSE.txt" for more information.
|
||||
/----CHANGELOG
|
||||
/------------------------------>
|
||||
|
||||
1.7.1
|
||||
- Fixed a bug that prevented Sharpii from checking for SharpiiIP
|
||||
in the system variables
|
||||
1.7
|
||||
- Sharpii can now be installed for use without the exe
|
||||
- SharpiiIP is now a system variable, not a user one.
|
||||
|
Loading…
Reference in New Issue
Block a user