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