Skip to content

Commit

Permalink
合并开发分支进度 (汉化v2.3)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistzzt committed Mar 7, 2017
2 parents f6dd111 + b3a2b24 commit 6871d92
Show file tree
Hide file tree
Showing 16 changed files with 911 additions and 299 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
This is the rolling changelog for TShock for Terraria. Use past tense when adding new entries; sign your name off when you add or change something. This should primarily be things like user changes, not necessarily codebase changes unless it's really relevant or large.

## Upcoming Changes
* Added evil type option during world creation (@mistzzt)
* Bans can be sorted. TShock's default sorting will retrieve bans sorted from newest to oldest based on the date the ban was added (@WhiteXZ)

## TShock 4.3.22
* Compatibility with Terraria 1.3.4.4
Expand All @@ -14,8 +16,11 @@ This is the rolling changelog for TShock for Terraria. Use past tense when addin
* Fixed server crashes caused by client disconnections when attempting to read closed sockets (@Enerdy)
* Added some code to make trapdoors work better (@DogooFalchion)
* AllowCutTilesAndBreakables config option now correctly allows flowers/vines/herbs to be cut in regions without breaking walls (@WhiteXZ)
* REST: `/status` has been re-added. It will now always point to `/v2/server/status` and includes an `upgrade` field describing the newest status route (@WhiteXZ)
* REST: `/v3/players/read` now includes a `muted` field (@WhiteXZ)
* REST: Token creation is now more secure (Thanks to @Plazmaz for reporting the issue!)
* REST: Deprecated the RestRequestEvent. If you use this event, please let us know.
* REST: ALL endpoints now have a base route (eg you can use `/server/motd` instead of `/v3/server/motd`). These base routes will never change, but will provide an `upgrade` field describing any newer routes
* REST: Added `/v3/world/autosave` and `/v3/world/bloodmoon` which use GET parameter style arguments. I.e., `/v3/world/autosave?state=[true|false]` & `/v3/world/bloodmoon?state=[true|false]`. The state argument is optional
* Fixed fishing quests not saving/loading correctly when login before join, UUID login, and SSC were enabled together (@DogooFalchion)

## TShock 4.3.21
Expand Down
2 changes: 1 addition & 1 deletion TShockAPI/Commands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1882,7 +1882,7 @@ private static void CheckUpdates(CommandArgs args)
args.Player.SendInfoMessage("尝试检查更新...");
try
{
TShock.UpdateManager.UpdateCheck(null);
TShock.UpdateManager.UpdateCheckAsync(null);
}
catch (Exception)
{
Expand Down
2 changes: 2 additions & 0 deletions TShockAPI/ConfigFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -557,6 +557,8 @@ public class ConfigFile
[JsonProperty("REST统计减少间隔分钟")]
public int RESTRequestBucketDecreaseIntervalMinutes = 1;

/// <summary>RESTLimitOnlyFailedLoginRequests - Whether or not to limit only the max failed login requests, or all login requests.</summary>
[Obsolete("This value is no longer used and will be removed next version.")]
[Description("Whether we should limit only the max failed login requests, or all login requests")]
[JsonProperty("REST只限制失败登入")]
public bool RESTLimitOnlyFailedLoginRequests = true;
Expand Down
Loading

0 comments on commit 6871d92

Please sign in to comment.