Removed Boutique, using Bogeda directly (#1007)

* Removed Boutique, using Bogeda directly

* Updated about screen
This commit is contained in:
Thomas Durand 2023-02-22 18:56:37 +01:00 committed by GitHub
parent 11bc89c0cd
commit 482d93a68d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 22 deletions

View file

@ -9,15 +9,6 @@
"version" : "2.0.2" "version" : "2.0.2"
} }
}, },
{
"identity" : "boutique",
"kind" : "remoteSourceControl",
"location" : "https://github.com/mergesort/Boutique",
"state" : {
"revision" : "b5b697de67100edc4b2d5c74724f3c1068b49d4e",
"version" : "2.1.1"
}
},
{ {
"identity" : "emojitext", "identity" : "emojitext",
"kind" : "remoteSourceControl", "kind" : "remoteSourceControl",
@ -72,15 +63,6 @@
"version" : "0.13.3" "version" : "0.13.3"
} }
}, },
{
"identity" : "swift-collections",
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-collections",
"state" : {
"revision" : "48254824bb4248676bf7ce56014ff57b142b77eb",
"version" : "1.0.2"
}
},
{ {
"identity" : "swiftsoup", "identity" : "swiftsoup",
"kind" : "remoteSourceControl", "kind" : "remoteSourceControl",

View file

@ -65,7 +65,7 @@ struct AboutView: View {
[LRUCache](https://github.com/nicklockwood/LRUCache) [LRUCache](https://github.com/nicklockwood/LRUCache)
[Boutique](https://github.com/mergesort/Boutique) [Bodega](https://github.com/mergesort/Bodega)
[Nuke](https://github.com/kean/Nuke) [Nuke](https://github.com/kean/Nuke)

View file

@ -22,7 +22,7 @@ let package = Package(
.package(name: "Status", path: "../Status"), .package(name: "Status", path: "../Status"),
.package(name: "DesignSystem", path: "../DesignSystem"), .package(name: "DesignSystem", path: "../DesignSystem"),
.package(url: "https://github.com/siteline/SwiftUI-Introspect.git", from: "0.1.4"), .package(url: "https://github.com/siteline/SwiftUI-Introspect.git", from: "0.1.4"),
.package(url: "https://github.com/mergesort/Boutique", from: "2.1.1"), .package(url: "https://github.com/mergesort/Bodega", from: "2.0.2"),
], ],
targets: [ targets: [
.target( .target(
@ -34,7 +34,7 @@ let package = Package(
.product(name: "Status", package: "Status"), .product(name: "Status", package: "Status"),
.product(name: "DesignSystem", package: "DesignSystem"), .product(name: "DesignSystem", package: "DesignSystem"),
.product(name: "Introspect", package: "SwiftUI-Introspect"), .product(name: "Introspect", package: "SwiftUI-Introspect"),
.product(name: "Boutique", package: "Boutique"), .product(name: "Bodega", package: "Bodega"),
] ]
), ),
.testTarget( .testTarget(

View file

@ -1,4 +1,4 @@
import Boutique import Bodega
import Models import Models
import Network import Network
import SwiftUI import SwiftUI