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 bf34c145 2021-11-29 op |__| v0.6.1</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 6593717e 2021-11-29 op <p>Source code is available:</p>
154 cc9bf8f2 2021-11-05 op <ul>
155 cc9bf8f2 2021-11-05 op <li>
156 bf34c145 2021-11-29 op <a href="https://github.com/omar-polo/telescope/releases/download/0.6.1/telescope-0.6.1.tar.gz">
157 bf34c145 2021-11-29 op telescope-0.6.1.tar.gz
158 cc9bf8f2 2021-11-05 op </a>
159 cc9bf8f2 2021-11-05 op </li>
160 cc9bf8f2 2021-11-05 op </ul>
161 cc9bf8f2 2021-11-05 op <p>
162 cc9bf8f2 2021-11-05 op When in doubt, compile from source. It’s easy and takes less
163 cc9bf8f2 2021-11-05 op than a minute on a raspberry pi 3. The dependencies are:
164 cc9bf8f2 2021-11-05 op </p>
165 cc9bf8f2 2021-11-05 op <ul>
166 cc9bf8f2 2021-11-05 op <li>libncurses</li>
167 cc9bf8f2 2021-11-05 op <li>libevent</li>
168 cc9bf8f2 2021-11-05 op <li>libtls (from either LibreSSL or libretls)</li>
169 cc9bf8f2 2021-11-05 op <li>yacc (or GNU bison)</li>
170 cc9bf8f2 2021-11-05 op </ul>
171 cc9bf8f2 2021-11-05 op <p>Once all the dependencies are installed, building is as easy as:</p>
172 bf34c145 2021-11-29 op <pre>$ curl -LO https://github.com/omar-polo/telescope/releases/download/0.6.1/telescope-0.6.1.tar.gz
173 bf34c145 2021-11-29 op $ tar xzvf telescope-0.6.1.tar.gz
174 bf34c145 2021-11-29 op $ cd telescope-0.6.1
175 cc9bf8f2 2021-11-05 op $ ./configure
176 cc9bf8f2 2021-11-05 op $ make
177 cc9bf8f2 2021-11-05 op $ sudo make install # eventually
178 cc9bf8f2 2021-11-05 op </pre>
179 cc9bf8f2 2021-11-05 op <p>
180 cc9bf8f2 2021-11-05 op A SHA256 file containing the checksums is available. However,
181 cc9bf8f2 2021-11-05 op that only checks for accidental corruption: you can use signify
182 cc9bf8f2 2021-11-05 op (<code>SHA256.sig</code> and the public key
183 d54c55fb 2021-11-29 op <code>telescope-0.6.pub</code>) or GPG. The hash of the signify
184 cc9bf8f2 2021-11-05 op public key is also included in the SHA256 file and signed with
185 cc9bf8f2 2021-11-05 op my GPG too. The signify public key for the next release
186 d54c55fb 2021-11-29 op <code>telescope-0.7.pub</code> is also included.
187 cc9bf8f2 2021-11-05 op </p>
188 cc9bf8f2 2021-11-05 op <ul>
189 cc9bf8f2 2021-11-05 op <li>
190 bf34c145 2021-11-29 op <a href="https://github.com/omar-polo/telescope/releases/download/0.6.1/SHA256">
191 cc9bf8f2 2021-11-05 op SHA256
192 cc9bf8f2 2021-11-05 op </a>
193 cc9bf8f2 2021-11-05 op </li>
194 cc9bf8f2 2021-11-05 op <li>
195 bf34c145 2021-11-29 op <a href="https://github.com/omar-polo/telescope/releases/download/0.6.1/SHA256.gpg">
196 cc9bf8f2 2021-11-05 op SHA256.gpg
197 cc9bf8f2 2021-11-05 op </a>
198 cc9bf8f2 2021-11-05 op </li>
199 cc9bf8f2 2021-11-05 op <li>
200 bf34c145 2021-11-29 op <a href="https://github.com/omar-polo/telescope/releases/download/0.6.1/SHA256.sig">
201 cc9bf8f2 2021-11-05 op SHA256.sig
202 cc9bf8f2 2021-11-05 op </a>
203 cc9bf8f2 2021-11-05 op </li>
204 cc9bf8f2 2021-11-05 op <li>
205 bf34c145 2021-11-29 op <a href="https://github.com/omar-polo/telescope/releases/download/0.6.1/telescope-0.6.pub">
206 d54c55fb 2021-11-29 op telescope-0.6.pub
207 cc9bf8f2 2021-11-05 op </a>
208 cc9bf8f2 2021-11-05 op </li>
209 cc9bf8f2 2021-11-05 op <li>
210 bf34c145 2021-11-29 op <a href="https://github.com/omar-polo/telescope/releases/download/0.6.1/telescope-0.7.pub">
211 d54c55fb 2021-11-29 op telescope-0.7.pub
212 cc9bf8f2 2021-11-05 op </a>
213 cc9bf8f2 2021-11-05 op </li>
214 cc9bf8f2 2021-11-05 op </ul>
215 cc9bf8f2 2021-11-05 op <p>How to verify the signature with signify:</p>
216 cc9bf8f2 2021-11-05 op <pre>$ signify -C -p telescope-0.5.pub -x SHA256.sig
217 cc9bf8f2 2021-11-05 op Signature Verified
218 cc9bf8f2 2021-11-05 op telescope-0.6.pub: OK
219 bf34c145 2021-11-29 op telescope-0.6.1.tar.gz: OK
220 d54c55fb 2021-11-29 op telescope-0.7.pub: OK
221 cc9bf8f2 2021-11-05 op telescope.linux.aarch64: OK
222 cc9bf8f2 2021-11-05 op telescope.linux.amd64: OK
223 cc9bf8f2 2021-11-05 op </pre>
224 cc9bf8f2 2021-11-05 op <p>Finally, it’s possible to fetch the sources using git:</p>
225 cc9bf8f2 2021-11-05 op <ul>
226 cc9bf8f2 2021-11-05 op <li>
227 cc9bf8f2 2021-11-05 op <a href="https://git.omarpolo.com/telescope/">git repository</a>
228 cc9bf8f2 2021-11-05 op </li>
229 cc9bf8f2 2021-11-05 op <li>
230 cc9bf8f2 2021-11-05 op <a href="https://github.com/omar-polo/telescope">GitHub mirror</a>
231 cc9bf8f2 2021-11-05 op </li>
232 cc9bf8f2 2021-11-05 op </ul>
233 bf34c145 2021-11-29 op <h2>Changelog</h2>
234 bf34c145 2021-11-29 op <p>0.6.1 “Piccola storia ignobile” bugfix release — Released November 29, 2021</p>
235 bf34c145 2021-11-29 op <ul>
236 bf34c145 2021-11-29 op <li>
237 bf34c145 2021-11-29 op Handle gracefully when landlock is disabled at runtime.
238 bf34c145 2021-11-29 op Reported and tested by Nikolay Korotkiy, thanks!
239 bf34c145 2021-11-29 op </li>
240 bf34c145 2021-11-29 op </ul>
241 bf34c145 2021-11-29 op <hr />
242 d54c55fb 2021-11-29 op <p>0.6 “Piccola storia ignobile” — Released November 29, 2021</p>
243 d54c55fb 2021-11-29 op <h3>New features</h3>
244 cc9bf8f2 2021-11-05 op <ul>
245 d54c55fb 2021-11-29 op <li>added a pane that lists all the downloads (current or not)</li>
246 d54c55fb 2021-11-29 op <li>download-path is customizable</li>
247 cc9bf8f2 2021-11-05 op <li>
248 d54c55fb 2021-11-29 op sandbox/safe mode: telescope won't write anything to the file
249 d54c55fb 2021-11-29 op system.
250 cc9bf8f2 2021-11-05 op </li>
251 cc9bf8f2 2021-11-05 op <li>
252 d54c55fb 2021-11-29 op XDG-style directories if ~/.telescope does not exists; idea
253 d54c55fb 2021-11-29 op and implementation by Andrea Feletto, thanks! (there's a
254 d54c55fb 2021-11-29 op script also by him in contrib to migrate the setup)
255 cc9bf8f2 2021-11-05 op </li>
256 d54c55fb 2021-11-29 op </ul>
257 d54c55fb 2021-11-29 op <h3>Improvements</h3>
258 d54c55fb 2021-11-29 op <ul>
259 d54c55fb 2021-11-29 op <li>prefill the save prompt with the file name</li>
260 d54c55fb 2021-11-29 op <li>use landlock on linux if available</li>
261 cc9bf8f2 2021-11-05 op <li>
262 d54c55fb 2021-11-29 op add <code>HOSTCC</code> and <code>HOSTCFLAGS</code> variables
263 d54c55fb 2021-11-29 op for the configure script to allow cross-compiling (<code>pagebundler</code>
264 d54c55fb 2021-11-29 op needs to be built with the host compiler no matter what.)
265 d54c55fb 2021-11-29 op Prompted and tested by Nikolay Korotkiy, thanks!
266 cc9bf8f2 2021-11-05 op </li>
267 cc9bf8f2 2021-11-05 op </ul>
268 d54c55fb 2021-11-29 op <h3>Bug fixes</h3>
269 cc9bf8f2 2021-11-05 op <ul>
270 d54c55fb 2021-11-29 op <li>fix diff syntax highlighting with more than one header involved</li>
271 cc9bf8f2 2021-11-05 op <li>
272 d54c55fb 2021-11-29 op [gemini] fix item line detection: a space is required after
273 d54c55fb 2021-11-29 op the <code>*</code> character
274 cc9bf8f2 2021-11-05 op </li>
275 cc9bf8f2 2021-11-05 op <li>
276 d54c55fb 2021-11-29 op handle empty replies (i.e. no header.) Found thanks to
277 d54c55fb 2021-11-29 op ondollo' capsule :)
278 cc9bf8f2 2021-11-05 op </li>
279 d54c55fb 2021-11-29 op <li>
280 d54c55fb 2021-11-29 op fixed a crash on macOs, by Nikolay Korotkiy (sikmir on
281 d54c55fb 2021-11-29 op github). Thanks!
282 d54c55fb 2021-11-29 op </li>
283 d54c55fb 2021-11-29 op <li>
284 d54c55fb 2021-11-29 op mention that telescope expects an UTF-8 environment in the
285 d54c55fb 2021-11-29 op CAVEATS section of the manpage
286 d54c55fb 2021-11-29 op </li>
287 cc9bf8f2 2021-11-05 op </ul>
288 cc9bf8f2 2021-11-05 op </body>
289 cc9bf8f2 2021-11-05 op </html>