diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2016-11-07 16:26:31 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2016-11-07 16:26:31 -0500 |
commit | 71e2ad82a987b6296edc74faf8f451c99a39945c (patch) | |
tree | ca41c502dfbdeac36e927fc1597f654289f9e81c | |
parent | ba4237f7a3e9672bdeb31f791bba65faf338bc7c (diff) | |
download | SMAPI-71e2ad82a987b6296edc74faf8f451c99a39945c.tar.gz SMAPI-71e2ad82a987b6296edc74faf8f451c99a39945c.tar.bz2 SMAPI-71e2ad82a987b6296edc74faf8f451c99a39945c.zip |
update for 1.0 beta
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | release-notes.md | 36 | ||||
-rw-r--r-- | src/StardewModdingAPI/Constants.cs | 4 |
3 files changed, 23 insertions, 18 deletions
@@ -69,7 +69,6 @@ directory containing `src`). StardewModdingAPI StardewModdingAPI.exe StardewModdingAPI.exe.mdb - StardewModdingAPI.xml StardewModdingAPI-settings.json System.Numerics.dll steam_appid.txt diff --git a/release-notes.md b/release-notes.md index 18e2d694..0b6a40a5 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,27 +1,33 @@ # Release notes -## 1.x -* 1.0 (upcoming, [log](https://github.com/CLxS/SMAPI/compare/0.40.1.1-3...master)) +## 1.0 +See [log](https://github.com/CLxS/SMAPI/compare/0.40.1.1-3...master). + +For players: * Added support for Linux and Mac. * Added installer to automate adding & removing SMAPI. * Added background update check on launch. + * Fixed missing `steam_appid.txt` file. + * Fixed some mod UIs disappearing at a non-default zoom level for some users. + * Removed undocumented support for mods in AppData folder **(breaking change)**. + * Removed `F2` debug mode. + +For mod developers: + * Added deprecation warnings. * Added OS version to log. * Added zoom-adjusted mouse position to mouse-changed event arguments. - * Added deprecation warnings. + * Added SMAPI code documentation. * Switched to [semantic versioning](http://semver.org). - * Fixed an issue where mod UIs would disappear at non-100% zoom. - * Fixed missing `steam_appid.txt` file. - * Fixed mod versions not being displayed correctly in the log. + * Fixed mod versions not shown correctly in the log. * Fixed misspelled field in `manifest.json` schema. - * Fixed several events not correctly propagating state. - * Removed undocumented support for mods in AppData folder **(breaking change)**. - * Removed `F2` debug mode. - * Made log less verbose and more informative. - * Internal cleanup: - * Simplified compiling from source. - * Added code documentation. - * Removed obsolete and unfinished code. - * Internal cleanup & refactoring. + * Fixed some events getting wrong data. + * Simplified log output. + +For SMAPI developers: + * Simplified compiling from source. + * Formalised release process and added automated build packaging. + * Removed obsolete and unfinished code. + * Internal cleanup & refactoring. ## 0.x * 0.40.1.1 (2016-09-30, [log](https://github.com/CLxS/SMAPI/compare/0.40.0...0.40.1.1-3)) diff --git a/src/StardewModdingAPI/Constants.cs b/src/StardewModdingAPI/Constants.cs index 48304de5..e33aaf6f 100644 --- a/src/StardewModdingAPI/Constants.cs +++ b/src/StardewModdingAPI/Constants.cs @@ -23,13 +23,13 @@ namespace StardewModdingAPI ** Accessors *********/ /// <summary>SMAPI's current semantic version.</summary> - public static readonly Version Version = new Version(1, 0, 0, $"alpha-{DateTime.UtcNow.ToString("yyyyMMddHHmm")}"); + public static readonly Version Version = new Version(1, 0, 0, "beta"); /// <summary>The minimum supported version of Stardew Valley.</summary> public const string MinimumGameVersion = "1.1"; /// <summary>The GitHub repository to check for updates.</summary> - public const string GitHubRepository = "cjsu/SMAPI"; + public const string GitHubRepository = "Pathoschild/SMAPI"; /// <summary>The directory path containing Stardew Valley's app data.</summary> public static string DataPath => Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "StardewValley"); |