i'd like to see a revival of webkit and an open source browser that uses it
Linux
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
There was a gpl licensed browser engine someone by hobby is writing from scratch. I think theese companies supporting ladybird just do so because of license that they can proprietarify(like chromium)
I feel like this is a dumb question but why do web engines need constant development? I thought we had an established standard for HTML. Once a web engine matches that standard isn't that sufficient?
HTML used to be a pretty set standard, maintained by the W3C. HTML5 was retired in 2018 (5.2 in 2021). Now it is a Living Standard that changes often and is maintained by a consortium of browser vendors.
It is also not the only technology being changed.
Some of the new features most people aren't aware of us that I used recently :
- WebXR, make a Web page immersive and work in the browser of VR/AR headsets, e.g Meta Quest, Lynx XR1, Apple Vision Pro, etc
- WebBlueTooth, connect to a BT device, e.g a Lego controller in order to move actuator, data from sensors, etc
- WebUSB, connect a device and update its firmware, e.g SmartWatch, mechanical keyboard, etc
- GamePad API, use a gamepad or joystick to play from a browser window
- Realms in JavaScript for "better" sandboxing, it's a relatively new feature of the language so the engine must be updated
So... sure none of that really helps to read a 2D Web page (like this one on Lemmy) but they pretty much all help to achieve better cross-platform support. By using the Web rather than native to connect to hardware then it is instantly delivered without having any OS specific driver to build and install. Practically speaking it does make the browser increasingly complex but IMHO it is worth it.
PS: I probably also used some modern CSS so there also the engine (which is ridiculously complex by the way) has to be updated too.