mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 23:53:51 +09:00
Merge branch 'master' into markdown-footnote-support
This commit is contained in:
@ -12,9 +12,6 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="ppy.osu.Framework.Android" Version="2022.1219.0" />
|
<PackageReference Include="ppy.osu.Framework.Android" Version="2022.1219.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<LinkDescription Include="$(MSBuildThisFileDirectory)\osu.Android\Linker.xml"/>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<!-- Fody does not handle Android build well, and warns when unchanged.
|
<!-- Fody does not handle Android build well, and warns when unchanged.
|
||||||
Since Realm objects are not declared directly in Android projects, simply disable Fody. -->
|
Since Realm objects are not declared directly in Android projects, simply disable Fody. -->
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
|
||||||
<linker>
|
|
||||||
<assembly fullname="mscorlib">
|
|
||||||
<!-- see https://github.com/ppy/osu/issues/21516 -->
|
|
||||||
<type fullname="System.Globalization.*Calendar"/>
|
|
||||||
</assembly>
|
|
||||||
</linker>
|
|
@ -1,6 +1,7 @@
|
|||||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||||
// See the LICENCE file in the repository root for full licence text.
|
// See the LICENCE file in the repository root for full licence text.
|
||||||
|
|
||||||
|
using System;
|
||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Graphics.Containers;
|
using osu.Framework.Graphics.Containers;
|
||||||
@ -46,5 +47,8 @@ namespace osu.Game.Graphics.Containers
|
|||||||
AddInternal(content);
|
AddInternal(content);
|
||||||
Add(CreateHoverSounds(sampleSet));
|
Add(CreateHoverSounds(sampleSet));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected override void ClearInternal(bool disposeChildren = true) =>
|
||||||
|
throw new InvalidOperationException($"Clearing {nameof(InternalChildren)} will cause critical failure. Use {nameof(Clear)} instead.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -147,7 +147,7 @@ namespace osu.Game.Overlays.FirstRunSetup
|
|||||||
[BackgroundDependencyLoader]
|
[BackgroundDependencyLoader]
|
||||||
private void load()
|
private void load()
|
||||||
{
|
{
|
||||||
InternalChildren = new Drawable[]
|
AddRange(new Drawable[]
|
||||||
{
|
{
|
||||||
backgroundBox = new Box
|
backgroundBox = new Box
|
||||||
{
|
{
|
||||||
@ -162,7 +162,7 @@ namespace osu.Game.Overlays.FirstRunSetup
|
|||||||
Colour = colourProvider.Light1,
|
Colour = colourProvider.Light1,
|
||||||
Text = Language.GetDescription(),
|
Text = Language.GetDescription(),
|
||||||
}
|
}
|
||||||
};
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void LoadComplete()
|
protected override void LoadComplete()
|
||||||
|
@ -1,31 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
|
||||||
<linker>
|
|
||||||
<assembly fullname="System.Linq.Queryable">
|
|
||||||
<type fullname="*" />
|
|
||||||
</assembly>
|
|
||||||
<assembly fullname="osu.Framework">
|
|
||||||
<type fullname="*" />
|
|
||||||
</assembly>
|
|
||||||
<assembly fullname="osu.Framework.iOS">
|
|
||||||
<type fullname="*" />
|
|
||||||
</assembly>
|
|
||||||
<assembly fullname="osu.Game.Resources">
|
|
||||||
<type fullname="*" />
|
|
||||||
</assembly>
|
|
||||||
<assembly fullname="osu.Game.Rulesets.Catch">
|
|
||||||
<type fullname="*" />
|
|
||||||
</assembly>
|
|
||||||
<assembly fullname="osu.Game.Rulesets.Taiko">
|
|
||||||
<type fullname="*" />
|
|
||||||
</assembly>
|
|
||||||
<assembly fullname="osu.Game.Rulesets.Mania">
|
|
||||||
<type fullname="*" />
|
|
||||||
</assembly>
|
|
||||||
<assembly fullname="osu.Game.Rulesets.Osu">
|
|
||||||
<type fullname="*" />
|
|
||||||
</assembly>
|
|
||||||
<assembly fullname="mscorlib">
|
|
||||||
<!-- see https://github.com/ppy/osu/issues/21516 -->
|
|
||||||
<type fullname="System.Globalization.*Calendar"/>
|
|
||||||
</assembly>
|
|
||||||
</linker>
|
|
Reference in New Issue
Block a user