update for 1.15 release

This commit is contained in:
Jesse Plamondon-Willard 2017-07-07 17:20:09 -04:00
parent f1fabd410b
commit d426d72498
4 changed files with 6 additions and 6 deletions

View File

@ -20,12 +20,12 @@ For mod developers:
See [log](https://github.com/Pathoschild/SMAPI/compare/1.14...1.15).
For players:
* Cleaned up SMAPI console a bit.
* Revamped TrainerMod's item commands:
* `player_add` is a new command to add any item to your inventory (including tools, weapons, equipment, craftables, wallpaper, etc). This replaces the former `player_additem`, `player_addring`, and `player_addweapon`.
* `list_items` now shows all items in the game. You can search by item type like `list_items weapon`, or search by item name like `list_items galaxy sword`.
* `list_items` now also matches translated item names when playing in another language.
* `list_item_types` is a new command to see a list of item types.
* Cleaned up SMAPI console a bit.
* Fixed unhelpful error when a `config.json` is invalid.
* Fixed rare crash when window loses focus for a few players (further to fix in 1.14).
* Fixed invalid `ObjectInformation.xnb` causing a flood of warnings; SMAPI now shows one error instead.

View File

@ -2,5 +2,5 @@
using System.Runtime.InteropServices;
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("1.14.1.0")]
[assembly: AssemblyFileVersion("1.14.1.0")]
[assembly: AssemblyVersion("1.15.0.0")]
[assembly: AssemblyFileVersion("1.15.0.0")]

View File

@ -37,7 +37,7 @@ namespace StardewModdingAPI
#if SMAPI_2_0
new SemanticVersion(2, 0, 0, $"alpha-{DateTime.UtcNow:yyyyMMddHHmm}");
#else
new SemanticVersion(1, 15, 0, "prerelease.1"); // alpha-{DateTime.UtcNow:yyyyMMddHHmm}
new SemanticVersion(1, 15, 0); // alpha-{DateTime.UtcNow:yyyyMMddHHmm}
#endif
/// <summary>The minimum supported version of Stardew Valley.</summary>

View File

@ -3,8 +3,8 @@
"Author": "SMAPI",
"Version": {
"MajorVersion": 1,
"MinorVersion": 14,
"PatchVersion": 1,
"MinorVersion": 15,
"PatchVersion": 0,
"Build": null
},
"Description": "Adds SMAPI console commands that let you manipulate the game.",