Blame


1 cc9bf8f2 2021-11-05 op <!doctype html>
2 cc9bf8f2 2021-11-05 op <html lang="en">
3 cc9bf8f2 2021-11-05 op <head>
4 cc9bf8f2 2021-11-05 op <title>Telescope</title>
5 cc9bf8f2 2021-11-05 op <meta charset="utf8">
6 cc9bf8f2 2021-11-05 op <meta name="viewport" content="width=device-width, initial-scale=1">
7 cc9bf8f2 2021-11-05 op <style>
8 cc9bf8f2 2021-11-05 op body {
9 cc9bf8f2 2021-11-05 op font-family: monospace;
10 cc9bf8f2 2021-11-05 op font-size: 14px;
11 cc9bf8f2 2021-11-05 op max-width: 780px;
12 cc9bf8f2 2021-11-05 op margin: 0 auto;
13 cc9bf8f2 2021-11-05 op padding: 20px;
14 cc9bf8f2 2021-11-05 op padding-bottom: 80px;
15 cc9bf8f2 2021-11-05 op }
16 cc9bf8f2 2021-11-05 op
17 cc9bf8f2 2021-11-05 op h1::before {
18 cc9bf8f2 2021-11-05 op content: "# ";
19 cc9bf8f2 2021-11-05 op }
20 cc9bf8f2 2021-11-05 op
21 cc9bf8f2 2021-11-05 op h2 {
22 cc9bf8f2 2021-11-05 op margin-top: 40px;
23 cc9bf8f2 2021-11-05 op }
24 cc9bf8f2 2021-11-05 op
25 cc9bf8f2 2021-11-05 op h2::before {
26 cc9bf8f2 2021-11-05 op content: "## ";
27 cc9bf8f2 2021-11-05 op }
28 cc9bf8f2 2021-11-05 op
29 cc9bf8f2 2021-11-05 op h3::before {
30 cc9bf8f2 2021-11-05 op content: "### ";
31 cc9bf8f2 2021-11-05 op }
32 cc9bf8f2 2021-11-05 op
33 cc9bf8f2 2021-11-05 op blockquote {
34 cc9bf8f2 2021-11-05 op margin: 0;
35 cc9bf8f2 2021-11-05 op padding: 0;
36 cc9bf8f2 2021-11-05 op }
37 cc9bf8f2 2021-11-05 op
38 cc9bf8f2 2021-11-05 op blockquote::before {
39 cc9bf8f2 2021-11-05 op content: "> ";
40 cc9bf8f2 2021-11-05 op }
41 cc9bf8f2 2021-11-05 op
42 cc9bf8f2 2021-11-05 op blockquote p {
43 cc9bf8f2 2021-11-05 op font-style: italic;
44 cc9bf8f2 2021-11-05 op display: inline;
45 cc9bf8f2 2021-11-05 op }
46 cc9bf8f2 2021-11-05 op
47 cc9bf8f2 2021-11-05 op p.link::before {
48 cc9bf8f2 2021-11-05 op content: "→ ";
49 cc9bf8f2 2021-11-05 op }
50 cc9bf8f2 2021-11-05 op
51 cc9bf8f2 2021-11-05 op hr {
52 cc9bf8f2 2021-11-05 op border: 0;
53 cc9bf8f2 2021-11-05 op height: 1px;
54 cc9bf8f2 2021-11-05 op background-color: #222;
55 cc9bf8f2 2021-11-05 op width: 100%;
56 cc9bf8f2 2021-11-05 op display: block;
57 cc9bf8f2 2021-11-05 op margin: 2em auto;
58 cc9bf8f2 2021-11-05 op }
59 cc9bf8f2 2021-11-05 op
60 cc9bf8f2 2021-11-05 op pre {
61 cc9bf8f2 2021-11-05 op overflow: auto;
62 cc9bf8f2 2021-11-05 op }
63 cc9bf8f2 2021-11-05 op
64 cc9bf8f2 2021-11-05 op pre.banner {
65 cc9bf8f2 2021-11-05 op display: flex;
66 cc9bf8f2 2021-11-05 op flex-direction: row;
67 cc9bf8f2 2021-11-05 op justify-content: center;
68 cc9bf8f2 2021-11-05 op }
69 cc9bf8f2 2021-11-05 op
70 cc9bf8f2 2021-11-05 op code, kbd {
71 cc9bf8f2 2021-11-05 op color: #9d109d;
72 cc9bf8f2 2021-11-05 op }
73 cc9bf8f2 2021-11-05 op
74 cc9bf8f2 2021-11-05 op img {
75 cc9bf8f2 2021-11-05 op display: block;
76 cc9bf8f2 2021-11-05 op margin: 0 auto;
77 cc9bf8f2 2021-11-05 op max-width: 100%;
78 cc9bf8f2 2021-11-05 op }
79 cc9bf8f2 2021-11-05 op
80 cc9bf8f2 2021-11-05 op @media (prefers-color-scheme: dark) {
81 cc9bf8f2 2021-11-05 op body {
82 cc9bf8f2 2021-11-05 op background-color: #222;
83 cc9bf8f2 2021-11-05 op color: white;
84 cc9bf8f2 2021-11-05 op }
85 cc9bf8f2 2021-11-05 op
86 cc9bf8f2 2021-11-05 op img {
87 cc9bf8f2 2021-11-05 op filter: brightness(0.65);
88 cc9bf8f2 2021-11-05 op transition: filter 0.2s ease-in-out;
89 cc9bf8f2 2021-11-05 op }
90 cc9bf8f2 2021-11-05 op
91 cc9bf8f2 2021-11-05 op img:hover {
92 cc9bf8f2 2021-11-05 op filter: brightness(1.0);
93 cc9bf8f2 2021-11-05 op }
94 cc9bf8f2 2021-11-05 op
95 cc9bf8f2 2021-11-05 op a {
96 cc9bf8f2 2021-11-05 op color: aqua;
97 cc9bf8f2 2021-11-05 op }
98 cc9bf8f2 2021-11-05 op
99 cc9bf8f2 2021-11-05 op hr {
100 cc9bf8f2 2021-11-05 op background-color: #ddd;
101 cc9bf8f2 2021-11-05 op }
102 cc9bf8f2 2021-11-05 op
103 cc9bf8f2 2021-11-05 op code, kbd {
104 cc9bf8f2 2021-11-05 op color: #ff4cff;
105 cc9bf8f2 2021-11-05 op }
106 cc9bf8f2 2021-11-05 op }
107 cc9bf8f2 2021-11-05 op
108 cc9bf8f2 2021-11-05 op @media (max-width: 400px) {
109 cc9bf8f2 2021-11-05 op pre.banner { font-size: 9px; }
110 cc9bf8f2 2021-11-05 op }
111 cc9bf8f2 2021-11-05 op
112 cc9bf8f2 2021-11-05 op @media (max-width: 500px) {
113 cc9bf8f2 2021-11-05 op pre.banner { font-size: 10px; }
114 cc9bf8f2 2021-11-05 op }
115 cc9bf8f2 2021-11-05 op </style>
116 cc9bf8f2 2021-11-05 op </head>
117 cc9bf8f2 2021-11-05 op <body>
118 cc9bf8f2 2021-11-05 op <header>
119 cc9bf8f2 2021-11-05 op <nav>
120 cc9bf8f2 2021-11-05 op Home | <a href="/gallery/">Gallery</a> | <a href="telescope.1.html">Docs</a>
121 cc9bf8f2 2021-11-05 op </nav>
122 cc9bf8f2 2021-11-05 op </header>
123 cc9bf8f2 2021-11-05 op <pre class="banner"> _______ __
124 cc9bf8f2 2021-11-05 op |_ _|.-----.| |.-----.-----.----.-----.-----.-----.
125 cc9bf8f2 2021-11-05 op | | | -__|| || -__|__ --| __| _ | _ | -__|
126 cc9bf8f2 2021-11-05 op |___| |_____||__||_____|_____|____|_____| __|_____|
127 d54c55fb 2021-11-29 op |__| v0.6</pre>
128 cc9bf8f2 2021-11-05 op <blockquote>
129 cc9bf8f2 2021-11-05 op <p>Telescope is a w3m-like browser for Gemini</p>
130 cc9bf8f2 2021-11-05 op </blockquote>
131 cc9bf8f2 2021-11-05 op <p>
132 cc9bf8f2 2021-11-05 op Telescope is written entirely for fun, as a hobbystic project in
133 cc9bf8f2 2021-11-05 op my free time. As such, it lacks a ton of features you’ll find
134 cc9bf8f2 2021-11-05 op in more mature Gemini browsers, but it also has some unique
135 cc9bf8f2 2021-11-05 op ones.
136 cc9bf8f2 2021-11-05 op </p>
137 cc9bf8f2 2021-11-05 op <p>
138 cc9bf8f2 2021-11-05 op The UI is strongly inspired from Emacs and W3M, so you’ll find
139 cc9bf8f2 2021-11-05 op some familiar concepts, such as the minibuffer or the tabline,
140 cc9bf8f2 2021-11-05 op and the default keybindigs also reflect this, but keys familiar
141 cc9bf8f2 2021-11-05 op for vi and CUA users are also present by default.
142 cc9bf8f2 2021-11-05 op </p>
143 cc9bf8f2 2021-11-05 op <p>
144 cc9bf8f2 2021-11-05 op <a href="https://asciinema.org/a/426862" target="_blank">
145 cc9bf8f2 2021-11-05 op <img src="https://asciinema.org/a/426862.svg" />
146 cc9bf8f2 2021-11-05 op </a>
147 cc9bf8f2 2021-11-05 op </p>
148 cc9bf8f2 2021-11-05 op <h2>Install</h2>
149 cc9bf8f2 2021-11-05 op <p>Some distros provide a package — thanks to the maintainers!</p>
150 cc9bf8f2 2021-11-05 op <a href="https://repology.org/project/telescope/versions">
151 cc9bf8f2 2021-11-05 op <img src="https://repology.org/badge/vertical-allrepos/telescope.svg" alt="Packaging status">
152 cc9bf8f2 2021-11-05 op </a>
153 cc9bf8f2 2021-11-05 op <p>Source code and precompiled binaries for linux are available:</p>
154 cc9bf8f2 2021-11-05 op <ul>
155 cc9bf8f2 2021-11-05 op <li>
156 d54c55fb 2021-11-29 op <a href="https://github.com/omar-polo/telescope/releases/download/0.6/telescope-0.6.tar.gz">
157 d54c55fb 2021-11-29 op telescope-0.6.tar.gz
158 cc9bf8f2 2021-11-05 op </a>
159 cc9bf8f2 2021-11-05 op </li>
160 cc9bf8f2 2021-11-05 op <li>
161 d54c55fb 2021-11-29 op <a href="https://github.com/omar-polo/telescope/releases/download/0.6/telescope.linux.aarch64">
162 cc9bf8f2 2021-11-05 op telescope.linux.aarch64
163 cc9bf8f2 2021-11-05 op </a>
164 cc9bf8f2 2021-11-05 op </li>
165 cc9bf8f2 2021-11-05 op <li>
166 d54c55fb 2021-11-29 op <a href="https://github.com/omar-polo/telescope/releases/download/0.6/telescope.linux.amd64">
167 cc9bf8f2 2021-11-05 op telescope.linux.amd64
168 cc9bf8f2 2021-11-05 op </a>
169 cc9bf8f2 2021-11-05 op </li>
170 cc9bf8f2 2021-11-05 op <li>
171 d54c55fb 2021-11-29 op <a href="https://github.com/omar-polo/telescope/releases/download/0.6/telescope-0.6-binaries.tar.gz">
172 d54c55fb 2021-11-29 op telescope-0.6-binaries.tar.gz
173 cc9bf8f2 2021-11-05 op </a>
174 cc9bf8f2 2021-11-05 op </li>
175 cc9bf8f2 2021-11-05 op </ul>
176 cc9bf8f2 2021-11-05 op <p>
177 cc9bf8f2 2021-11-05 op When in doubt, compile from source. It’s easy and takes less
178 cc9bf8f2 2021-11-05 op than a minute on a raspberry pi 3. The dependencies are:
179 cc9bf8f2 2021-11-05 op </p>
180 cc9bf8f2 2021-11-05 op <ul>
181 cc9bf8f2 2021-11-05 op <li>libncurses</li>
182 cc9bf8f2 2021-11-05 op <li>libevent</li>
183 cc9bf8f2 2021-11-05 op <li>libtls (from either LibreSSL or libretls)</li>
184 cc9bf8f2 2021-11-05 op <li>yacc (or GNU bison)</li>
185 cc9bf8f2 2021-11-05 op </ul>
186 cc9bf8f2 2021-11-05 op <p>Once all the dependencies are installed, building is as easy as:</p>
187 d54c55fb 2021-11-29 op <pre>$ curl -LO https://github.com/omar-polo/telescope/releases/download/0.6/telescope-0.6.tar.gz
188 d54c55fb 2021-11-29 op $ tar xzvf telescope-0.6.tar.gz
189 d54c55fb 2021-11-29 op $ cd telescope-0.6
190 cc9bf8f2 2021-11-05 op $ ./configure
191 cc9bf8f2 2021-11-05 op $ make
192 cc9bf8f2 2021-11-05 op $ sudo make install # eventually
193 cc9bf8f2 2021-11-05 op </pre>
194 cc9bf8f2 2021-11-05 op <p>
195 cc9bf8f2 2021-11-05 op A SHA256 file containing the checksums is available. However,
196 cc9bf8f2 2021-11-05 op that only checks for accidental corruption: you can use signify
197 cc9bf8f2 2021-11-05 op (<code>SHA256.sig</code> and the public key
198 d54c55fb 2021-11-29 op <code>telescope-0.6.pub</code>) or GPG. The hash of the signify
199 cc9bf8f2 2021-11-05 op public key is also included in the SHA256 file and signed with
200 cc9bf8f2 2021-11-05 op my GPG too. The signify public key for the next release
201 d54c55fb 2021-11-29 op <code>telescope-0.7.pub</code> is also included.
202 cc9bf8f2 2021-11-05 op </p>
203 cc9bf8f2 2021-11-05 op <ul>
204 cc9bf8f2 2021-11-05 op <li>
205 d54c55fb 2021-11-29 op <a href="https://github.com/omar-polo/telescope/releases/download/0.6/SHA256">
206 cc9bf8f2 2021-11-05 op SHA256
207 cc9bf8f2 2021-11-05 op </a>
208 cc9bf8f2 2021-11-05 op </li>
209 cc9bf8f2 2021-11-05 op <li>
210 d54c55fb 2021-11-29 op <a href="https://github.com/omar-polo/telescope/releases/download/0.6/SHA256.gpg">
211 cc9bf8f2 2021-11-05 op SHA256.gpg
212 cc9bf8f2 2021-11-05 op </a>
213 cc9bf8f2 2021-11-05 op </li>
214 cc9bf8f2 2021-11-05 op <li>
215 d54c55fb 2021-11-29 op <a href="https://github.com/omar-polo/telescope/releases/download/0.6/SHA256.sig">
216 cc9bf8f2 2021-11-05 op SHA256.sig
217 cc9bf8f2 2021-11-05 op </a>
218 cc9bf8f2 2021-11-05 op </li>
219 cc9bf8f2 2021-11-05 op <li>
220 d54c55fb 2021-11-29 op <a href="https://github.com/omar-polo/telescope/releases/download/0.6/telescope-0.6.pub">
221 d54c55fb 2021-11-29 op telescope-0.6.pub
222 cc9bf8f2 2021-11-05 op </a>
223 cc9bf8f2 2021-11-05 op </li>
224 cc9bf8f2 2021-11-05 op <li>
225 d54c55fb 2021-11-29 op <a href="https://github.com/omar-polo/telescope/releases/download/0.6/telescope-0.7.pub">
226 d54c55fb 2021-11-29 op telescope-0.7.pub
227 cc9bf8f2 2021-11-05 op </a>
228 cc9bf8f2 2021-11-05 op </li>
229 cc9bf8f2 2021-11-05 op </ul>
230 cc9bf8f2 2021-11-05 op <p>How to verify the signature with signify:</p>
231 cc9bf8f2 2021-11-05 op <pre>$ signify -C -p telescope-0.5.pub -x SHA256.sig
232 cc9bf8f2 2021-11-05 op Signature Verified
233 d54c55fb 2021-11-29 op telescope-0.6-binaries.tar.gz: OK
234 cc9bf8f2 2021-11-05 op telescope-0.6.pub: OK
235 d54c55fb 2021-11-29 op telescope-0.6.tar.gz: OK
236 d54c55fb 2021-11-29 op telescope-0.7.pub: OK
237 cc9bf8f2 2021-11-05 op telescope.linux.aarch64: OK
238 cc9bf8f2 2021-11-05 op telescope.linux.amd64: OK
239 cc9bf8f2 2021-11-05 op </pre>
240 cc9bf8f2 2021-11-05 op <p>Finally, it’s possible to fetch the sources using git:</p>
241 cc9bf8f2 2021-11-05 op <ul>
242 cc9bf8f2 2021-11-05 op <li>
243 cc9bf8f2 2021-11-05 op <a href="https://git.omarpolo.com/telescope/">git repository</a>
244 cc9bf8f2 2021-11-05 op </li>
245 cc9bf8f2 2021-11-05 op <li>
246 cc9bf8f2 2021-11-05 op <a href="https://github.com/omar-polo/telescope">GitHub mirror</a>
247 cc9bf8f2 2021-11-05 op </li>
248 cc9bf8f2 2021-11-05 op </ul>
249 d54c55fb 2021-11-29 op <h2>Changelog for the lastest version</h2>
250 d54c55fb 2021-11-29 op <p>0.6 “Piccola storia ignobile” — Released November 29, 2021</p>
251 d54c55fb 2021-11-29 op <h3>New features</h3>
252 cc9bf8f2 2021-11-05 op <ul>
253 d54c55fb 2021-11-29 op <li>added a pane that lists all the downloads (current or not)</li>
254 d54c55fb 2021-11-29 op <li>download-path is customizable</li>
255 cc9bf8f2 2021-11-05 op <li>
256 d54c55fb 2021-11-29 op sandbox/safe mode: telescope won't write anything to the file
257 d54c55fb 2021-11-29 op system.
258 cc9bf8f2 2021-11-05 op </li>
259 cc9bf8f2 2021-11-05 op <li>
260 d54c55fb 2021-11-29 op XDG-style directories if ~/.telescope does not exists; idea
261 d54c55fb 2021-11-29 op and implementation by Andrea Feletto, thanks! (there's a
262 d54c55fb 2021-11-29 op script also by him in contrib to migrate the setup)
263 cc9bf8f2 2021-11-05 op </li>
264 d54c55fb 2021-11-29 op </ul>
265 d54c55fb 2021-11-29 op <h3>Improvements</h3>
266 d54c55fb 2021-11-29 op <ul>
267 d54c55fb 2021-11-29 op <li>prefill the save prompt with the file name</li>
268 d54c55fb 2021-11-29 op <li>use landlock on linux if available</li>
269 cc9bf8f2 2021-11-05 op <li>
270 d54c55fb 2021-11-29 op add <code>HOSTCC</code> and <code>HOSTCFLAGS</code> variables
271 d54c55fb 2021-11-29 op for the configure script to allow cross-compiling (<code>pagebundler</code>
272 d54c55fb 2021-11-29 op needs to be built with the host compiler no matter what.)
273 d54c55fb 2021-11-29 op Prompted and tested by Nikolay Korotkiy, thanks!
274 cc9bf8f2 2021-11-05 op </li>
275 cc9bf8f2 2021-11-05 op </ul>
276 d54c55fb 2021-11-29 op <h3>Bug fixes</h3>
277 cc9bf8f2 2021-11-05 op <ul>
278 d54c55fb 2021-11-29 op <li>fix diff syntax highlighting with more than one header involved</li>
279 cc9bf8f2 2021-11-05 op <li>
280 d54c55fb 2021-11-29 op [gemini] fix item line detection: a space is required after
281 d54c55fb 2021-11-29 op the <code>*</code> character
282 cc9bf8f2 2021-11-05 op </li>
283 cc9bf8f2 2021-11-05 op <li>
284 d54c55fb 2021-11-29 op handle empty replies (i.e. no header.) Found thanks to
285 d54c55fb 2021-11-29 op ondollo' capsule :)
286 cc9bf8f2 2021-11-05 op </li>
287 d54c55fb 2021-11-29 op <li>
288 d54c55fb 2021-11-29 op fixed a crash on macOs, by Nikolay Korotkiy (sikmir on
289 d54c55fb 2021-11-29 op github). Thanks!
290 d54c55fb 2021-11-29 op </li>
291 d54c55fb 2021-11-29 op <li>
292 d54c55fb 2021-11-29 op mention that telescope expects an UTF-8 environment in the
293 d54c55fb 2021-11-29 op CAVEATS section of the manpage
294 d54c55fb 2021-11-29 op </li>
295 cc9bf8f2 2021-11-05 op </ul>
296 cc9bf8f2 2021-11-05 op </body>
297 cc9bf8f2 2021-11-05 op </html>