It's hotfix city in here!
This commit is contained in:
Ell 2021-10-20 10:52:17 +02:00
parent 7557aece49
commit 29626d100b
4 changed files with 67 additions and 16 deletions

View file

@ -1,15 +1,17 @@
# 0.17.3 # 0.17.4
Apologies for the many hotfix updates recently. If you encounter any more bugs, don't hesitate to let us know using the [report form](https://tinylifegame.com/bugreport). Apologies for the many hotfix updates recently. If you encounter any more bugs, don't hesitate to let us know using the [report form](https://tinylifegame.com/bugreport).
Improvements Improvements
- Default names of lots on the map are now localized when creating a new save - Move natural objects to household storage when new room is built
- Added an option to disable camera rounding, which helps with visual fragments on some screen sizes - Default names of lots on the map are now localized when creating a new save (0.17.3)
- Added an option to disable camera rounding, which helps with visual fragments on some screen sizes (0.17.3)
- Turned the mac build into an app bundle (0.17.2) - Turned the mac build into an app bundle (0.17.2)
- Improved video ram usage of outside tiles (0.17.2) - Improved video ram usage of outside tiles (0.17.2)
Fixes Fixes
- Fixed a crash when rotating the camera on some machines - Fixed inside tiles being hidden for newly built rooms until the game is restarted
- Fixed visual fragments on the terrain on some screen sizes - Fixed a crash when rotating the camera on some machines (0.17.3)
- Fixed visual fragments on the terrain on some screen sizes (0.17.3)
- Fixed an exception when putting away books (0.17.1) - Fixed an exception when putting away books (0.17.1)
# 0.17.0 # 0.17.0

View file

@ -1993,6 +1993,7 @@
"TinyLife.Tools.TileTool.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch)": "TinyLife.Tools.TileTool.yml", "TinyLife.Tools.TileTool.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch)": "TinyLife.Tools.TileTool.yml",
"TinyLife.Tools.TileTool.GetMouseCursor": "TinyLife.Tools.TileTool.yml", "TinyLife.Tools.TileTool.GetMouseCursor": "TinyLife.Tools.TileTool.yml",
"TinyLife.Tools.TileTool.InitBuildModeUi(MLEM.Ui.Elements.Panel,MLEM.Ui.Elements.Panel)": "TinyLife.Tools.TileTool.yml", "TinyLife.Tools.TileTool.InitBuildModeUi(MLEM.Ui.Elements.Panel,MLEM.Ui.Elements.Panel)": "TinyLife.Tools.TileTool.yml",
"TinyLife.Tools.TileTool.RemoveNaturalFurniture(Microsoft.Xna.Framework.Point)": "TinyLife.Tools.TileTool.yml",
"TinyLife.Tools.TileTool.ShouldHighlightSelectedObject": "TinyLife.Tools.TileTool.yml", "TinyLife.Tools.TileTool.ShouldHighlightSelectedObject": "TinyLife.Tools.TileTool.yml",
"TinyLife.Tools.TileTool.Update(Microsoft.Xna.Framework.GameTime)": "TinyLife.Tools.TileTool.yml", "TinyLife.Tools.TileTool.Update(Microsoft.Xna.Framework.GameTime)": "TinyLife.Tools.TileTool.yml",
"TinyLife.Tools.Tool": "TinyLife.Tools.Tool.yml", "TinyLife.Tools.Tool": "TinyLife.Tools.Tool.yml",

View file

@ -9,6 +9,7 @@ items:
- TinyLife.Tools.TileTool.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch) - TinyLife.Tools.TileTool.Draw(Microsoft.Xna.Framework.GameTime,Microsoft.Xna.Framework.Graphics.SpriteBatch)
- TinyLife.Tools.TileTool.GetMouseCursor - TinyLife.Tools.TileTool.GetMouseCursor
- TinyLife.Tools.TileTool.InitBuildModeUi(MLEM.Ui.Elements.Panel,MLEM.Ui.Elements.Panel) - TinyLife.Tools.TileTool.InitBuildModeUi(MLEM.Ui.Elements.Panel,MLEM.Ui.Elements.Panel)
- TinyLife.Tools.TileTool.RemoveNaturalFurniture(Microsoft.Xna.Framework.Point)
- TinyLife.Tools.TileTool.ShouldHighlightSelectedObject - TinyLife.Tools.TileTool.ShouldHighlightSelectedObject
- TinyLife.Tools.TileTool.Update(Microsoft.Xna.Framework.GameTime) - TinyLife.Tools.TileTool.Update(Microsoft.Xna.Framework.GameTime)
langs: langs:
@ -162,7 +163,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Draw id: Draw
path: Tools/TileTool.cs path: Tools/TileTool.cs
startLine: 87 startLine: 81
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Tools namespace: TinyLife.Tools
@ -204,7 +205,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: InitBuildModeUi id: InitBuildModeUi
path: Tools/TileTool.cs path: Tools/TileTool.cs
startLine: 97 startLine: 91
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Tools namespace: TinyLife.Tools
@ -246,7 +247,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: GetMouseCursor id: GetMouseCursor
path: Tools/TileTool.cs path: Tools/TileTool.cs
startLine: 120 startLine: 114
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Tools namespace: TinyLife.Tools
@ -284,7 +285,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: ShouldHighlightSelectedObject id: ShouldHighlightSelectedObject
path: Tools/TileTool.cs path: Tools/TileTool.cs
startLine: 127 startLine: 121
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.Tools namespace: TinyLife.Tools
@ -304,6 +305,41 @@ items:
modifiers.vb: modifiers.vb:
- Public - Public
- Overrides - Overrides
- uid: TinyLife.Tools.TileTool.RemoveNaturalFurniture(Microsoft.Xna.Framework.Point)
commentId: M:TinyLife.Tools.TileTool.RemoveNaturalFurniture(Microsoft.Xna.Framework.Point)
id: RemoveNaturalFurniture(Microsoft.Xna.Framework.Point)
parent: TinyLife.Tools.TileTool
langs:
- csharp
- vb
name: RemoveNaturalFurniture(Point)
nameWithType: TileTool.RemoveNaturalFurniture(Point)
fullName: TinyLife.Tools.TileTool.RemoveNaturalFurniture(Microsoft.Xna.Framework.Point)
type: Method
source:
remote:
path: TinyLife/Tools/TileTool.cs
branch: master
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: RemoveNaturalFurniture
path: Tools/TileTool.cs
startLine: 177
assemblies:
- Tiny Life
namespace: TinyLife.Tools
syntax:
content: public static void RemoveNaturalFurniture(Point tile)
parameters:
- id: tile
type: Microsoft.Xna.Framework.Point
content.vb: Public Shared Sub RemoveNaturalFurniture(tile As Point)
overload: TinyLife.Tools.TileTool.RemoveNaturalFurniture*
modifiers.csharp:
- public
- static
modifiers.vb:
- Public
- Shared
references: references:
- uid: TinyLife.Tools - uid: TinyLife.Tools
commentId: N:TinyLife.Tools commentId: N:TinyLife.Tools
@ -1476,3 +1512,15 @@ references:
name: Boolean name: Boolean
nameWithType: Boolean nameWithType: Boolean
fullName: System.Boolean fullName: System.Boolean
- uid: TinyLife.Tools.TileTool.RemoveNaturalFurniture*
commentId: Overload:TinyLife.Tools.TileTool.RemoveNaturalFurniture
name: RemoveNaturalFurniture
nameWithType: TileTool.RemoveNaturalFurniture
fullName: TinyLife.Tools.TileTool.RemoveNaturalFurniture
- uid: Microsoft.Xna.Framework.Point
commentId: T:Microsoft.Xna.Framework.Point
parent: Microsoft.Xna.Framework
isExternal: true
name: Point
nameWithType: Point
fullName: Microsoft.Xna.Framework.Point

View file

@ -25,7 +25,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: MapSection id: MapSection
path: World/MapSection.cs path: World/MapSection.cs
startLine: 14 startLine: 15
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -90,7 +90,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Size id: Size
path: World/MapSection.cs path: World/MapSection.cs
startLine: 21 startLine: 22
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -125,7 +125,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: SectionPos id: SectionPos
path: World/MapSection.cs path: World/MapSection.cs
startLine: 27 startLine: 28
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -170,7 +170,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Pos id: Pos
path: World/MapSection.cs path: World/MapSection.cs
startLine: 31 startLine: 32
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -207,7 +207,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: .ctor id: .ctor
path: World/MapSection.cs path: World/MapSection.cs
startLine: 53 startLine: 54
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -246,7 +246,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Update id: Update
path: World/MapSection.cs path: World/MapSection.cs
startLine: 70 startLine: 71
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World
@ -288,7 +288,7 @@ items:
repo: https://git.ellpeck.de/Ellpeck/TinyLife repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: Validate id: Validate
path: World/MapSection.cs path: World/MapSection.cs
startLine: 85 startLine: 86
assemblies: assemblies:
- Tiny Life - Tiny Life
namespace: TinyLife.World namespace: TinyLife.World