Skip to content

Commit

Permalink
Merge pull request #232 from uhooi/feature/bump_logdog
Browse files Browse the repository at this point in the history
Bump Logdog
  • Loading branch information
uhooi authored Apr 20, 2024
2 parents 489d53b + d93f68e commit 668e004
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Loki.xcworkspace/xcshareddata/swiftpm/Package.resolved
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"originHash" : "b6e6dc27a8693bcc379114dac7408c67206ba448b6fd1c6f3f26cb9916e6854a",
"originHash" : "c8222e67b71e52ad42dbe97f9f64a00f8f9ca10eb16c103f0fcf6981ae37efd9",
"pins" : [
{
"identity" : "licensesplugin",
Expand All @@ -15,8 +15,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/uhooi/Logdog.git",
"state" : {
"branch" : "main",
"revision" : "bceaa67c1ae9b3f30c05c051431ce5644befbac5"
"revision" : "bc02bf2122f9da59e99710d1abb5e55fe40c950b",
"version" : "0.3.0"
}
},
{
Expand Down
4 changes: 2 additions & 2 deletions LokiPackage/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import PackageDescription

private extension PackageDescription.Target.Dependency {
static let algorithms: Self = .product(name: "Algorithms", package: "swift-algorithms")
static let logdogUI: Self = .product(name: "LogdogUI", package: "Logdog")
static let playbook: Self = .product(name: "Playbook", package: "playbook-ios")
static let playbookUI: Self = .product(name: "PlaybookUI", package: "playbook-ios")
static let logdogUI: Self = .product(name: "LogdogUI", package: "Logdog")
}

private extension PackageDescription.Target.PluginUsage {
Expand Down Expand Up @@ -59,8 +59,8 @@ let package = Package(
dependencies: [
// Libraries
.package(url: "https://github.com/apple/swift-algorithms.git", from: "1.0.0"),
.package(url: "https://github.com/uhooi/Logdog.git", from: "0.3.0"),
.package(url: "https://github.com/playbook-ui/playbook-ios.git", from: "0.3.2"),
.package(url: "https://github.com/uhooi/Logdog.git", branch: "main"), // TODO: Use stable version

// Plugins
.package(url: "https://github.com/maiyama18/LicensesPlugin", from: "0.1.5"),
Expand Down
4 changes: 3 additions & 1 deletion LokiPackage/Sources/Features/Debug/Debug/DebugScreen.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ package struct DebugScreen: View {
Form {
Section {
NavigationLink(String(localized: "Log", bundle: .module)) {
LogScreen()
LogdogScreen()
.navigationTitle(String(localized: "Log", bundle: .module))
.navigationBarTitleDisplayMode(.inline)
}
}
}
Expand Down

0 comments on commit 668e004

Please sign in to comment.