From d79274ded592b7fd8c84565f72977e8cda8f79d0 Mon Sep 17 00:00:00 2001 From: winebarrel Date: Sun, 1 Dec 2024 21:58:40 +0900 Subject: [PATCH] Fix default query --- Pulse.xcodeproj/project.pbxproj | 4 ++-- Pulse/Constants.swift | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Pulse.xcodeproj/project.pbxproj b/Pulse.xcodeproj/project.pbxproj index 3d2d546..a7cdf75 100644 --- a/Pulse.xcodeproj/project.pbxproj +++ b/Pulse.xcodeproj/project.pbxproj @@ -305,7 +305,7 @@ CODE_SIGN_ENTITLEMENTS = Pulse/Pulse.entitlements; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 3; DEVELOPMENT_ASSET_PATHS = "\"Pulse/Preview Content\""; DEVELOPMENT_TEAM = 97A8B2WE2P; ENABLE_HARDENED_RUNTIME = YES; @@ -334,7 +334,7 @@ CODE_SIGN_ENTITLEMENTS = Pulse/Pulse.entitlements; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 3; DEVELOPMENT_ASSET_PATHS = "\"Pulse/Preview Content\""; DEVELOPMENT_TEAM = 97A8B2WE2P; ENABLE_HARDENED_RUNTIME = YES; diff --git a/Pulse/Constants.swift b/Pulse/Constants.swift index 4748a9d..11ea878 100644 --- a/Pulse/Constants.swift +++ b/Pulse/Constants.swift @@ -1,6 +1,6 @@ import Foundation enum Constants { - static let defaultGithubQuery = "is:open is:pr author:@me archived:false" + static let defaultGithubQuery = "is:open is:pr author:@me archived:false sort:updated-desc" static let defaultInterval: TimeInterval = 60 }