Convert almost all of Shared to use folders instead of groups in Xcode.

This commit is contained in:
Brent Simmons
2025-04-23 18:02:17 -07:00
parent adb6c51a96
commit d0f6852e46
2 changed files with 174 additions and 697 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,30 +0,0 @@
//
// TwitterFeedProvider+Extensions.swift
// NetNewsWire
//
// Created by Maurice Parker on 4/7/20.
// Copyright © 2020 Ranchero Software. All rights reserved.
//
import Foundation
import Account
extension TwitterFeedProvider: ExtensionPoint {
static var isSinglton = false
static var isDeveloperBuildRestricted = true
static var title = NSLocalizedString("Twitter", comment: "Twitter")
static var image = AppAssets.extensionPointTwitter
static var description: NSAttributedString = {
return TwitterFeedProvider.makeAttrString("This extension enables you to subscribe to Twitter URLs as if they were RSS feeds. It only works with \(Account.defaultLocalAccountName) or iCloud accounts.")
}()
var extensionPointID: ExtensionPointIdentifer {
return ExtensionPointIdentifer.twitter(screenName)
}
var title: String {
return "@\(screenName)"
}
}