diff --git a/BSIPA-ModList/Plugin.cs b/BSIPA-ModList/Plugin.cs index 232d49ae..51ee7c63 100644 --- a/BSIPA-ModList/Plugin.cs +++ b/BSIPA-ModList/Plugin.cs @@ -16,7 +16,6 @@ namespace BSIPA_ModList public void Init(IPALogger logger) { Logger.log = logger; - Logger.log.Debug("Init"); IPA.Updating.BeatMods.Updater.ModListPresent = true; } @@ -45,10 +44,7 @@ namespace BSIPA_ModList FloatingNotification.Create(); if (ButtonUI.Instance == null) - { - Logger.log.Debug("Creating Menu"); new GameObject("BSIPA Mod List Object").AddComponent().Init(); - } } } diff --git a/BSIPA-ModList/Properties/AssemblyInfo.cs b/BSIPA-ModList/Properties/AssemblyInfo.cs index 6cd59713..d0ece219 100644 --- a/BSIPA-ModList/Properties/AssemblyInfo.cs +++ b/BSIPA-ModList/Properties/AssemblyInfo.cs @@ -32,5 +32,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("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("1.0.1.0")] +[assembly: AssemblyFileVersion("1.0.1.0")] diff --git a/BSIPA-ModList/UI/ButtonUI.cs b/BSIPA-ModList/UI/ButtonUI.cs index d4c587a8..566e5646 100644 --- a/BSIPA-ModList/UI/ButtonUI.cs +++ b/BSIPA-ModList/UI/ButtonUI.cs @@ -56,8 +56,6 @@ namespace BSIPA_ModList.UI private static IEnumerator AddModListButton() { - Logger.log.Debug("AddModListButton"); - yield return _bottomPanelExists; Logger.log.Debug("Adding button to main menu"); @@ -73,7 +71,6 @@ namespace BSIPA_ModList.UI { button = BeatSaberUI.CreateUIButton(panel, CopyButton, () => { - Logger.log.Debug("Presenting own flow controller"); menuFlow.Present(); }, "Mod List"); panel.Find(CopyButton).SetAsLastSibling(); diff --git a/BSIPA-ModList/UI/ModListFlowCoordinator.cs b/BSIPA-ModList/UI/ModListFlowCoordinator.cs index f3549a82..e05cac0b 100644 --- a/BSIPA-ModList/UI/ModListFlowCoordinator.cs +++ b/BSIPA-ModList/UI/ModListFlowCoordinator.cs @@ -63,32 +63,21 @@ namespace BSIPA_ModList.UI { if (immediate) { - Logger.log.Debug("setting selected immediately"); if (HasSelected) - { - Logger.log.Debug("popping vc"); PopViewController(immediate: true); - } - Logger.log.Debug("pushing vc"); PushViewController(selected, callback, true); HasSelected = true; } else { - Logger.log.Debug("setting selected"); if (HasSelected) - { - Logger.log.Debug("popping vc"); PopViewController(() => { - Logger.log.Debug("pushing vc"); PushViewController(selected, callback, immediate); HasSelected = true; }, immediate); - } else { - Logger.log.Debug("pushing vc"); PushViewController(selected, callback, immediate); HasSelected = true; } diff --git a/BSIPA-ModList/UI/ViewControllers/ModCells.cs b/BSIPA-ModList/UI/ViewControllers/ModCells.cs index 38ca0950..6a936175 100644 --- a/BSIPA-ModList/UI/ViewControllers/ModCells.cs +++ b/BSIPA-ModList/UI/ViewControllers/ModCells.cs @@ -32,8 +32,6 @@ namespace BSIPA_ModList.UI.ViewControllers subtext = "Unspecified Author"; icon = plugin.Metadata.GetIcon(); - - Logger.log.Debug($"BSIPAModCell {plugin.Metadata.Name} {plugin.Metadata.Version}"); } private ModInfoViewController infoView; @@ -78,8 +76,6 @@ namespace BSIPA_ModList.UI.ViewControllers else authorText = plugin.Manifest.Author; subtext = string.Format(authorFormat, authorText); - - Logger.log.Debug($"BSIPAIgnoredModCell {plugin.Name} {plugin.Version}"); } private ModInfoViewController infoView; @@ -118,8 +114,6 @@ namespace BSIPA_ModList.UI.ViewControllers subtext = "Unspecified Author"; icon = Utilities.DefaultLibraryIcon; - - Logger.log.Debug($"LibraryModCell {plugin.Metadata.Name} {plugin.Metadata.Version}"); } private ModInfoViewController infoView; @@ -155,8 +149,6 @@ namespace BSIPA_ModList.UI.ViewControllers { Plugin = plugin; this.list = list; - - Logger.log.Debug($"IPAModCell {plugin.Name} {plugin.Version}"); } private ModInfoViewController infoView; diff --git a/BSIPA-ModList/UI/ViewControllers/ModInfoViewController.cs b/BSIPA-ModList/UI/ViewControllers/ModInfoViewController.cs index dbee57b4..4c83aa51 100644 --- a/BSIPA-ModList/UI/ViewControllers/ModInfoViewController.cs +++ b/BSIPA-ModList/UI/ViewControllers/ModInfoViewController.cs @@ -34,8 +34,6 @@ namespace BSIPA_ModList.UI public void Init(Sprite icon, string name, string version, string author, string description, PluginLoader.PluginMetadata updateInfo, PluginManifest.LinksObject links = null) { - Logger.log.Debug($"init info view controller"); - Icon = icon; Name = name; Version = version; @@ -141,7 +139,6 @@ namespace BSIPA_ModList.UI public void Init(ModInfoViewController controller) { - Logger.log.Debug($"init info view"); this.controller = controller; var rectTransform = transform as RectTransform; diff --git a/BSIPA-ModList/manifest.json b/BSIPA-ModList/manifest.json index f4c5bb83..f23eb3f1 100644 --- a/BSIPA-ModList/manifest.json +++ b/BSIPA-ModList/manifest.json @@ -5,7 +5,7 @@ "gameVersion": "0.13.2", "id": "BSIPA Mod List", "name": "BSIPA Mod List", - "version": "1.0.0", + "version": "1.0.1", "icon": "BSIPA_ModList.Icons.self.png", "dependsOn": { "BSIPA": "^3.12.13",