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);
|
Environment.SetEnvironmentVariable("SharpiiIP", ip, EnvironmentVariableTarget.Machine);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ip == "")
|
if (String.IsNullOrEmpty(ip))
|
||||||
ip = Environment.GetEnvironmentVariable("SharpiiIP", EnvironmentVariableTarget.User);
|
ip = Environment.GetEnvironmentVariable("SharpiiIP", EnvironmentVariableTarget.User);
|
||||||
if (ip == "")
|
if (String.IsNullOrEmpty(ip))
|
||||||
ip = Environment.GetEnvironmentVariable("SharpiiIP", EnvironmentVariableTarget.Machine);
|
ip = Environment.GetEnvironmentVariable("SharpiiIP", EnvironmentVariableTarget.Machine);
|
||||||
if (ip == "")
|
if (String.IsNullOrEmpty(ip))
|
||||||
{
|
{
|
||||||
Console.WriteLine("ERROR: No IP set");
|
Console.WriteLine("ERROR: No IP set");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (noip = true && Quiet.quiet > 2)
|
if (noip == true && Quiet.quiet > 2)
|
||||||
Console.WriteLine("No IP set, using {0}", ip);
|
Console.WriteLine("No IP set, using {0}", ip);
|
||||||
|
|
||||||
libWiiSharp.Protocol proto = Protocol.JODI;
|
libWiiSharp.Protocol proto = Protocol.JODI;
|
||||||
@ -279,16 +279,16 @@ namespace Sharpii
|
|||||||
ios = "0";
|
ios = "0";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ip == "")
|
if (String.IsNullOrEmpty(ip))
|
||||||
ip = Environment.GetEnvironmentVariable("SharpiiIP", EnvironmentVariableTarget.User);
|
ip = Environment.GetEnvironmentVariable("SharpiiIP", EnvironmentVariableTarget.User);
|
||||||
if (ip == "")
|
if (String.IsNullOrEmpty(ip))
|
||||||
ip = Environment.GetEnvironmentVariable("SharpiiIP", EnvironmentVariableTarget.Machine);
|
ip = Environment.GetEnvironmentVariable("SharpiiIP", EnvironmentVariableTarget.Machine);
|
||||||
if (ip == "")
|
if (String.IsNullOrEmpty(ip))
|
||||||
{
|
{
|
||||||
Console.WriteLine("ERROR: No IP set");
|
Console.WriteLine("ERROR: No IP set");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (noip = true && Quiet.quiet > 2)
|
if (noip == true && Quiet.quiet > 2)
|
||||||
Console.WriteLine("No IP set, using {0}", ip);
|
Console.WriteLine("No IP set, using {0}", ip);
|
||||||
|
|
||||||
libWiiSharp.Protocol proto = Protocol.JODI;
|
libWiiSharp.Protocol proto = Protocol.JODI;
|
||||||
@ -357,7 +357,7 @@ namespace Sharpii
|
|||||||
{
|
{
|
||||||
Console.WriteLine("");
|
Console.WriteLine("");
|
||||||
Console.WriteLine("Sharpii {0} - SendWad - A tool by person66, using libWiiSharp.dll by leathl,", Version.version);
|
Console.WriteLine("Sharpii {0} - SendWad - A tool by person66, using libWiiSharp.dll by leathl,", Version.version);
|
||||||
Console.WriteLine(" and CRAP's installer by WiiCrazy/I.R.on");
|
Console.WriteLine(" and CRAP's installer by WiiCrazy/I.R.on");
|
||||||
Console.WriteLine("");
|
Console.WriteLine("");
|
||||||
Console.WriteLine(" Usage:");
|
Console.WriteLine(" Usage:");
|
||||||
Console.WriteLine("");
|
Console.WriteLine("");
|
||||||
|
@ -238,7 +238,7 @@ namespace Sharpii
|
|||||||
{
|
{
|
||||||
Console.WriteLine("");
|
Console.WriteLine("");
|
||||||
Console.WriteLine("Sharpii {0} - IOS - A tool by person66, using libWiiSharp.dll by leathl", Version.version);
|
Console.WriteLine("Sharpii {0} - IOS - A tool by person66, using libWiiSharp.dll by leathl", Version.version);
|
||||||
Console.WriteLine(" Code based off PatchIOS by leathl");
|
Console.WriteLine(" Code based off PatchIOS by leathl");
|
||||||
Console.WriteLine("");
|
Console.WriteLine("");
|
||||||
Console.WriteLine(" Usage:");
|
Console.WriteLine(" Usage:");
|
||||||
Console.WriteLine("");
|
Console.WriteLine("");
|
||||||
|
@ -321,5 +321,5 @@ namespace Sharpii
|
|||||||
}
|
}
|
||||||
public class Version
|
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
|
An app by person66
|
||||||
libWiiSharp.dll by leathl (mod by scooby74029)
|
libWiiSharp.dll by leathl (mod by scooby74029)
|
||||||
@ -145,6 +145,9 @@ See "LICENSE.txt" for more information.
|
|||||||
/----CHANGELOG
|
/----CHANGELOG
|
||||||
/------------------------------>
|
/------------------------------>
|
||||||
|
|
||||||
|
1.7.1
|
||||||
|
- Fixed a bug that prevented Sharpii from checking for SharpiiIP
|
||||||
|
in the system variables
|
||||||
1.7
|
1.7
|
||||||
- Sharpii can now be installed for use without the exe
|
- Sharpii can now be installed for use without the exe
|
||||||
- SharpiiIP is now a system variable, not a user one.
|
- SharpiiIP is now a system variable, not a user one.
|
||||||
|
Loading…
Reference in New Issue
Block a user