Skip to content

Commit

Permalink
0.3.7.824
Browse files Browse the repository at this point in the history
  • Loading branch information
gleblebedev committed Jul 26, 2024
1 parent d1c6dff commit 4bac543
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
]
},
"unofficial.Urho3DNet.Editor": {
"version": "0.3.7.823",
"version": "0.3.7.824",
"commands": [
"rbfx"
]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

# ---------------------------------------------------------------------------------------
tests:
runs-on: ubuntu-latest
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Urho3DNetVersion>0.3.7.823</Urho3DNetVersion>
<Urho3DNetVersion>0.3.7.824</Urho3DNetVersion>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion RbfxTemplate.Tests/JsonResourceTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public async Task SaveSimpleResource()
res.Value = testContainer;
var fileIdentifier = new FileIdentifier("conf", "SaveJson.json");
res.SaveFile(fileIdentifier);
res.Value = default;
res.Value = new TestContainer();
res.LoadFile(fileIdentifier);
Assert.NotNull(res.Value);
Assert.Equal(testContainer.IntVector2, res.Value.IntVector2);
Expand Down
Binary file added StoreArt/Steam/ClientIcon.icns
Binary file not shown.
3 changes: 3 additions & 0 deletions StoreArt/Steam/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
To convert PNG icon to MacOS ICNS format you can use online tool:
https://cloudconvert.com/png-to-icns

0 comments on commit 4bac543

Please sign in to comment.