You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/release-notes.md
+17-2Lines changed: 17 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,25 @@
1
1
← [README](README.md)
2
2
3
3
# Release notes
4
+
## 4.0.7
5
+
Released 18 April 2024 for Stardew Valley 1.6.4 or later.
6
+
7
+
* For players:
8
+
* Updated for Stardew Valley 1.6.4. **This drops compatibility with Stardew Valley 1.6.0–1.6.3.**
9
+
* The installer now lists detected game folders with an incompatible version to simplify troubleshooting.
10
+
* When the installer asks for a game folder path, entering an incorrect path to a file inside it will now still select the folder.
11
+
* Fixed installer not detecting 1.6 compatibility branch.
12
+
13
+
* For the web UI:
14
+
* Updated `manifest.json` JSON schema for the new `MinimumGameVersion` field (thanks to KhloeLeclair!).
15
+
16
+
* For external tool authors:
17
+
* In the SMAPI toolkit, added a new `GetGameFoldersIncludingInvalid()` method to get all detected game folders and their validity type.
18
+
4
19
## 4.0.6
5
20
Released 07 April 2024 for Stardew Valley 1.6.0 or later.
6
21
7
-
* For player:
22
+
* For players:
8
23
* The SMAPI log file now includes installed mod IDs, to help with troubleshooting (thanks to DecidedlyHuman!).
9
24
10
25
* For mod authors:
@@ -14,7 +29,7 @@ Released 07 April 2024 for Stardew Valley 1.6.0 or later.
14
29
Released 06 April 2024 for Stardew Valley 1.6.0 or later.
15
30
16
31
* For players:
17
-
* The installer now deletes obsolete files from very old SMAPI versions again.
32
+
* The installer now deletes obsolete files from very old SMAPI versions again. (This was removed in SMAPI 4.0, but many players still had very old versions.)
18
33
* The installer now deletes Error Handler automatically if it's at the default path.
19
34
* Fixed mods sometimes not applying logic inside new buildings.
/// <summary>The folder contains Stardew Valley 1.5.4 or earlier. This version uses XNA Framework and 32-bit .NET Framework 4.5.2 on Windows and Mono on Linux/macOS, and isn't compatible with current versions of SMAPI.</summary>
13
-
Legacy154OrEarlier,
12
+
/// <summary>The folder contains Stardew Valley 1.5.6 or earlier, which isn't compatible with current versions of SMAPI.</summary>
13
+
LegacyVersion,
14
14
15
-
/// <summary>The folder contains Stardew Valley from the game's legacy compatibility branch, which backports newer changes to the <see cref="Legacy154OrEarlier"/> format.</summary>
15
+
/// <summary>The folder contains Stardew Valley from the game's legacy compatibility branch, which backports newer changes to the <see cref="LegacyVersion"/> format.</summary>
16
16
LegacyCompatibilityBranch,
17
17
18
18
/// <summary>The folder seems to contain Stardew Valley files, but they failed to load for unknown reasons (e.g. corrupted executable).</summary>
0 commit comments