shakedown.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A community for live music fans with roots in the jam scene. Shakedown Social is run by a team of volunteers (led by @clifff and @sethadam1) and funded by donations.

Administered by:

Server stats:

244
active users

#macdev

7 posts6 participants0 posts today

Did Apple ever share any documentation on exit(173) no longer being supported?? I think for my purposes I can just rely on SKReceiptRefreshRequest, but since they previously recommended exit(173) on macOS, I'm uncomfortable assuming that's correct in all cases, especially on older macOS versions. It's wild that Apple will show an alert like this to customers without clear documentation for developers. #MacDev
mastodon.social/@danielpunkass

Screenshot of user-facing alert text that an application “does not support the latest receipt validation requirements. Please contact the developer for support.”
MastodonDaniel Jalkut (@danielpunkass@mastodon.social)Attached: 1 image I missed this, and I think it maybe didn't start until macOS 15, but if you develop a macOS app that still uses exit(173) to signal an App Store receipt is invalid, this is what happens when it does so now.

SwiftUI question:

Is there a way to remove this capsule around a `Section` in a `Form` with the `.grouped` style?

I tried seemingly everything from `.scrollContentBackground(.hidden)`, to `.listRowBackground(Color.clear)`, but none of it worked.

I would really appreciate any help!

When a library or stack is displayed in table view, clicking on one of the table headers was only rearranging the data in the column of the clicked header, and not the entire table. This issue has been fixed.

DataOrganizer is a bento-esque personal database.
testflight.apple.com/join/qWWp

testflight.apple.comJoin the DataOrganizer betaUsing TestFlight is a great way to help developers test beta versions of their apps.

In the latest #TestFlight release of DataOrganizer, both the "Getting Started Videos" button in the Welcome sheet and the Help menu item will now open the help page on Vimeo.

Links to the Vimeo videos were added to the help book (Help > DataOrganizer Help) as well.

DataOrganizer is a bento-esque personal database.
testflight.apple.com/join/qWWp

testflight.apple.comJoin the DataOrganizer betaUsing TestFlight is a great way to help developers test beta versions of their apps.

This is why I think layout is by far the biggest problem of #SwiftUI. Why is the second column of the grid changing width because of what is in the first!?

Multi-line labels on macOS SwiftUI always seem to layout in a completely arbitrary way.

And that Color.clear.gridCellUnsizedAxes thing is the recommended way, per the documentation, of creating an empty cell (which is in itself questionable, it seems there should be a GridEmptyCell() view that does the right thing). #SwiftUWhy #macdev