diff --git a/TypeWhisper.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/TypeWhisper.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index cba9f00e..8a146f7f 100644 --- a/TypeWhisper.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/TypeWhisper.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -68,8 +68,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/sparkle-project/Sparkle.git", "state" : { - "revision" : "5581748cef2bae787496fe6d61139aebe0a451f6", - "version" : "2.8.1" + "revision" : "b6496a74a087257ef5e6da1c5b29a447a60f5bd7", + "version" : "2.9.4" } }, { diff --git a/TypeWhisper/App/TypeWhisperApp.swift b/TypeWhisper/App/TypeWhisperApp.swift index 453b995d..a8a336cb 100644 --- a/TypeWhisper/App/TypeWhisperApp.swift +++ b/TypeWhisper/App/TypeWhisperApp.swift @@ -692,4 +692,13 @@ final class AppDelegate: NSObject, NSApplicationDelegate, SPUUpdaterDelegate { nonisolated func allowedChannels(for updater: SPUUpdater) -> Set { AppConstants.effectiveUpdateChannel.sparkleChannels } + + nonisolated func feedParameters(for updater: SPUUpdater, sendingSystemProfile: Bool) -> [[String : String]] { + return [[ + "key": "nocache", + "value": String(Int(Date().timeIntervalSince1970)), + "displayKey": "", + "displayValue": "" + ]] + } }