Commit Briefs

Omar Polo

mention -C in usage()


Omar Polo

add a safe/sandbox mode

When enabled with the -S (or --safe) flag, prevent telescope from writing files to the disk.


Omar Polo

reset download byte counter



Omar Polo

handle_maybe_save_page: prefill with the path

improve the download procedure by pre-filling the minibuffer with /tmp/<file-name>. At the moment ``/tmp/'' is hardcoded. Idea from a conversation with hurricane, thanks!


Omar Polo

gopher: don't skip the initial /

some gopher servers requires the selector to start with a slash. Or maybe it's the other way around, and some servers are too much forgiving.



Omar Polo

style(9)


Omar Polo

improve crash detection

Create a file ~/.telescope/crashed on startup and unlink it on shutdown. If it's present on startup, it means that last time we crashed. It's like the ``dirty'' bit on filesystems to guard for unproper unmounts.



Omar Polo

simplify comment


Omar Polo

drop unused headers


Omar Polo

move more stuff outta telescope.c



Omar Polo

add autosave timer for the session

This is achieved by calling `autosave_hook' in interesting places, like new_tab or free_tab. It'll set up a timer to later persist the session. This is particularly useful to avoid loosing tabs on the event of a crash or unexpected system halt, or other similar event.