forked from QORT/qortal
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #242 from crowetic/master
Bump version to 4.6.6 and other changes
- Loading branch information
Showing
7 changed files
with
898 additions
and
950 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
{ | ||
"apiDocumentationEnabled": true | ||
"apiDocumentationEnabled": true, | ||
"apiWhitelistEnabled": false | ||
} |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -213,7 +213,7 @@ public class Settings { | |
public long recoveryModeTimeout = 9999999999999L; | ||
|
||
/** Minimum peer version number required in order to sync with them */ | ||
private String minPeerVersion = "4.6.3"; | ||
private String minPeerVersion = "4.6.5"; | ||
/** Whether to allow connections with peers below minPeerVersion | ||
* If true, we won't sync with them but they can still sync with us, and will show in the peers list | ||
* If false, sync will be blocked both ways, and they will not appear in the peers list */ | ||
|
@@ -222,7 +222,7 @@ public class Settings { | |
/** Minimum time (in seconds) that we should attempt to remain connected to a peer for */ | ||
private int minPeerConnectionTime = 2 * 60 * 60; // seconds | ||
/** Maximum time (in seconds) that we should attempt to remain connected to a peer for */ | ||
private int maxPeerConnectionTime = 4 * 60 * 60; // seconds | ||
private int maxPeerConnectionTime = 6 * 60 * 60; // seconds | ||
/** Maximum time (in seconds) that a peer should remain connected when requesting QDN data */ | ||
private int maxDataPeerConnectionTime = 30 * 60; // seconds | ||
|
||
|
@@ -281,7 +281,10 @@ public class Settings { | |
// Auto-update sources | ||
private String[] autoUpdateRepos = new String[] { | ||
"https://github.com/Qortal/qortal/raw/%s/qortal.update", | ||
"https://[email protected]/Qortal/qortal/%s/qortal.update" | ||
"https://[email protected]/Qortal/qortal/%s/qortal.update", | ||
"https://qortal.link/Auto-Update/%s/qortal.update", | ||
"https://qortal.name/Auto-Update/%s/qortal.update", | ||
"https://update.qortal.org/Auto-Update/%s/qortal.update" | ||
}; | ||
|
||
// Lists | ||
|