Skip to content

Commit

Permalink
Merge pull request #19 from denpadokei/develop
Browse files Browse the repository at this point in the history
PPダウンロード時にnullエラーはいてた問題の修正
  • Loading branch information
denpadokei authored Oct 9, 2020
2 parents 6c708ba + b2b184e commit 2b3c839
Show file tree
Hide file tree
Showing 7 changed files with 319 additions and 380 deletions.
1 change: 1 addition & 0 deletions SyncSaber/Configuration/PluginConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ public virtual void CopyFrom(PluginConfig other)
SyncBookmarksFeed = other.SyncBookmarksFeed;
SyncCuratorRecommendedFeed = other.SyncCuratorRecommendedFeed;
SyncFollowingsFeed = other.SyncFollowingsFeed;
MaxPPSongsCount = other.MaxPPSongsCount;
}
}
}
2 changes: 0 additions & 2 deletions SyncSaber/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ namespace SyncSaber
[Plugin(RuntimeOptions.SingleStartInit)]
public class Plugin
{
public static bool SongBrowserPluginPresent { get; set; }
public bool IsInGame { get; private set; }
public static HashSet<string> SongDownloadHistory { get; } = new HashSet<string>();
internal static Plugin instance { get; private set; }
Expand Down Expand Up @@ -75,7 +74,6 @@ private async Task DelayedStartup()
public void OnApplicationStart()
{
instance = this;
SongBrowserPluginPresent = PluginManager.GetPlugin("Song Browser") != null;

BSEvents.earlyMenuSceneLoadedFresh += this.BSEvents_earlyMenuSceneLoadedFresh;
BSEvents.lateMenuSceneLoadedFresh += this.BSEvents_lateMenuSceneLoadedFresh;
Expand Down
4 changes: 2 additions & 2 deletions SyncSaber/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.3.3")]
[assembly: AssemblyFileVersion("2.3.3")]
[assembly: AssemblyVersion("2.3.4")]
[assembly: AssemblyFileVersion("2.3.4")]
Loading

0 comments on commit 2b3c839

Please sign in to comment.