Blob


1 <div class="banner">
2 ``` Ascii art of the word “Telescope” and “vCURRV”
3 _______ __
4 |_ _|.-----.| |.-----.-----.----.-----.-----.-----.
5 | | | -__|| || -__|__ --| __| _ | _ | -__|
6 |___| |_____||__||_____|_____|____|_____| __|_____|
7 |__| vCURRV
8 ```
9 </div>
11 > Telescope is a w3m-like browser for Gemini.
13 <section class="with-image">
14 <img src="logo.small.png" alt="the teleoscope logo: a telescope on a tripode with a city and the earth seen from space in the background, with some stars behind" title='Telescope logo -- by freezr'>
15 <div>
17 Telescope is written entirely for fun, as a hobbystic project in my free time. As such, it lacks a ton of features you’ll find in more mature Gemini browsers, but it also has some unique ones.
19 => telescope.1.MANEXT documentation
21 The UI is strongly inspired from Emacs and W3M, so you’ll find some familiar concepts, such as the minibuffer or the tabline, and the default keybindigs also reflect this, but care has been taken to add keys familiar for vi and CUA users too.
22 </div>
23 </section>
25 <p><a href="https://asciinema.org/a/426862" target="_blank"><img src="https://asciinema.org/a/426862.svg" /></a></p>
26 => https://asciinema.org/a/426862 Asciinema record
28 ## Install
30 <p class='repology'><a href='REPOLOGY_URL'><img src='REPOLOGY_BANNER' alt='distro that provide a telescope package' /></a></p>
31 => REPOLOGY_URL Some distros provide a package — thanks to the maintainers!
33 Source code and precompiled binaries for linux are available:
35 => https://github.com/omar-polo/telescope/releases/download/0.8.1/telescope-0.8.1.tar.gz telescope-0.8.1.tar.gz
37 => https://git.omarpolo.com/?index_page=&path=telescope.git&action=summary git repository
38 => https://codeberg.org/op/telescope/ Codeberg mirror
39 => https://github.com/omar-polo/telescope GitHub mirror
41 => https://github.com/omar-polo/telescope/releases/download/0.8/telescope.amd64 telescope.amd64
43 The dependencies are:
44 * libncurses
45 * libevent
46 * libtls (from either LibreSSL or libretls)
47 * yacc (or GNU bison)
49 Once all the dependencies are installed, building is as easy as:
51 ```Example of how to compile from source
52 $ curl -LO https://github.com/omar-polo/telescope/releases/download/0.8.1/telescope-0.8.1.tar.gz
53 $ tar xzvf telescope-0.8.1.tar.gz
54 $ cd telescope-0.8.1
55 $ ./configure
56 $ make
57 $ sudo make install # eventually
58 ```
60 A SHA256 file containing the checksums is available. However, that only checks for accidental corruption: you can use signify (SHA256.sig and the public key telescope-0.8.pub). The hash of the current and next signify public key is also included in the SHA256.
62 => https://github.com/omar-polo/telescope/releases/download/0.8.1/SHA256 SHA256
63 => https://github.com/omar-polo/telescope/releases/download/0.8.1/SHA256.sig SHA256.sig
64 => https://github.com/omar-polo/telescope/releases/download/0.8.1/telescope-0.8.pub telescope-0.8.pub
65 => https://github.com/omar-polo/telescope/releases/download/0.8.1/telescope-0.9.pub telescope-0.9.pub
67 ```Example of how to verify the signature with signify
68 $ signify -C -p telescope-0.8.pub -x SHA256.sig
69 Signature Verified
70 telescope-0.8-binaries.tar.gz: OK
71 telescope-0.8.1.tar.gz: OK
72 telescope-0.8.pub: OK
73 telescope-0.9.pub: OK
74 telescope.amd64: OK
75 ```
78 ## Changelog
80 0.8.1 “Le Scarpe Volanti” buildfix release — Released May 25, 2022
82 * Fix the build on macos. Reported by sikmir, thanks!
85 0.8 “Le Scarpe Volanti” — Released May 25, 2022
87 ### New features
88 * save and restore scroll position
89 * new command reply-last-input; idea from a conversation with thfr@, thanks!
90 * allow push urls to an already opened telescope session
91 * autocompletions for load-url and load-current-url
92 * new command write-buffer (with alias w)
93 * new command mini-kill-whole-line for the minibuffer
94 * split the minibuffer input into words and try to match out of order
96 ### Improvements
97 * move aliases at the top of the completions
98 * add alias `open' for load-url; suggested by Florian, thanks!
99 * update emoji-data.txt to 14.0.0
100 * persist the list of visited URLs to the disk
101 * fix builds out-of-tree
102 * correctly mark variables in the manpage so it's possible to jump to them
103 * rework completions selection: the selected entry is *always* the one used. if nothing is selected, the minibuffer content is used instead.
104 * merge the ui and fs processes
105 * rate-limit the update of the download pane
107 ### Bug Fixes
108 * fix parsing of invalid link lines
109 * initialize each tab' loadingev timer event
110 * fix the build on recent version of musl