mirror of
https://github.com/Nathanwoodburn/FireWallet.git
synced 2025-12-06 08:33:00 +11:00
Compare commits
4 Commits
hip02remot
...
v3.2
| Author | SHA1 | Date | |
|---|---|---|---|
|
429cf0d67b
|
|||
|
38838096d6
|
|||
|
fae4bff32b
|
|||
|
df8c675588
|
@@ -12,7 +12,7 @@
|
||||
<PackageIcon>HSDBatcher.png</PackageIcon>
|
||||
<RepositoryUrl>https://github.com/Nathanwoodburn/FireWallet</RepositoryUrl>
|
||||
<RepositoryType>git</RepositoryType>
|
||||
<Version>3.1</Version>
|
||||
<Version>3.2</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
@@ -1355,6 +1355,13 @@ namespace FireWallet
|
||||
if (UserSettings.ContainsKey("hip-02-port"))
|
||||
{
|
||||
port = int.Parse(UserSettings["hip-02-port"]);
|
||||
} else if (!HSD)
|
||||
{
|
||||
string bobPath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\Bob\\hsd_data";
|
||||
if (Directory.Exists(bobPath))
|
||||
{
|
||||
port = 9892;
|
||||
}
|
||||
}
|
||||
|
||||
NameServer nameServer = new NameServer(IPAddress.Parse(ip), port);
|
||||
|
||||
@@ -224,15 +224,15 @@
|
||||
{
|
||||
"Name" = "8:Microsoft Visual Studio"
|
||||
"ProductName" = "8:FireWallet"
|
||||
"ProductCode" = "8:{460D8F86-4FE9-4547-9B17-7E01ACBF9194}"
|
||||
"PackageCode" = "8:{A6678F97-9CE8-4005-82AC-AB2D09A9DA27}"
|
||||
"ProductCode" = "8:{C4D699E7-B668-48CD-AC78-920E852B98D9}"
|
||||
"PackageCode" = "8:{38D2B4D2-E8BA-43AF-8475-F0E70AD733FE}"
|
||||
"UpgradeCode" = "8:{0C86F725-6B01-4173-AA05-3F0EDF481362}"
|
||||
"AspNetVersion" = "8:"
|
||||
"RestartWWWService" = "11:FALSE"
|
||||
"RemovePreviousVersions" = "11:TRUE"
|
||||
"DetectNewerInstalledVersion" = "11:TRUE"
|
||||
"InstallAllUsers" = "11:FALSE"
|
||||
"ProductVersion" = "8:3.1"
|
||||
"ProductVersion" = "8:3.2"
|
||||
"Manufacturer" = "8:Nathan.Woodburn/"
|
||||
"ARPHELPTELEPHONE" = "8:"
|
||||
"ARPHELPLINK" = "8:https://l.woodburn.au/discord"
|
||||
|
||||
@@ -141,6 +141,12 @@ They are stored in `%appdata%\FireWallet\` (`C:\Users\{username}\AppData\Roaming
|
||||
|
||||
## settings.txt
|
||||
This file stores the user settings for the application.
|
||||
If you want to change the default HIP-02 resolver you can add these settings
|
||||
```yaml
|
||||
hip-02-ip: 127.0.0.1
|
||||
hip-02-port: 5350
|
||||
```
|
||||
|
||||
|
||||
## node.txt
|
||||
This file stores the node (HSD/Bob connection) settings.
|
||||
|
||||
Reference in New Issue
Block a user