Masthash

#Browser

GrapheneOS
2 hours ago

Vanadium version 112.0.5615.48.0 released: https://github.com/GrapheneOS/Vanadium/releases/tag/112.0.5615.48.0.

See the linked release notes for a summary of the improvements over the previous release and a link to the full changelog.

Forum discussion thread:

https://discuss.grapheneos.org/d/4184-vanadium-version-11205615480-released

#GrapheneOS #privacy #security #browser

Okay, I've tested Vivaldi for a matter of minutes and it feels pretty great. Anyone know of major upsides / downsides, and hot customization tips? #browser #vivaldibrowser

Damon Outlaw
8 hours ago

I understand why Arc for mobile is a companion app due to WebKit and all. I still wish they would’ve just created their skin over Safari #arc #browser

TechHelpKB.com 📚
10 hours ago

#Chrome is widely known for being a #memory void, demanding a lot in terms of processing power from users. With Memory Saver turned on, a slow Chrome #browser can turn into something a lot more manageable. https://tchlp.com/40Ii6td

BinaryUnit
11 hours ago

More than once i had the need to have some sort of separator on the tabs row in the browser (not all browsers have tab grouping)

Looked it up and there was one extension that added a blank tab whenever you needed.

As i usually want to avoid extensions, i went ahead and made a simple and silly thing that actually works for me 😅

If you had the same need give it a go it might be helpful for you too https://labs.binaryunit.com/tab-separator/

#OnlineTool #WebDev #Browser

Why do you have so many tabs open when God gave you #browser history and #bookmarks!? #web

Anthony Dean
15 hours ago

What web browser(s) do you use?

#browser #tech #TwitterPollsNowPremiumFeature

Opera lanza nuevas funciones de IA en su navegador web

https://www.computekni.com/2023/03/opera-lanza-nuevas-funciones-de-ia-en.html?utm_source=dlvr.it&utm_medium=mastodon

Opera introduce nuevas funciones de inteligencia artificial en su navegador web, que permiten a los usuarios acceder y aprovechar el potencial de ChatGPT y ChatSonic desde la barra lateral y la barra de direcciones.
.
.
#opera #browser #chatgpt #

Björn 🤡
1 day ago

#Arc #Browser. Ab dem 30.03.2023 auch für #iOS. Es bleibt spannend!

https://apps.apple.com/de/app/arc-mobile-companion/id1669785846

Screenshot iOS AppStore: Arc (Browser) Mobile Companion.
Inautilo
1 day ago

#Development #Evolutions
Push notifications are now supported cross-browser · Finally, you can deliver timely and valuable notifications to your web users https://ilo.im/11z54f · by @tomayac

_____
#Browser #Chrome #Edge #Firefox #Safari #BrowserEngine #WebDevelopment #WebDev #Frontend #PWA #WebApp #PushNotifications

Amber Weinberg
1 day ago

Someone tell the #CSS and #browser gods that I really really want an "align-self: the height of the other guy" property for grid, when I'm using an image on the left and want it to be no taller than the content on the right....

BlueDot🇺🇦
1 day ago

@drahardja I view #Mastodon with a web #browser, and have no complaints about the experience at all.

fedithom
2 days ago

Ok, so with #Mozilla taking the #BluePill on the subject of #AI / #LLM (as per their newsletter on mozilla.ai today) they key question is:
What other #browser|s are out there? Obviously nothing from #Google (not sure if #Chromium is safe?). While I love the idea of #Tor, for most of my day-to-day I'm ok with slightly less bullet proof stuff. What are YOU using on your desktops and laptops?

micheldesjardins
2 days ago

ARC browser (Mac)

Arc is, by far, the best browser for Mac (iPhone and Windows coming) - for my workflow.

However, the last update has broken my ability to upload my images to Substack.

Safari does not have this problem.

#arcBrowser #browser #macintosh

heise Security
2 days ago

Google möchte Laufzeiten für TLS-Zertifikate verkürzen

Zertifikate für Web-Server sollen statt wie bisher ein Jahr nur noch maximal 90 Tage gültig sein, fordert Google – das hätte heftige Konsequenzen.

https://www.heise.de/news/Google-moechte-Laufzeiten-fuer-TLS-Zertifikate-verkuerzen-8151372.html?wt_mc=sm.red.ho.mastodon.mastodon.md_beitraege.md_beitraege

#Browser #news

Zertifikat
michabbb
2 days ago

Twemex is a #browser #extension for #Twitter that automatically surfaces the most interesting ideas.

It helps you spend less time mindlessly scrolling, and more time developing your thoughts.

https://tweethunter.io/twemex

TechHelpKB.com 📚
2 days ago

#Arc, a #browser described as an attempt to be “the web’s operating system,” is getting a companion app for #iPhones on March 30th https://tchlp.com/40GgVud

Josiah Winslow
3 days ago

Someone notified me of a weird #browser interop issue that affected my #website. Apparently in #Safari, if you've selected some text and you click a button, the text selection will be cleared.

A fix for this was annoying, but quick to write.

#webdev #JS #JavaScript

A Discord chat log, which reads as follows:

Josiah Winslow — Today at 7:19 AM
someone let me know of a weird interop issue
apparently in safari on mobile, the text selection is cleared when you press a button
the pelicanizer relies on this not happening
so i gotta change that
but not now because i'm lazy
Josiah Winslow — Today at 8:26 AM
turns out yes i *am* fixing it now because i'm too lazy to be lazy
// Change text selection in document
document.onselectionchange = () => {
  /* HACK[id=safari-selection] In Safari, clicking a button clears the text
  selection. Because the Pelicanizer relies on the text selection being
  preserved upon clicking a button, we have to find some way to preserve the
  text selection.

  To work around this, every time the text selection changes, we save all text
  selection ranges (only Firefox supports multiple ranges, but just in case),
  and whenever a Hide/Toggle/Show button is clicked, we clear the text selection
  (again, just in case) and store the saved ranges back into it.
  */

  const sel = window.getSelection();
  // If selection type isn't Range or selection has 0 ranges
  if (sel.type !== "Range" || sel.rangeCount === 0)
  {
    // We aren't selecting anything
    lastSelectionRanges = null;
    return;
  }

  // Collect all ranges in selection
  lastSelectionRanges = [];
  for (let i = 0; i < sel.rangeCount; i++)
  {
    lastSelectionRanges[i] = sel.getRangeAt(i);
  }
};
// Helper function for "___ Selected" buttons
function buildSelectedButtonHandler(action) {
  return () => {
    // Clear text selection
    const sel = window.getSelection();
    sel.removeAllRanges();

    // Add back ranges from last selection
    // LINK #safari-selection
    for (const range of lastSelectionRanges ?? [])
    {
      sel.addRange(range);
    }

    const letters = getSelectedElements()
      .filter(nodeIsVisible)
      .filter(n => n.classList.contains(PELICAN_LETTER_CLASS));
    // If there are no letters, do nothing
    if (!letters.length) return;

    shouldRegenerateImage = true;

    letters.forEach(n => {
      n.classList[action](PELICAN_LETTER_HIDDEN_CLASS);
    });
  };
}

// Click "___ Selected" buttons
hideButtonEl.onclick = buildSelectedButtonHandler("add");
showButtonEl.onclick = buildSelectedButtonHandler("remove");
toggleButtonEl.onclick = buildSelectedButtonHandler("toggle");

#Linux people:

What is your #browser of choice?

and why?

me·ta·phil, der
3 days ago

💡 #TIL #HowTo always enable #Reader mode icon in #firefox:
You have to set 'reader.parse-on-load.force-enabled' to true on the about:config page.

(Of course, Firefox #documentation was not helpful, because, why would it.)

https://support.mozilla.org/en-US/kb/firefox-reader-view-clutter-free-web-pages#firefox

#config #lifehack #mozilla #browser #clutterfree #distractionfree

Screenshot of Mozilla Firefox documentation showing how to enable the clutter-free Reader Mode for web-pages through a button in your address bar (or by pressing F9 key). Unfortunately, the button sometimes is just hidden and unavailable for reasons intransparant to the user.
TechHelpKB.com 📚
3 days ago

#Microsoft is making vertical tabs in #Edge #browser easier to use https://tchlp.com/3z7ANur

Jon S. von Tetzchner
3 days ago

Survey results:

Question : What kind of ads do you prefer (or can tolerate)?

856 voted.
62% hate all ads.
36% are OK with context sensitive ads
1% are OK with surveillance based ads
1% love all ads.

It is good to see a clear refutation of the surveillance based ads.

It is also clear that the damage that the surveillance based ads have done will take a while to heal. The sooner we ban these kind of ads, the better.

#Internet #surveillance #browser #cats

https://banspying.org

Hobson Lane
3 days ago

@aburka @BennettTomlin carbonyl is a #FOSS #browser in your terminal (including over ssh) that complies with all web standards. Under the hood html2svg at 60 fps. Launches in seconds.
https://github.com/fathyb/carbonyl

#carbonyl #chrome #chromium #firefox #librewolf #html #svg #javascript

Jason Pester (aka Jay Robbie)
3 days ago

Great news! 👀 A few weeks ago, I asked the Feedbro devs if they could enhance their Web browser plugin to better handle Mastodon RSS feeds, and the latest version 4.15.6 is already improving the Mastodon experience by displaying article titles! 👍

https://nodetics.com/feedbro

#Feedbro #RSS #Mastodon #Web #Browser #Addon #Extension

Screenshot of Feedbro version 4.15.5 Web plugin in Chromium showing no titles for Mastodon RSS feeds.
Screenshot of Feedbro version 4.15.6 Web plugin in Chromium now showing titles for Mastodon RSS feeds.
TechHelpKB.com 📚
3 days ago

#Windows11 #phishing #protection boost, #AI #chatbots compared, avoid your #browser's #password manager, Mozilla's new Trusted AI startup, 3 ways to speed up #Windows, #publishers seek payment for work used by AI, and more in this week's wrap-up https://www.techhelpkb.com/tech-wrap-up-week-12-2023/?utm_source=mastodon&utm_medium=toot&utm_campaign=wrapup

Neil Brown
3 days ago

I am playing around with Chromium-in-a-terminal graphical-yet-command-line browser, Carbonyl:

https://github.com/fathyb/carbonyl

It's rather cool for those willing to use a mouse to navigate it. At least, I haven't found a way to navigate using just my keyboard so far.

I tend to use links at the moment, but many poorly-designed sites choke it :(

(I also tried browsh, but, well, it wasn't ideal for me.)

#Linux #Browser

Which browser engine do you prefer?

I personally prefer Gecko browsers (mainly LibreWolf) but I use Ungoogled Chromium too sometimes.

#browser #blink #webkit #gecko #browserengine #webbrowser #fosserytech

ericmjl
4 days ago

'🎉 Just tried the new Arc browser by The Browser Company!

🌐 It reimagines the browser as a workspace, suitable for our multitasking lives.

🔥 Features include tabs that expire, spaces for grouping tabs, and more!

🎯 These innovations declutter the browser, improve focus, and boost productivity.

📖 Curious to know how Arc can change your browsing experience? Check out my blog post: https://ericmjl.github.io/blog/2023/3/25/arc-browser-first-impressions/

For friends in my network that would like an invite, please send me a DM!

#productivity #internet #browser

Bluelupo
4 days ago

PrivacyTests.org: open-source tests of web browser privacy

....Übersicht aller gängigen Browser (Mobil- bzw. Desktopvariante) bzgl. ihrers Verhalten gegenüber Tracking, Fingerprinting, Blocken von Trackern und weiteres.

https://privacytests.org/

#privacy #tracking #browser #fingerprinting #opensource #PrivacyTests

TechHelpKB.com 📚
4 days ago

#Privacy has moved to the forefront of the public's minds. As we use apps every day, we wonder if our data is really protected. This is where The Onion Router, or #Tor, a web #browser comes in to prove this. https://tchlp.com/3ZgaPzM

David Llewellyn-Jones
4 days ago

In search of the perfect text-based web-browser for my phone I've now got w3m, elinks and lynx installed.

The ncurses windowing of elinks is impressive, but w3m's elegant pager simplicity is giving it the lead. I just can't get enough of it.

#SailfishOS #web #browser

The w3m browser running in a terminal on Sailfish OS.
The elinks browser running in a terminal on Sailfish OS.
The lynx browser running in a terminal on Sailfish OS.
TechHelpKB.com 📚
4 days ago

The choice between a #browser #password #manager and a real password manager is clear. https://tchlp.com/3JS8LbA

Muttern ruft an. Der #Akku ihres Handys ist immer so schnell leer.

Ich komm zu Besuch. Im #Browser #Fennec 20 Tabs dauerhaft offen. Vielleicht hätte ich ihr sagen sollen, dass man die auch schließen kann.

Dann Akku angesehen. Total aufgebläht, so dass sogar schon der Bildschirm des Handys betroffen war. Den Akku hat sie sich von einem Händler andrehen lassen. Da steht 2013 drauf.

harrrrrrrrrrrr 😡

#FamilyAdmin #FamilienAdmin

Aufgeblähter Akku eines älteren Samsung Smartphones.
Johto 🐧 🎮
5 days ago

I rarely throw around the term "bloated", but... god damnnn #microsoft edge is a bloated sons-a-bitch.

Just... a million settings and clicks for a million things. Yes, an exaggeration, but still.

You think for something bundled in, it wouldn't spam you with unwanted shit right off the bat and THEN SOME. #browser #tech #os

Kathy Reid
5 days ago

This is a great article on #privacy and #browser #fingerprinting - including how to block it in browsers like @mozilla #Firefox.

I was really surprised that this was not a default setting in Firefox.

https://www.bitestring.com/posts/2023-03-19-web-fingerprinting-is-worse-than-I-thought.html

ꜱᴘᴜɴᴋʏ
5 days ago

what desktop #browser are we all using these days? I feel like a change because Edge is a bloaty mess now. 🤔

Inautilo
5 days ago

#Business #Development #Evolutions
Health benefits of browser diversity · “A pivot in strategy from Apple could open up so many doors to a healthier web” https://ilo.im/11vdd7

_____
#BrowserChoice #Browser #BrowserEngine #Chrome #Edge #Firefox #Safari #iOS #iPadOS #WebDevelopment #WebDev

#browser

I need on ubuntu 2 separated browsers, chromium stopped to work and I don't want use google's chrome. Could you recomend some good browser for ubuntu? Or should I just do separated profiles in firefox?

Gabriela Salvisberg
6 days ago

Mal ein wieder etwas nerdigerer #PCtipp-Content. Diesmal dazu, wie man #Chrome, #Edge (und teils auch #Firefox) mit bestimmten Startparametern öffnet, damit sich der #Browser z.B. direkt im Vollbild oder in einer bestimmten Grösse usw. öffnet. https://www.pctipp.ch/praxis/browser/spezielle-verknuepfungen-chrome-edge-firefox-2849177.html

David Megginson
6 days ago

The calm takeaway from this #TikTok panic should be "mobile #apps collect way too much surveillance data; I'll uninstall most of them and use the #browser."

That applies to apps from companies based in the U.S. or E.U. as much as those based in China or Russia.

#security

stark@ubuntu:~$ :idle:
6 days ago

#Microsoft thinks it will change the world with their new #AI and #Bing search, but they can't even get people to use their own #browser

This is constantly showing in my "Control Panel" on #Windows10 because I don't use #Edge. Truly pathetic and embarrassing.

An image of Microsoft suggesting the user to change to the Edge browser in the control panel of Windows 10. 

The prompt suggests to restore "recommended" settings.
Evil Roda
6 days ago

It fucking sickens me when I see sponsor spots for fucking Opera GX on YouTube videos, especially when the things they say are such bullshit. #web #internet #browser #opera #firefox #software #foss #freesoftware

Ryan Peters
1 week ago

Thinking of trying another browser. What are the hip kids using? I'm only listing browsers I haven't used full-time.

#browser #browsers #opera #vivaldi #brave #boost

Inautilo
1 week ago

#Business #Development #Explorations
Web fingerprinting is worse than I thought · The current state of web fingerprinting and how to protect yourself https://ilo.im/11tnt6

“Fingerprinting in browsers works and severely undermines our privacy.”

_____
#Fingerprinting #UserIdentification #Tracking #WebDevelopment #WebDev #Browser #Chrome #Firefox #Tor #Privacy

Ted Curran M. Ed. 🐘
1 week ago

I think I'll add it to my guidance about cleaning up your #browser window before #screensharing.

https://tedcurran.net/2023/02/clean-up-your-browser-when-screen-sharing/

#Zoom #zoomfail

@YourAnonRiots #TorBrowser should be the #default #browser for anyone with very, very few exceptions...

heise online
1 week ago

Mit Edge zum Web3: Microsoft testet eine Krypto-Wallet

Zwischen MicrosoftMitarbeitern soll eine Testversion von Edge kursieren, die eine Krypto-Wallet integriert – inklusive Links zu Krypto-Börsen.

https://www.heise.de/news/Mit-Edge-zum-Web3-Microsoft-testet-eine-Krypto-Wallet-7614625.html?wt_mc=sm.red.ho.mastodon.mastodon.md_beitraege.md_beitraege

#Browser #MicrosoftEdge #Ethereum #Kryptowährung #Microsoft #news

GrapheneOS
1 week ago

Vanadium version 111.0.5563.116.0 released: https://github.com/GrapheneOS/Vanadium/releases/tag/111.0.5563.116.0.

See the linked release notes for a summary of the improvements over the previous release and a link to the full changelog.

Forum discussion thread:

https://discuss.grapheneos.org/d/4031-vanadium-version-111055631160-released

#GrapheneOS #privacy #security #browser

FediverseTV 📺
1 week ago

#videosFTV #browser #softlibre
"Hoy veremos tips para aplicar en Abrowser el navegador 100% libres propuesto por Tisquel." Por @rikylinux_ar

https://fediverse.tv/w/pJKkpBVgC1SJL69NHXzB8L

Cliff Wade
1 week ago

I really need to find a good web browser for Windows that just works and doesn't do stupid things.

One that I can import all of my bookmarks from Edge/Chrome into it, one that uses extensions for things like BitWarden, Stylus, uBlock Origin, screenshot tool, note taking tool and a few other things.

Where to start and what to look at is the big question here.

Got suggestions? Tell me in the comments below!

#Browser #Windows #AllThingsTech

Image that says Suggestion Box.
OONI
1 week ago

Introducing OONI Probe Web 🐙✨
https://probe-web.ooni.org

In response to community feedback, we created a new browser-based censorship measurement tool.

Learn all about OONI Probe Web in our blog post: https://ooni.org/post/introducing-ooni-probe-web/

#launch #ooni #ooniprobe #ooniprobeweb #browser #censorship #measurement #opendata

Topher 🌱🐧💚
1 week ago

For typical use, do you generally run your web browser with JavaScript JIT compilation enabled, disabled, or with JavaScript disabled altogether?

#browser #security #infosec

iX Magazin
1 week ago

Konkurrenz für Chrome und Firefox? Amazon befragt Kunden zu Webbrowsern

Amazon möchte wissen, was Menschen an Browsern wichtig ist. Einige der Fragen lassen vermuten, dass der Konzern über eine Konkurrenz zu Chrome & Co. nachdenkt.

https://www.heise.de/news/Konkurrenz-fuer-Chrome-und-Firefox-Amazon-befragt-Kunden-zu-Webbrowsern-7557492.html?wt_mc=sm.red.ho.mastodon.mastodon.md_beitraege.md_beitraege

#Amazon #Browser #Chrome #Firefox #news

cyberghost
1 week ago

Not enough #tracking? What about an #Amazon web #browser with maybe their VPN embedded?

🎵 “Every breath you take
, And every move you make
, Every bond you break
, Every step you take
, I'll be watching you” 🎶

If this come to reality, I’m sure it’s for our own good and not their interests 🥰❤️

</irony>

🔗 : https://twitter.com/nicholasadeleon/status/1635318982285881344

#gafam #surveillance #surveillancecapitalism #freedom #censorship

GambaJo
1 week ago

Hö?

#Firefox auf Windows spielt seit neustem einen Sound bei Benachrichtigungen ab. Kann man das abstellen?

#Browser

TechHelpKB.com 📚
2 weeks ago

#Vivaldi #browser’s CEO doesn’t believe in the attention- and #tracking-based #advertising world we live in today, and is advocating for a radical renaissance that shifts us to a broad and #content-based approach. https://tchlp.com/3Lzezcr

You know I typically only take the piss out of @jaffathecake but I honestly really respect the work he and his team are doing on #viewTransitions

I don't even know if I care about the feature, but his dedication to the #webStandards process and immaculate communication of it is fucking admirable! #careerGoals

Do slippymaps next Jake!

>SPA view transitions land in Chrome 111 https://developer.chrome.com/blog/spa-view-transitions-land/

#webDev #web #webdevelopment #browser #google #chrome

Vivaldi
2 weeks ago

Meet Kazuhito Kidachi, a Vivaldi user from #Japan with a wealth of knowledge of browser specifications and #accessibility.

Join us as we find out why the accessibility-minded Kazuhito Kidachi chooses Vivaldi as his main #Browser ⬇️
https://vivaldi.com/blog/technology/user-story-why-accessibility-minded-kazuhito-kidachi-chooses-vivaldi/

User Story:
Kazuhito Kidachi
on Accessibility

Vivaldi
c't Magazin
2 weeks ago

heise+ | Was das zweite Mini-Funktionsupdate für Windows 11 bringt

Microsoft beschreibt das zweite Moment-Update für Windows 11 Version 22H2 als "großes Update, das den Alltag erleichtert". Wir betrachten die neuen Features.

https://www.heise.de/tests/Was-das-zweite-Mini-Funktionsupdate-fuer-Windows-11-bringt-7545177.html?wt_mc=sm.red.ho.mastodon.mastodon.md_beitraege.md_beitraege

#Bing #Browser #ChatGPT #KünstlicheIntelligenz #Spracherkennung #Suchmaschine #Windows #Windows #news

heise online
2 weeks ago

Anonymes Surfen: Brave-Browser integriert VPN- und Firewall-Dienst

Brave weitet die Verfügbarkeit des integrierten VPN- und Firewall-Dienstes auf die Desktop-Version aus. Datenschutz wird versprochen – dieser hat seinen Preis.

https://www.heise.de/news/Anonymes-Surfen-Brave-Browser-integriert-VPN-und-Firewall-Dienst-7546077.html?wt_mc=sm.red.ho.mastodon.mastodon.md_beitraege.md_beitraege

#Browser #Firewall #VPN #news

Apple,Iphone,With,Vpn,Settings,On,Screen,,Macro.,Apple,Inc.
Inautilo
2 weeks ago

#Development #Explorations
Future CSS: Anchor Positioning · “Anchor positioning might be one of the most exciting features coming to CSS” https://ilo.im/11pd5j

_____
#WebDevelopment #WebDev #Browser #Chrome #Frontend #CSS #AnchorPositioning

If you install a #PWA with a #browser it will open links in that browser instead of your default. That may not be surprising, but it's not how native applications work. #progressiveWebApps #webDev

Inautilo
2 weeks ago
Inautilo
3 weeks ago

#Development #Introductions
SPA view transitions land in Chrome 111 · The present and future of a much-requested feature from developers https://ilo.im/11lc82

_____
#Animation #WebDevelopment #WebDev #Browser #Chrome #Frontend #DOM #SPA #API #ViewTransitionAPI #JavaScript #ProgressiveEnhancement

Roni Laukkarinen
3 weeks ago

So I changed back to Chromium on Linux, found an apt version that works better.

Firefox has all kinds of quirks that I'm not very fond of, it's more strict about extension policies and scripts so most of my FF extensions are not working properly.

I'm also so used to Chrome DevTools that I can't cope with Firefox tools.

I know Google wants to track me, but I have loads of network apps that prevent it, like AdGuard Home, VPN, etc.

Dig deeper's article about browsers is top notch, TL;DR; No browser is good. Trust me, I've tried them all.

> The only reasonable choice is Pale Moon. Or, just try wean yourself off the modern web by sticking to websites such as the ones on Neocities, wiby.me, etc. which are functional in NetSurf or terminal browsers.

https://digdeeper.neocities.org/articles/browsers #Browser #Chrome #Firefox #WebDev

Inautilo
3 weeks ago
heise online
3 weeks ago

heise+ | Kurztests: Linux-Tool Flatseal, Mac-App Hookmark, Playlist-App PlaylistAI

Helfer im IT-Alltag: Flatseal für die Linux-Konfiguration, Hookmark für den Überblick auf dem Mac und PlaylistAI für die passende Wiedergabeliste.

https://www.heise.de/tests/Kurztests-Linux-Tool-Flatseal-Mac-App-Hookmark-Playlist-App-PlaylistAI-7531353.html?wt_mc=sm.red.ho.mastodon.mastodon.md_beitraege.md_beitraege

#Browser #KünstlicheIntelligenz #macOS #LinuxundOpenSource #Test #news

,
GrapheneOS
3 weeks ago

Vanadium version 111.0.5563.58.0 released: https://github.com/GrapheneOS/Vanadium/releases/tag/111.0.5563.58.0.

See the linked release notes for a summary of the improvements over the previous release and a link to the full changelog.

Forum discussion thread:

https://discuss.grapheneos.org/d/3685-vanadium-version-11105563580-released

#GrapheneOS #privacy #security #browser