From e75605959e02a6322de61714fcd5f025ed7bb64c Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Thu, 14 Mar 2024 14:53:37 -0300 Subject: cleanup & add list of similar projects --- README.md | 22 +++++++++++++++++++++- TODO.md | 9 +++++---- user-scripts/debian-12/rose-GIO_MODULE_DIR.desktop | 9 --------- user-scripts/debian-12/rose.desktop | 2 +- user-scripts/debian-12/rose.sh | 3 --- 5 files changed, 27 insertions(+), 18 deletions(-) delete mode 100755 user-scripts/debian-12/rose-GIO_MODULE_DIR.desktop delete mode 100755 user-scripts/debian-12/rose.sh diff --git a/README.md b/README.md index 0770103..01f360a 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,27 @@ You can also create a rose.desktop file so that it will show up in your desktop You can see some screenshots in the [images](./images) folder. -## Comparisons +## Similar projects + +Here are some similar projects that I could find (minimalist, mostly based on webkit): + +- [Surf](https://git.suckless.org/surf/). Suckless community. Similar goals, higher coding standards, less actively maintained. +- [Rose](https://github.com/mini-rose/rose-browser). Lua integrations, supports compilation with GTK4. Every now and then, the developer nukes the git history and tries some different approach. +- [Epiphany](https://gitlab.gnome.org/GNOME/epiphany). GNOME. Clean browser, distributed via flathub, aimed at nontechnical users. Seems actively maintained. +- [Vimb](https://github.com/fanglingsu/vimb). Reasonably actively maintained, vim keybindings. +- [Nyxt](https://github.com/atlas-engineer/nyxt). Emphasis on sophisticated key bindings. +- [Wyeb](https://github.com/jun7/wyeb) +- [Luakit](https://github.com/luakit/luakit) +- ~~[Qutebrowser](https://github.com/qutebrowser/qutebrowser). More actively maintained. I don't understand the tech stack.~~ [Based](https://github.com/qutebrowser/qutebrowser/blob/main/doc/faq.asciidoc) on [Chromium](https://wiki.qt.io/QtWebEngine) + +Here are other projects I haven't checked out as much: [netsurf](https://www.netsurf-browser.org/), [uzbl](https://www.uzbl.org/), [edbrowse](https://github.com/CMB/edbrowse), + +Here are projects with their own rendering engines which could appeal to users of rosenrot: + +- [lynx](https://lynx.invisible-island.net/) (links, elinks), [w3m](https://w3m.sourceforge.net/): command line browsers. +- [dillo](https://github.com/dillo-browser/dillo/). Has its own rendering engine, and no javascript. +- [Ladybird](https://github.com/SerenityOS/serenity/tree/master/Ladybird). SerenityOS. Uses its own html and javascript engine. Compiling it on a mainstream Linux distribution, and documenting instructions could be an interesting project, but the few times I've tried that I've failed. +- [servo](https://github.com/servo/servo). Firefox/Mozilla. An in-development browser engine written in Rust, meant to replace Gecko. Could be extremely cool once it is ready, but it has been many years in development. ### Relationship with [rose](https://github.com/mini-rose/rose) diff --git a/TODO.md b/TODO.md index b54933c..63ec9f2 100644 --- a/TODO.md +++ b/TODO.md @@ -3,16 +3,12 @@ ## Quality of life: - [ ] Document creating new applications, e.g., as in [Asana for Linux](https://git.nunosempere.com/NunoSempere/asana-for-linux) -- [ ] Add list of similar projects: - - [x] Compare against rose - - [x] Compare against surf - [ ] Set [`webkit_web_context_set_sandbox_enabled`](), as recommended [here]() - [ ] Use something other than Whatsapp as an example syslink. - [ ] Fix bug about distorted audio. Maybe related to [this pipewire issue]()? - [ ] Upgrade to GTK-4 / Webkitgtk 6.0? Will take a fair amount of time, since these are not available on Ubuntu 20.04. - Instructions for webkit-6.0 [here](https://github.com/WebKit/WebKit/blob/ed1422596dce5ff012e64a38faf402ac1674fc7e/Source/WebKit/gtk/migrating-to-webkitgtk-6.0.md) - Instructions for GTK-4 [here](https://docs.gtk.org/gtk4/migrating-3to4.html) - - [ ] Update to webkit2gtk-4.1 - [ ] Prepare for GTK-3 to GTK-4 transition - [ ] Understand wtf is going on with signals and events: . - [ ] Remove webkit2gtk-4.1 and download webkit2gtk-6.0 @@ -21,6 +17,11 @@ # Previously done +- [x] Update to webkit2gtk-4.1 +- [x] Add list of similar projects: +- [x] Add comparisons against rose & surf + - [x] Compare against rose + - [x] Compare against surf - [x] ~~Doesn't work with when Spanish is selected as the language, for some reason~~ => Previously misdiagnosed. The real issue was that it freezes when interacting with [Espanso](https://espanso.org/) substitutions, which I had set-up automatically on my machine when using words containing an ñ, like my own name, Nuño. - [x] Add css for js alerts - [x] Add custom alert whose css can be customized diff --git a/user-scripts/debian-12/rose-GIO_MODULE_DIR.desktop b/user-scripts/debian-12/rose-GIO_MODULE_DIR.desktop deleted file mode 100755 index 9eb5add..0000000 --- a/user-scripts/debian-12/rose-GIO_MODULE_DIR.desktop +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env xdg-open -[Desktop Entry] -Version=1.0 -Type=Application -Terminal=false -Exec=/home/nuno/Documents/workspace/rosenrot/user-scripts/ubuntu-20.04/rose.sh %u -Name=Rose -Comment=Minimalistic browser -Icon=/home/nuno/Documents/workspace/rosenrot/user-scripts/ubuntu-20.04/rose-images/rose-desktop-icon.png diff --git a/user-scripts/debian-12/rose.desktop b/user-scripts/debian-12/rose.desktop index 94e5b04..c970b7a 100755 --- a/user-scripts/debian-12/rose.desktop +++ b/user-scripts/debian-12/rose.desktop @@ -6,4 +6,4 @@ Terminal=false Exec=/bin/rose %u Name=Rose Comment=Minimalistic browser -Icon=/home/nuno/Documents/workspace/rosenrot/user-scripts/ubuntu-20.04/rose-images/rose-desktop-icon.png +Icon=/home/nuno/Documents/workspace/rosenrot/user-scripts/debian-12/rose-images/rose-desktop-icon.png diff --git a/user-scripts/debian-12/rose.sh b/user-scripts/debian-12/rose.sh deleted file mode 100755 index 62baac9..0000000 --- a/user-scripts/debian-12/rose.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -GIO_MODULE_DIR=/usr/lib/x86_64-linux-gnu/gio/modules/ /bin/rose "$1" - -- cgit v1.2.3