Here's one for the icons-in-menus haters on macOS Tahoe:
defaults write -g NSMenuEnableActionImages -bool NO
It even preserves the couple of instances you do want icons, like for window zoom/resize
/cc @gruber
Here's one for the icons-in-menus haters on macOS Tahoe:
defaults write -g NSMenuEnableActionImages -bool NO
It even preserves the couple of instances you do want icons, like for window zoom/resize
/cc @gruber
Big release for Snapshot Testing: full support for Swift Testing attachments!
🎉 https://github.com/pointfreeco/swift-snapshot-testing/releases/tag/1.19.0
RE: https://mastodon.social/@colincornaby/116252006614790753
I really hope this causes a nice increase of sales for indie Mac devs.
But this also means you gotta take the time to deliver Mac-assed Mac apps and take the time to make them fast and efficient so they can just fly on MacBook Neo.
Electron apps can go to hell.
Oh, and take the time to design them for Mac. Don’t just stretch out your iPhone or iPad app and call it a day. Thanks.
Been working on the next version of IconJar for the past 2 years or so (version 3.0), no vibe coding, just pure Swift (SwiftUI used in the sheets) but AppKit everywhere else.
Slowly getting there, a lot to do, but a complete rewrite from 2.0 which was Objective-C.
Loads of new features, new formats supports. Watch this space :-)
🚀 GRDB 7.10.0 is out! This release ships the hard work of @marcprux, @tjadejong and Micah Moore for supporting Android, Linux, Windows, and SQLCipher with SPM (for encrypted databases).
The situation of GRDB+SQLCipher with SPM is much better, but still not all sunshine and roses. You must fork GRDB, and modify Package.swift. Instructions are in the file itself, in comments that contain "GRDB+SQLCipher".
Maybe an "official" fork will ship eventually–this is still under discussion. In all cases, SQLCipher will need a GRDB fork for several years to come, which means that all derived repositories (GRDBQuery, GRDBSnapshotTesting, SQLiteData, etc) will need to be forked as well.
What are we currently lacking in order to avoid forks?
We need Xcode to support package traits. Only package traits can reliably link GRDB with SQLite, or SQLCipher, but not both.
We also need SPM to stop downloading unused dependencies, because I do not want that your projects download SQLCipher, or declare a dependency on SQLCipher, when you do not use it. And when GRDB adds more traits for more SQLite and SQLCipher variants, I do not want that those are downloaded, too.