-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #196 from halsafar/release-6.4.0
Release 6.4.0
- Loading branch information
Showing
16 changed files
with
505 additions
and
433 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
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,25 +1,39 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
| ||
namespace SongBrowser.Configuration | ||
{ | ||
public enum SongFilterMode | ||
{ | ||
None, | ||
Favorites, | ||
Playlist, | ||
Search, | ||
Ranked, | ||
Unranked, | ||
Played, | ||
Unplayed, | ||
Requirements, | ||
|
||
Easy, | ||
Normal, | ||
Hard, | ||
Expert, | ||
ExpertPlus, | ||
// For other mods that extend SongBrowser | ||
Custom | ||
Custom, | ||
// Deprecated | ||
Favorites | ||
} | ||
|
||
static class SongFilterModeMethods | ||
{ | ||
public static bool NeedsScoreSaberData(this SongFilterMode s) | ||
{ | ||
switch (s) | ||
{ | ||
case SongFilterMode.Ranked: | ||
case SongFilterMode.Unranked: | ||
return true; | ||
default: | ||
return false; | ||
} | ||
} | ||
} | ||
} |
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
Oops, something went wrong.