Browse Source

Fixed no-update to actually prevent updates

pull/46/head
Anairkoen Schno 5 years ago
parent
commit
0696939858
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      IPA.Loader/Updating/BeatMods/Updater.cs

+ 5
- 2
IPA.Loader/Updating/BeatMods/Updater.cs View File

@ -11,6 +11,7 @@ using System.Threading;
using System.Threading.Tasks;
using Ionic.Zip;
using IPA.Loader;
using IPA.Loader.Features;
using IPA.Utilities;
using Newtonsoft.Json;
using SemVer;
@ -169,7 +170,8 @@ namespace IPA.Updating.BeatMods
{
var depList = new Ref<List<DependencyObject>>(new List<DependencyObject>());
foreach (var plugin in BSMetas)
foreach (var plugin in BSMetas
.Where(m => m.Metadata.Features.FirstOrDefault(f => f is NoUpdateFeature) != null))
{ // initialize with data to resolve (1.1)
if (plugin.Metadata.Id != null)
{ // updatable
@ -183,7 +185,8 @@ namespace IPA.Updating.BeatMods
}
}
foreach (var meta in PluginLoader.ignoredPlugins.Where(m => m.Id != null))
foreach (var meta in PluginLoader.ignoredPlugins.Where(m => m.Id != null)
.Where(m => m.Features.FirstOrDefault(f => f is NoUpdateFeature) != null))
{
depList.Value.Add(new DependencyObject
{


Loading…
Cancel
Save