this post was submitted on 13 Mar 2024
969 points (98.9% liked)

Technology

57455 readers
6838 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
 

Firefox spokesperson Christopher Hilton tells The Verge that the browser has seen a more than 50 percent jump in users in Germany and a nearly 30 percent increase in France.

Brave saw a similar increase in users after Apple started letting users choose their default browsers on iOS 17.4 in the EU last week.

you are viewing a single comment's thread
view the rest of the comments
[–] darkevilmac@lemmy.zip 50 points 5 months ago (1 children)

I believe part of the DMA means that they're allowed to use their own engines. Whether they have that ready right now I'm not sure, but I'm sure it's in the works.

[–] cybersandwich@lemmy.world 14 points 5 months ago (3 children)

I thought Firefox said that they were going to have to write two different browsers so they weren't going to.

[–] Ghostalmedia@lemmy.world 16 points 5 months ago

They are still exploring options. They’ve told the press that all the iOS gecko work is still being researched.

https://www.theregister.com/2023/02/07/mozilla_google_apple_webkit/

[–] bassomitron@lemmy.world 11 points 5 months ago (3 children)

Why would they? They already have a Mac build, I can't imagine it'd be that huge of a difference, but maybe iOS is a lot more different than I realize.

[–] AProfessional@lemmy.world 23 points 5 months ago* (last edited 5 months ago) (1 children)

The new browser option iOS exposed is a very strict and limiting custom API to make a browser engine. It’s purposefully obtuse to be terrible but compliant.

[–] rambaroo@lemmynsfw.com 8 points 5 months ago

They should be fined for this too. Deliberately obfuscating the solution isn't compliance.

[–] dustyData@lemmy.world 5 points 5 months ago (2 children)

Despite Apple's lies, iOS and macOS are still pretty different beasts with their own quirks. And iOS is way more tightly locked down and under Apple's thumb than macs.

[–] bassomitron@lemmy.world 3 points 5 months ago

I suppose I'm not surprised. Typical Apple shenanigans.

[–] abhibeckert@lemmy.world -1 points 5 months ago* (last edited 5 months ago)

Uh, no they're not. They have the core operating system.

The only real difference is the security model (as you say, tightly locked down), but MacOS has been gradually adopting a lot of that over time. For example / used to be an ordinary volume - these days it's mounted read only and can't be written to even with sudo. iOS has always been like that.

They are different operating systems, but only because it's easier to make a change on one of them, then port that change to the other one later. Possibly years later. In general, they're pretty close. The main difference is the hardware, not the operating system.

[–] abhibeckert@lemmy.world 4 points 5 months ago* (last edited 5 months ago)

The APIs are similar but the hardware requires a different appraoch.

For example touch screen input is very different to mouse input - you need to decifer imprecise user input... and then provide precise input to webpages that are designed assuming the user has a mouse. There are touch APIs on the web, but developers tend not to use those APIs because dealing with imprecise input sucks. For example press a link with your thumb, it will highlight. Lift your thumb, it will go to the link. But if you press, then move your thumb, then release... instead of clicking the link it scrolls the page. Unless you move only a little bit - then it does click...

And the only way to get "all day" battery life out of a 10Wh battery is by keeping the CPU powered off most of the day. Figuring out how to maintain the current state of the webpage, so it can be restored if the CPU is powered off and back on again, without breaking things like JavaScript timers/etc.

FireFox has solved those issues (and others) on Android. But while Android has similar hardware, that operating system is nothing like iOS.

All the work to get Gecko working on Android made sense back int he day, when Android didn't have a good rendering engine. It would have also made sense back in the early days of the iPhone when WebKit was nowhere near as good as it is now. But today, when someone else has already figured out solutions to every problem? Is it worth reinventing all those wheels?