-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UI Resizing, Regex Fixes, and Recommended Modes
Replaced panels, layouts, etc. for most windows to allow for proper resizing Tweaked and adjusted Regex patterns to be more resilient and reliable Added an automatically retrieved list of recommended gamemodes from the 'Custom Rulesets Directory' ppy/osu#5852
- Loading branch information
Showing
21 changed files
with
670 additions
and
337 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,33 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<configuration> | ||
<configSections> | ||
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" > | ||
<section name="OsuModeManager.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" /> | ||
</sectionGroup> | ||
</configSections> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" /> | ||
</startup> | ||
<userSettings> | ||
<OsuModeManager.Properties.Settings> | ||
<setting name="OsuLazerInstallationPath" serializeAs="String"> | ||
<value /> | ||
</setting> | ||
<setting name="LatestToken" serializeAs="String"> | ||
<value /> | ||
</setting> | ||
<setting name="LatestTokenCreationTime" serializeAs="String"> | ||
<value /> | ||
</setting> | ||
</OsuModeManager.Properties.Settings> | ||
</userSettings> | ||
<runtime> | ||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | ||
<probing privatePath="x86"/> | ||
</assemblyBinding> | ||
</runtime> | ||
<configSections> | ||
<sectionGroup name="userSettings" | ||
type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> | ||
<section name="OsuModeManager.Properties.Settings" | ||
type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" | ||
allowExeDefinition="MachineToLocalUser" requirePermission="false" /> | ||
</sectionGroup> | ||
</configSections> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" /> | ||
</startup> | ||
<userSettings> | ||
<OsuModeManager.Properties.Settings> | ||
<setting name="OsuLazerInstallationPath" serializeAs="String"> | ||
<value /> | ||
</setting> | ||
<setting name="LatestToken" serializeAs="String"> | ||
<value /> | ||
</setting> | ||
<setting name="LatestTokenCreationTime" serializeAs="String"> | ||
<value /> | ||
</setting> | ||
</OsuModeManager.Properties.Settings> | ||
</userSettings> | ||
<runtime> | ||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | ||
<probing privatePath="x86" /> | ||
</assemblyBinding> | ||
</runtime> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,9 @@ | ||
namespace OsuModeManager { public partial class App { } } | ||
#region Copyright (C) 2017-2020 Starflash Studios | ||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License (Version 3.0) | ||
// as published by the Free Software Foundation. | ||
// | ||
// More information can be found here: https://www.gnu.org/licenses/gpl-3.0.en.html | ||
#endregion | ||
|
||
namespace OsuModeManager { public partial class App { } } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#region Copyright (C) 2017-2020 Starflash Studios | ||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License (Version 3.0) | ||
// as published by the Free Software Foundation. | ||
// | ||
// More information can be found here: https://www.gnu.org/licenses/gpl-3.0.en.html | ||
#endregion | ||
|
||
namespace OsuModeManager { | ||
public enum UpdateStatus { | ||
Unchecked, | ||
UpToDate, | ||
UpdateRequired, | ||
FileMissing | ||
} | ||
} |
Oops, something went wrong.