Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
guerro323 committed May 5, 2021
1 parent 90d1ce7 commit f73b322
Show file tree
Hide file tree
Showing 50 changed files with 2,314 additions and 509 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# 2021.05.04.1640
# 2021.505.2105
This version is an official release

## Client
+ Fixed embedding/integration of the client in the game window.

# 2021.504.1640
## Launcher
+ Launcher Visual overhaul (work in progress)
+ Added Settings pages
Expand Down
9 changes: 9 additions & 0 deletions PataNext.Export.Desktop.Tests/KeyboardListenerTest.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
using System;
using System.Collections.Generic;
using GameHost.Inputs.Systems;
using SharpInputSystem;

namespace PataNext.Export.Desktop.Tests
{

}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<PackageReference Include="NUnit" Version="3.13.1" />
<PackageReference Include="NUnit3TestAdapter" Version="3.16.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
<PackageReference Include="ppy.osu.Framework" Version="2021.424.1" />
<PackageReference Include="ppy.osu.Framework" Version="2021.427.0" />
</ItemGroup>

<ItemGroup>
Expand Down
31 changes: 31 additions & 0 deletions PataNext.Export.Desktop.Tests/Visual/GithubChangelogScene.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.Net;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Testing;
using osuTK;
using PataNext.Export.Desktop.Visual;
using PataNext.Export.Desktop.Visual.Dependencies;

namespace PataNext.Export.Desktop.Tests.Visual
{
public class GithubChangelogScene : TestScene
{
[BackgroundDependencyLoader]
private void load()
{
var changelog = new HomeChangelogControl {Size = Vector2.One, RelativeSizeAxes = Axes.Both};
Child = changelog;

var provider = new WebChangelogProvider(new("https://raw.githubusercontent.com/guerro323/patanext/master/CHANGELOG.md"), Scheduler);
provider.Current.BindValueChanged(ev =>
{
if (ev.NewValue == null)
return;
changelog.Set("test", ev.NewValue);
});
}
}
}
Loading

0 comments on commit f73b322

Please sign in to comment.