Skip to content

Commit 01edee2

Browse files
committed
1.1.1
1 parent 80aa132 commit 01edee2

File tree

13 files changed

+8197
-2247
lines changed

13 files changed

+8197
-2247
lines changed

.vscode/launch.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "LDtk.Codegen",
6+
"type": "coreclr",
7+
"request": "launch",
8+
"preLaunchTask": "Build LDtk.Codegen",
9+
"program": "${workspaceFolder}/LDtk.Codegen/bin/Debug/net6.0/LDtk.Codegen.dll",
10+
"cwd": "${workspaceFolder}/LDtk.Codegen",
11+
"console": "integratedTerminal",
12+
"internalConsoleOptions": "neverOpen",
13+
"__autoGenerated__": true
14+
},
15+
{
16+
"name": "LDtk.Example",
17+
"type": "coreclr",
18+
"request": "launch",
19+
"preLaunchTask": "Build LDtk.Example",
20+
"program": "${workspaceFolder}/LDtk.Example/bin/Debug/net6.0/LDtk.Example.dll",
21+
"cwd": "${workspaceFolder}/LDtk.Example",
22+
"console": "integratedTerminal",
23+
"internalConsoleOptions": "neverOpen",
24+
"__autoGenerated__": true
25+
},
26+
{
27+
"name": "LDtk.DocGeneration",
28+
"type": "coreclr",
29+
"request": "launch",
30+
"preLaunchTask": "Build LDtk.DocGeneration",
31+
"program": "${workspaceFolder}/Tools\\LDtk.DocGeneration/bin/Debug/net6.0/LDtk.DocGeneration.dll",
32+
"cwd": "${workspaceFolder}/Tools\\LDtk.DocGeneration",
33+
"console": "integratedTerminal",
34+
"internalConsoleOptions": "neverOpen",
35+
"__autoGenerated__": true
36+
},
37+
{
38+
"name": "LDtk.Quicktype",
39+
"type": "coreclr",
40+
"request": "launch",
41+
"preLaunchTask": "Build LDtk.Quicktype",
42+
"program": "${workspaceFolder}/Tools\\LDtk.Quicktype/bin/Debug/net7.0/LDtk.Quicktype.dll",
43+
"cwd": "${workspaceFolder}/Tools\\LDtk.Quicktype",
44+
"console": "integratedTerminal",
45+
"internalConsoleOptions": "neverOpen",
46+
"__autoGenerated__": true
47+
}
48+
]
49+
}

.vscode/tasks.json

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "Build LDtk",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/LDtk\\LDtk.csproj",
11+
"/property:GenerateFullPaths=true",
12+
"/consoleloggerparameters:NoSummary"
13+
],
14+
"problemMatcher": "$msCompile",
15+
"group": "build",
16+
"__autoGenerated__": true
17+
},
18+
{
19+
"label": "Build LDtk.Codegen",
20+
"command": "dotnet",
21+
"type": "process",
22+
"args": [
23+
"build",
24+
"${workspaceFolder}/LDtk.Codegen\\LDtk.Codegen.csproj",
25+
"/property:GenerateFullPaths=true",
26+
"/consoleloggerparameters:NoSummary"
27+
],
28+
"problemMatcher": "$msCompile",
29+
"group": "build",
30+
"__autoGenerated__": true
31+
},
32+
{
33+
"label": "Build LDtk.ContentPipeline",
34+
"command": "dotnet",
35+
"type": "process",
36+
"args": [
37+
"build",
38+
"${workspaceFolder}/LDtk.ContentPipeline\\LDtk.ContentPipeline.csproj",
39+
"/property:GenerateFullPaths=true",
40+
"/consoleloggerparameters:NoSummary"
41+
],
42+
"problemMatcher": "$msCompile",
43+
"group": "build",
44+
"__autoGenerated__": true
45+
},
46+
{
47+
"label": "Build LDtk.Example",
48+
"command": "dotnet",
49+
"type": "process",
50+
"args": [
51+
"build",
52+
"${workspaceFolder}/LDtk.Example\\LDtk.Example.csproj",
53+
"/property:GenerateFullPaths=true",
54+
"/consoleloggerparameters:NoSummary"
55+
],
56+
"problemMatcher": "$msCompile",
57+
"group": "build",
58+
"__autoGenerated__": true
59+
},
60+
{
61+
"label": "Build LDtk.DocGeneration",
62+
"command": "dotnet",
63+
"type": "process",
64+
"args": [
65+
"build",
66+
"${workspaceFolder}/Tools\\LDtk.DocGeneration\\LDtk.DocGeneration.csproj",
67+
"/property:GenerateFullPaths=true",
68+
"/consoleloggerparameters:NoSummary"
69+
],
70+
"problemMatcher": "$msCompile",
71+
"group": "build",
72+
"__autoGenerated__": true
73+
},
74+
{
75+
"label": "Build LDtk.Quicktype",
76+
"command": "dotnet",
77+
"type": "process",
78+
"args": [
79+
"build",
80+
"${workspaceFolder}/Tools\\LDtk.Quicktype\\LDtk.Quicktype.csproj",
81+
"/property:GenerateFullPaths=true",
82+
"/consoleloggerparameters:NoSummary"
83+
],
84+
"problemMatcher": "$msCompile",
85+
"group": "build",
86+
"__autoGenerated__": true
87+
}
88+
]
89+
}

Documentation/src/changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

33
Changelog for versions
4+
- <a href="https://github.com/IrishBruse/LDtkMonogame/compare/v1.1.0...v1.1.1">1.1.1</a>
5+
- Fix assetName for textures when the parent ldtk is in a nested folder [PR-25](https://github.com/IrishBruse/LDtkMonogame/pull/25)
46
- <a href="https://github.com/IrishBruse/LDtkMonogame/compare/v1.0.1...v1.1.0">1.1.0</a>
57
- Updated `LDtkFile.FromFile(filePath)` For old slower behaviour use `FromFileReflection` <br/> Source generator deserializing should be faster but may have bugs please test.
68
- Updated json to 1.3.3

LDtk.Codegen/LDtk.Codegen.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<PropertyGroup>
12-
<Version>1.1.0</Version>
12+
<Version>1.1.1</Version>
1313
<Authors>Ethan Conneely</Authors>
1414
<Product>LDtk Monogame</Product>
1515
<PackageId>LDtkMonogame.Codegen</PackageId>

LDtk.ContentPipeline/LDtk.ContentPipeline.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<PropertyGroup>
10-
<Version>1.1.0</Version>
10+
<Version>1.1.1</Version>
1111
<Authors>Ethan Conneely</Authors>
1212
<Product>LDtk Monogame</Product>
1313
<PackageId>LDtkMonogame.ContentPipeline</PackageId>

LDtk.Example/Content/Content.mgcb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/processorParam:TextureFormat=Color
2727
/build:Characters.png
2828

29-
#begin Tilemap.png
29+
#begin Atlas/Tilemap.png
3030
/importer:TextureImporter
3131
/processor:TextureProcessor
3232
/processorParam:ColorKeyColor=255,0,255,255
@@ -36,9 +36,9 @@
3636
/processorParam:ResizeToPowerOfTwo=False
3737
/processorParam:MakeSquare=False
3838
/processorParam:TextureFormat=Color
39-
/build:Tilemap.png
39+
/build:Test/Atlas/Tilemap.png
4040

4141
#begin World.ldtk
4242
/importer:LDtkFileImporter
4343
/processor:LDtkFileProcessor
44-
/build:World.ldtk
44+
/build:Test/World.ldtk
File renamed without changes.

0 commit comments

Comments
 (0)