Browse Source

Version bump to 5.5.2 for Beat Saber 1.5.0.
Added template used for quick BeatMods release.

Stephen Damm 5 năm trước cách đây
mục cha
commit
45c77ae59d

+ 10 - 0
BeatModsReleaseTemplate.txt

@@ -0,0 +1,10 @@
+SongBrowser
+
+5.5.2
+
+SongCore@2.1.0,SongDataCore@1.1.3
+
+Adds various sorting and filtering methods to the UI. Includes playlist, search, and favorites filter. Sort by BeatSaver and ScoreSaber statistics. Adds PP and other extra stats to the existing menu.
+
+https://github.com/halsafar/BeatSaberSongBrowser
+

+ 1 - 1
SongBrowserPlugin/DataAccess/SongBrowserModel.cs

@@ -471,7 +471,7 @@ namespace SongBrowser
             {
                 packName += "*";
             }
-            BeatmapLevelPack levelPack = new BeatmapLevelPack(SongBrowserModel.FilteredSongsPackId, packName, levelsViewController.levelPack.coverImage, new BeatmapLevelCollection(sortedSongs.ToArray()));
+            BeatmapLevelPack levelPack = new BeatmapLevelPack(SongBrowserModel.FilteredSongsPackId, packName, levelsViewController.levelPack.shortPackName, levelsViewController.levelPack.coverImage, new BeatmapLevelCollection(sortedSongs.ToArray()));
             levelsViewController.SetData(levelPack);
 
             //_sortedSongs.ForEach(x => Logger.Debug(x.levelID));

+ 1 - 1
SongBrowserPlugin/Plugin.cs

@@ -11,7 +11,7 @@ namespace SongBrowser
 {
     public class Plugin : IBeatSaberPlugin
     {
-        public const string VERSION_NUMBER = "5.5.1";
+        public const string VERSION_NUMBER = "5.5.2";
         public static Plugin Instance;
         public static IPA.Logging.Logger Log;
 

+ 2 - 2
SongBrowserPlugin/Properties/AssemblyInfo.cs

@@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
 // 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("5.5.1")]
-[assembly: AssemblyFileVersion("5.5.1")]
+[assembly: AssemblyVersion("5.5.2")]
+[assembly: AssemblyFileVersion("5.5.2")]

+ 5 - 5
SongBrowserPlugin/manifest.json

@@ -2,14 +2,14 @@
   "$schema": "https://raw.githubusercontent.com/beat-saber-modding-group/BSIPA-MetadataFileSchema/master/Schema.json",
   "author": "Halsafar",
   "description": "Adds sort and filter features to the level selection UI.",
-  "gameVersion": "1.3.0",
+  "gameVersion": "1.5.0",
   "id": "SongBrowser",
   "name": "Song Browser",
-  "version": "5.5.1",
+  "version": "5.5.2",
   "dependsOn": {
-    "CustomUI": "^1.5.4",
-    "SongCore": "^2.0.0",
-    "SongDataCore":  "^1.1.0"
+    "CustomUI": "^1.7.1",
+    "SongCore": "^2.4.1",
+    "SongDataCore":  "^1.1.4"
   },
   "features": [
     "print",