Skip to content

Commit

Permalink
Merge branch 'develop' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
Pathoschild committed Apr 23, 2019
2 parents 013255d + 98f58c3 commit e22a542
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 8 deletions.
4 changes: 2 additions & 2 deletions build/GlobalAssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System.Reflection;

[assembly: AssemblyProduct("SMAPI")]
[assembly: AssemblyVersion("2.11.1")]
[assembly: AssemblyFileVersion("2.11.1")]
[assembly: AssemblyVersion("2.11.2")]
[assembly: AssemblyFileVersion("2.11.2")]
7 changes: 7 additions & 0 deletions docs/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# Release notes
## 2.11.2
Released 22 April 2019 for Stardew Valley 1.3.36.

* For players:
* Fixed error when a custom map references certain vanilla tilesheets on MacOS.
* Fixed compatibility with Arch Linux.

## 2.11.1
Released 17 March 2019 for Stardew Valley 1.3.36.

Expand Down
2 changes: 2 additions & 0 deletions src/SMAPI.Installer/unix-launcher.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ else
konsole -p Environment=TERM=xterm -e "$LAUNCHER"
elif $COMMAND terminal 2>/dev/null; then
terminal -e "sh -c 'TERM=xterm $LAUNCHER'"
elif $COMMAND termite 2>/dev/null; then
termite -e "sh -c 'TERM=xterm $LAUNCHER'"
else
sh -c 'TERM=xterm $LAUNCHER'
fi
Expand Down
4 changes: 2 additions & 2 deletions src/SMAPI.Mods.ConsoleCommands/manifest.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"Name": "Console Commands",
"Author": "SMAPI",
"Version": "2.11.1",
"Version": "2.11.2",
"Description": "Adds SMAPI console commands that let you manipulate the game.",
"UniqueID": "SMAPI.ConsoleCommands",
"EntryDll": "ConsoleCommands.dll",
"MinimumApiVersion": "2.11.1"
"MinimumApiVersion": "2.11.2"
}
4 changes: 2 additions & 2 deletions src/SMAPI.Mods.SaveBackup/manifest.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"Name": "Save Backup",
"Author": "SMAPI",
"Version": "2.11.1",
"Version": "2.11.2",
"Description": "Automatically backs up all your saves once per day into its folder.",
"UniqueID": "SMAPI.SaveBackup",
"EntryDll": "SaveBackup.dll",
"MinimumApiVersion": "2.11.1"
"MinimumApiVersion": "2.11.2"
}
2 changes: 1 addition & 1 deletion src/SMAPI/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public static class Constants
** Public
****/
/// <summary>SMAPI's current semantic version.</summary>
public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("2.11.1");
public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("2.11.2");

/// <summary>The minimum supported version of Stardew Valley.</summary>
public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.3.36");
Expand Down
2 changes: 1 addition & 1 deletion src/SMAPI/Framework/ModHelpers/ContentHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ private string GetTilesheetAssetName(string modRelativeMapFolder, string imageSo

// check relative to content folder
{
foreach (string candidateKey in new[] { imageSource, $@"Maps\{imageSource}" })
foreach (string candidateKey in new[] { imageSource, Path.Combine("Maps", imageSource) })
{
string contentKey = candidateKey.EndsWith(".png")
? candidateKey.Substring(0, candidateKey.Length - 4)
Expand Down

0 comments on commit e22a542

Please sign in to comment.