compatibilty for plugins is now fetched from plugin repository

This commit is contained in:
Michael Starke
2018-10-10 19:23:45 +02:00
parent 74b06ed195
commit 0921cd39d2
19 changed files with 559 additions and 66 deletions

View File

@@ -20,6 +20,8 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
NS_ASSUME_NONNULL_BEGIN
@import Foundation;
@class MPPluginRepositoryItem;
@@ -27,7 +29,9 @@
@interface MPPluginRepository : NSObject
@property (class, strong, readonly) MPPluginRepository *defaultRepository;
@property (nonatomic, copy) NSArray<MPPluginRepositoryItem *> *availablePlugins;
- (void)fetchRepositoryDataCompletionHandler:(void (^)(NSArray<MPPluginRepositoryItem *> *availablePlugins))completionHandler;
@end
NS_ASSUME_NONNULL_END