macOS Ventura no longer shows me the crash reports dialog. It showed it once, with two buttons, "Ignore" and "Report...", and I accidentally clicked "Ignore". Now it only collects the crashes in Console, but doesn't pop up a report dialog. How do I reset that to the way it was?
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
As of the latest beta of Ventura, I cannot reply to Apple feedback questions responding to my reports. The reply button works, but the resulting form will not activate the Send button.
Is it possible to control how Xcode Cloud versions the apps it builds? I would like to declare it to use the same template that my build system uses to generate its own Info.plist at build time:
CFBundleVersion: [number of commits since a specific Git tag where I forked the project]
CFBundleShortVersionString: [the same thing]
And I want it to preserve the generated tags that I add to the Info.plist for informational purposes:
GitHash: [the full commit hash that was built]
GitVersion: [number of commits as used above]-g[minimum characters of hash to be unique, currently up to 8 now]
BuildTime: [current date/time when Info.plist was generated near the end of build time]
Is there any way I can automate at least the CFBundleVersion and preserving the rest of the custom tags with Xcode Cloud?
Xcode Cloud unfortunately seems to completely override my version field, and sets it to the first 5 characters of the Git commit hash, which is incompatible with App Store version policy of only being numbers or dots.
Is there a way to automate rebasing all controls in a project's XIB files to newly generated IDs? I have a slight problem with a translation assist site getting confused by the fact I have over a dozen XIB files, most of which still have controls identified by monotonically increasing integers rather than unique dashed alphanumeric strings, and several of the XIBs have the same IDs as each other on different controls, and this leads to such confusion as the translation site showing the comment string for one XIB alongside the string for another XIB, because they both have a "5.title".
I would like to rebase all the numeric control IDs, and the associated .strings files paired with them. I probably have about 1700 strings in my project's dictionaries so far.