this post was submitted on 14 Mar 2024
1 points (100.0% liked)

Proton

5003 readers
2 users here now

Empowering you to choose a better internet where privacy is the default. Protect yourself online with Proton Mail, Proton VPN, Proton Calendar, Proton Drive. Proton Pass and SimpleLogin.

Proton Mail is the world's largest secure email provider. Swiss, end-to-end encrypted, private, and free.

Proton VPN is the world’s only open-source, publicly audited, unlimited and free VPN. Swiss-based, no-ads, and no-logs.

Proton Calendar is the world's first end-to-end encrypted calendar that allows you to keep your life private.

Proton Drive is a free end-to-end encrypted cloud storage that allows you to securely backup and share your files. It's open source, publicly audited, and Swiss-based.

Proton Pass Proton Pass is a free and open-source password manager which brings a higher level of security with rigorous end-to-end encryption of all data (including usernames, URLs, notes, and more) and email alias support.

SimpleLogin lets you send and receive emails anonymously via easily-generated unique email aliases.

founded 1 year ago
MODERATORS
 

from the team:


Hi everyone,

We’re happy to announce that we’ve now launched the Proton Mail macOS and Windows apps out of beta.

Thanks to your valuable feedback, we’ve added more than 20 new features and fixes from the release of the first beta versions of the apps.

The new Proton Mail desktop apps are here to make your private inbox faster and more productive with:

🌓 Desktop-optimized design that syncs with light & dark mode

📆 Integrated Proton Calendar in app switcher

🎭 Events and hide-my-email aliases in side-panel

🔔 Dedicated app notifications

♻️ Automatic updates for the latest features & security improvements

➕ And much more

🐧If you’re a Linux user, you can join the desktop app beta here:

https://proton.me/support/mail-desktop-app

With the release of the desktop apps, Proton Mail is now available on all major desktop and mobile platforms, offering over 100 million people worldwide a private alternative to Big Tech, regardless of their device.

➡️ Learn more and get the desktop apps here: https://proton.me/blog/proton-mail-desktop-app

Access to the desktop apps is included in all Proton premium plans. Free plans come with a 14-day trial.

As always, we welcome your feedback and we’re grateful for your continuous support.

Stay safe,

Proton team

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 0 points 6 months ago (6 children)

Ah, looks like an Electron app. Disappointing, but unsurprising.

[–] [email protected] 0 points 6 months ago (1 children)

And also ironic. Because they're called Proton and they're using Electron to make their app (it's chemistry, ♀️🐶)

[–] [email protected] 0 points 6 months ago

Opposites attract

[–] [email protected] 0 points 6 months ago (2 children)

Electron app

Shame. I do my best to avoid the resource bloat of electron apps whenever possible.

I mean, when my own iron - dual 12-core 24-thread Xeon E5, 128Gb RAM - sees non-trivial impacts from just two or three Electron apps, I do my best to nip that in the bud by avoiding all that crap.

What’s so hard about building a traditional app? With DotNet you could build a single program for all three platforms, and you could bundle DotNet up into that app such that it doesn’t even need a separately-installed sandbox like Java does.

[–] [email protected] 0 points 6 months ago

As a .net dev I agree this would be ideal, but I don't do UI much these days so I don't know what's out there for frameworks right now.

I do know one thing that's out there in spades tho, and that's "full stack" JS devs. :P That's probably what's "so hard" about building a traditional app.

[–] [email protected] 0 points 6 months ago (1 children)

There aren't any great cross platform UI frameworks for .net. There are a few out there, but they are not as robust as what you can do with stuffing a react app into electron.

[–] [email protected] 0 points 6 months ago

From what I have seen, AvaloniaUI is getting really close to being the ideal framework for cross-platform desktop use. It has become very polished over the last two years.

MAUI on the other hand, has been falling flat on its face on desktop because it is geared much more towards mobile.

[–] [email protected] 0 points 6 months ago

For linux? Oh shit :(

[–] [email protected] 0 points 6 months ago (4 children)

Could you explain for a layman why this is disappointing?

[–] [email protected] 0 points 6 months ago

Plenty of companies started using electron for writing cross platform apps, these apps(electron) use JavaScript engine, which makes it easy to develop these apps but as a tradeoff it uses more system resources than your regular native apps. And when they all do it(discord, vscode, steam etc.) you ask, why the hell do I need these dedicated apps if all they do is just start up a browser? I can just open another tab in firefox or whatever and be done with it.

[–] [email protected] 0 points 6 months ago

As others said, it's basically chrome bundled with the website code so it looks like an app. And while Electron does offer devs the ability to do things a webapp can't, it still brings the chrome browser engine along with all the inefficient ram usage and potential for security flaws that implies.

[–] [email protected] 0 points 6 months ago

It’s just the web version wrapped inside an app, not an actual, true, software application.

[–] [email protected] 0 points 6 months ago (1 children)

Electron is basically the "lazy" way of doing things, and not terribly different from progressive web apps. It's basically a browser that looks like an app. And it's more resource and battery intensive.

This is my uneducated understanding so...

[–] [email protected] 0 points 6 months ago

It is truly uneducated. While it’s true that the “UI” part is web you can interface with the OS level api so it’s not that different than a real software

[–] [email protected] 0 points 6 months ago (2 children)

They could have at least used Tauri.

[–] [email protected] 0 points 6 months ago (2 children)

Not familiar with Tauri. Guess I'll go google that, but what's your reason for suggesting it as a preferable alternative?

[–] [email protected] 0 points 6 months ago (1 children)
[–] [email protected] 0 points 6 months ago

Here is an alternative Piped link(s):

https://www.piped.video/watch?v=-X8evddpu7M

Piped is a privacy-respecting open-source alternative frontend to YouTube.

I'm open-source; check me out at GitHub.

[–] [email protected] 0 points 6 months ago

Tauri uses the system’s native web rendering engine instead of shipping Chromium with the whole app. As a result you get much smaller app bundles (like 10 MB for a complex app), better startup times and less RAM usage. The downside is that you need to do slightly more testing but the end result is worth it.

[–] [email protected] 0 points 6 months ago

I agree, Electron is a nightmare to work with

[–] [email protected] 0 points 6 months ago (1 children)
[–] [email protected] 0 points 6 months ago

Good to know, thanks.