Skip to content

Commit

Permalink
2.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Feb 15, 2022
1 parent 26910bc commit c6a07a3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Config.xcconfig
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
MARKETING_VERSION = 2.9.0
CURRENT_PROJECT_VERSION = 32
MARKETING_VERSION = 2.9.1
CURRENT_PROJECT_VERSION = 35
4 changes: 2 additions & 2 deletions Plash.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -643,15 +643,15 @@
repositoryURL = "https://github.com/getsentry/sentry-cocoa";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 7.8.0;
minimumVersion = 7.9.0;
};
};
E32421482384ED8300D28A91 /* XCRemoteSwiftPackageReference "Defaults" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/sindresorhus/Defaults";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 6.1.0;
minimumVersion = 6.2.0;
};
};
E3805F592466ED5600489E6C /* XCRemoteSwiftPackageReference "KeyboardShortcuts" */ = {
Expand Down
10 changes: 6 additions & 4 deletions Plash/WebsitesView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,13 @@ private struct RowView: View {
)
}
.onNotification(.showEditWebsiteDialog) { _ in
guard website.isCurrent else {
return
}
DispatchQueue.main.async { // Attempt at working around SwiftUI crash.
guard website.isCurrent else {
return
}

isShowingEditSheet = true
isShowingEditSheet = true
}
}
.contextMenu {
Button("Set as Current") {
Expand Down

0 comments on commit c6a07a3

Please sign in to comment.