Dave DeLong

Results 35 issues of Dave DeLong

While most Mac apps are packages that can embed a framework to use, not all of them are. For ones that really are just plain executable files, it'd be nice...

I was trying to iterate through all the weeks in a month, like so: ```swift for w in 1 ... 5 { let components = DateComponents(year: 2024, month: 1, weekOfMonth:...

Below is a minimal reproduction case: ```swift var calendar = Calendar(identifier: .gregorian) calendar.timeZone = TimeZone(secondsFromGMT: 0)! let eraComponents = DateComponents(era: 1) let anyEraDate = calendar.date(from: eraComponents)! calendar.component(.era, from: anyEraDate) ==...

Some of the dependencies in my project are a fork of another project. It would be very neat to have an option that would allow me to follow a fork...

`swift-outdated` skips dependencies that are pinned to a specific branch or revision, which seems like a sensible default. I would like the ability to include an option to _not_ skip...