Earlier quoted context omitted.
I think this is exactly what is being changed here? Now you can link away to a web portal with your account and alternative payment options. Correct me if I'm wrong.
> Developers can communicate directly with customers about alternative payment options. Customers have to consent and be given the right to opt-out. This is the only statement that might be construed as such from the article, but it doesn't say anything about management, and I'm really not sure what consent means - is it a popup that says "do you want to be informed about non-apple payment methods?". Maybe it is what…
Apple agrees to settle potential class action suit by U.S. developers
151–160 of 259 posts
Re: Apple agrees to settle potential class action suit by U.S. developers
#152Earlier quoted context omitted.
> A big change would be letting developers make it clear to users how to use alternative payment options, but Apple's press release only says via e-mail It really says something that "allowing" businesses to communicate certain information with their own customers via an independent channel was considered a concession in this settlement. I'm still wrapping my head around it.
I think it's important to wait for the final language from the settlement. After all, the original PR Post from Apple doesn't actually mention the $100 million fund that Axios does.
> Apple will also establish a fund to assist small US developers, particularly as the world continues to suffer from the effects of COVID-19. Eligible developers must have earned $1 million or less through the US storefront for all of their apps in every calendar year in which the developers had an account between June 4, 2015, and April 26, 2021 — encompassing 99 percent of developers in the US. Details will be available at a later date.
Re: Apple agrees to settle potential class action suit by U.S. developers
#153Suddenly Apple rejected my last app release because of link to app Patreon page(it was there in all previous releases).
Hope now I will be able to back this link to the app.
Re: Apple agrees to settle potential class action suit by U.S. developers
#154Re: Apple agrees to settle potential class action suit by U.S. developers
#155Earlier quoted context omitted.
> I would happily pay middle men a lot extra to get fewer unwanted emails, phone calls, or just generally more privacy. My life has changed significantly for the better ever since I signed up for this: http://33mail.com/AQwZJR3 The real trick is using a custom domain so A) They’re very unlikely to add it to their disposable email list (and thus block it) B) If this service ever goes under you can still get the emails…
On the flip side for Apple users we get up 100 Hide My Emails in iOS 15 with the same functionality.
> B) If this service ever goes under you can still get the emails you want because you own the domain they’re being sent to.
Re: Apple agrees to settle potential class action suit by U.S. developers
#156> Apple will offer more price points for apps. Today there are less than 100, but the company is committing to increase that to more than 500 options. I really hope they implemented this as an enum, so someone has to wade through: enum PricePoint { UNKNOWN = 0; NINTEY_NINE_CENTS = 1; ONE_DOLLAR = 2; TWENTY_DOLLARS = 3; NINETEY_EIGHT_CENTS = 4; DEPRECATED_NINETY_SEVEN_CENTS = 5; TEN_DOLLARS_PER_MONTH = 6; PORTUGAL_NAT…
Lol, few things trigger my OCD more than misspelled words in identifiers. I legit missed important use case while amending legacy system just because someone decided to have “priveleges” in the variable name. I hope all those ways to spell number 90 are part of the joke.
Re: Apple agrees to settle potential class action suit by U.S. developers
#157>Apple agrees to make sure the search results in the App Store are based on objective criteria. I cant help but laughed when I was reading it. What were they doing before that? I thought the most important part was the next bit, >The settlement, which must be approved by Judge Yvonne Gonzalez Rogers, comes as Apple is awaiting a ruling in a separate lawsuit, brought by Fortnite developer Epic Games, which seeks to fo…
> And let's not forget this is US only. EU are grinding their teeth. Either I am misreading this part of your comment, or you may have overlooked this paragraph: > With the exception of the fund for small developers, the rest of the changes are being made globally.
Re: Apple agrees to settle potential class action suit by U.S. developers
#158Earlier quoted context omitted.
On the flip side for Apple users we get up 100 Hide My Emails in iOS 15 with the same functionality.
How does Apple’s service handle the main functionality described above? > B) If this service ever goes under you can still get the emails you want because you own the domain they’re being sent to.
I still don’t like the UX though compared to 33mail, I still need to go into the UI, add the email I want to use and then it’ll deliver.
I’m guessing the same is true for removal, only way to turn off the address is through the portal.
If you use gWorkspace or O365, you already have this, it’s called aliases, and at least O365 gives you seemingly unlimited aliases. My big pet peeve with that was needing to go into the O365 portal and manage the aliases.
Re: Apple agrees to settle potential class action suit by U.S. developers
#159Earlier quoted context omitted.
Took a leaf out of the UNIX creat/umount handbook, clearly.
umount() is actually legit - early C limited extern identifiers to 6 chars (or rather it would allow more than that, but the rest would be silently ignored for linking purposes), hence why we also have strlen() etc. creat() is weird because create() would fit that constraint just fine, so there's no obvious reason as to why it had to be shortened. The 1978 K&R C book actually notes it with [sic].