Skip to content

Commit

Permalink
1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
IrishBruse committed Jul 15, 2023
1 parent 80aa132 commit 01edee2
Show file tree
Hide file tree
Showing 13 changed files with 8,197 additions and 2,247 deletions.
49 changes: 49 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "LDtk.Codegen",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build LDtk.Codegen",
"program": "${workspaceFolder}/LDtk.Codegen/bin/Debug/net6.0/LDtk.Codegen.dll",
"cwd": "${workspaceFolder}/LDtk.Codegen",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"__autoGenerated__": true
},
{
"name": "LDtk.Example",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build LDtk.Example",
"program": "${workspaceFolder}/LDtk.Example/bin/Debug/net6.0/LDtk.Example.dll",
"cwd": "${workspaceFolder}/LDtk.Example",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"__autoGenerated__": true
},
{
"name": "LDtk.DocGeneration",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build LDtk.DocGeneration",
"program": "${workspaceFolder}/Tools\\LDtk.DocGeneration/bin/Debug/net6.0/LDtk.DocGeneration.dll",
"cwd": "${workspaceFolder}/Tools\\LDtk.DocGeneration",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"__autoGenerated__": true
},
{
"name": "LDtk.Quicktype",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build LDtk.Quicktype",
"program": "${workspaceFolder}/Tools\\LDtk.Quicktype/bin/Debug/net7.0/LDtk.Quicktype.dll",
"cwd": "${workspaceFolder}/Tools\\LDtk.Quicktype",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"__autoGenerated__": true
}
]
}
89 changes: 89 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build LDtk",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/LDtk\\LDtk.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile",
"group": "build",
"__autoGenerated__": true
},
{
"label": "Build LDtk.Codegen",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/LDtk.Codegen\\LDtk.Codegen.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile",
"group": "build",
"__autoGenerated__": true
},
{
"label": "Build LDtk.ContentPipeline",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/LDtk.ContentPipeline\\LDtk.ContentPipeline.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile",
"group": "build",
"__autoGenerated__": true
},
{
"label": "Build LDtk.Example",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/LDtk.Example\\LDtk.Example.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile",
"group": "build",
"__autoGenerated__": true
},
{
"label": "Build LDtk.DocGeneration",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Tools\\LDtk.DocGeneration\\LDtk.DocGeneration.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile",
"group": "build",
"__autoGenerated__": true
},
{
"label": "Build LDtk.Quicktype",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Tools\\LDtk.Quicktype\\LDtk.Quicktype.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile",
"group": "build",
"__autoGenerated__": true
}
]
}
2 changes: 2 additions & 0 deletions Documentation/src/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

Changelog for versions
- <a href="https://github.com/IrishBruse/LDtkMonogame/compare/v1.1.0...v1.1.1">1.1.1</a>
- Fix assetName for textures when the parent ldtk is in a nested folder [PR-25](https://github.com/IrishBruse/LDtkMonogame/pull/25)
- <a href="https://github.com/IrishBruse/LDtkMonogame/compare/v1.0.1...v1.1.0">1.1.0</a>
- Updated `LDtkFile.FromFile(filePath)` For old slower behaviour use `FromFileReflection` <br/> Source generator deserializing should be faster but may have bugs please test.
- Updated json to 1.3.3
Expand Down
2 changes: 1 addition & 1 deletion LDtk.Codegen/LDtk.Codegen.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>1.1.0</Version>
<Version>1.1.1</Version>
<Authors>Ethan Conneely</Authors>
<Product>LDtk Monogame</Product>
<PackageId>LDtkMonogame.Codegen</PackageId>
Expand Down
2 changes: 1 addition & 1 deletion LDtk.ContentPipeline/LDtk.ContentPipeline.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>1.1.0</Version>
<Version>1.1.1</Version>
<Authors>Ethan Conneely</Authors>
<Product>LDtk Monogame</Product>
<PackageId>LDtkMonogame.ContentPipeline</PackageId>
Expand Down
6 changes: 3 additions & 3 deletions LDtk.Example/Content/Content.mgcb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/processorParam:TextureFormat=Color
/build:Characters.png

#begin Tilemap.png
#begin Atlas/Tilemap.png
/importer:TextureImporter
/processor:TextureProcessor
/processorParam:ColorKeyColor=255,0,255,255
Expand All @@ -36,9 +36,9 @@
/processorParam:ResizeToPowerOfTwo=False
/processorParam:MakeSquare=False
/processorParam:TextureFormat=Color
/build:Tilemap.png
/build:Test/Atlas/Tilemap.png

#begin World.ldtk
/importer:LDtkFileImporter
/processor:LDtkFileProcessor
/build:World.ldtk
/build:Test/World.ldtk
File renamed without changes
Loading

0 comments on commit 01edee2

Please sign in to comment.