summaryrefslogtreecommitdiff
path: root/res/about
diff options
context:
space:
mode:
Diffstat (limited to 'res/about')
-rw-r--r--res/about/help.gmi173
-rw-r--r--res/about/license.gmi105
-rw-r--r--res/about/version.gmi15
3 files changed, 184 insertions, 109 deletions
diff --git a/res/about/help.gmi b/res/about/help.gmi
index dccef9f8..ca5e164f 100644
--- a/res/about/help.gmi
+++ b/res/about/help.gmi
@@ -12,6 +12,7 @@ Lagrange is a GUI client for browsing Geminispace. It offers modern conveniences
12 12
13Like Gemini, Lagrange has been designed with minimalism in mind. It depends on a small number of essential libraries. It is written in C and uses SDL for hardware-accelerated graphics. OpenSSL is used for secure communications. 13Like Gemini, Lagrange has been designed with minimalism in mind. It depends on a small number of essential libraries. It is written in C and uses SDL for hardware-accelerated graphics. OpenSSL is used for secure communications.
14 14
15=> about:lagrange About Lagrange
15=> https://www.libsdl.org SDL: Simple DirectMedia Layer 16=> https://www.libsdl.org SDL: Simple DirectMedia Layer
16=> https://www.openssl.org OpenSSL: Cryptography and SSL/TLS Toolkit 17=> https://www.openssl.org OpenSSL: Cryptography and SSL/TLS Toolkit
17 18
@@ -59,13 +60,17 @@ Lagrange's user interface is modeled after web browsers:
59* There is a sidebar for managing bookmarks and TLS identities, and viewing history and the page outline. The sidebar is hidden by default. 60* There is a sidebar for managing bookmarks and TLS identities, and viewing history and the page outline. The sidebar is hidden by default.
60* There is a search bar that appears at the bottom when searching text on the page. 61* There is a search bar that appears at the bottom when searching text on the page.
61 62
63Tip: Try pressing ${CTRL+}4 now to see the page outline.
64
62## URL entry and quick search 65## URL entry and quick search
63 66
64The URL input field is in its typical location in the navigation bar. It can be accessed quickly by pressing ${CTRL+}L. 67The URL input field is in its typical location in the navigation bar. It can be accessed quickly by pressing ${CTRL+}L.
65 68
66As you enter text, Lagrange starts looking for matches in bookmarks, history, content of cached pages, and identities. Search terms are case insensitive, and if many words are entered, they are all required to appear in the specified order in any matched content. Search of cached pages is limited to the (small) set of pages that Lagrange keeps in memory for back navigation. 69As you enter text, Lagrange starts looking for matches in bookmarks, history, content of cached pages, and identities. Search results appear below the URL input field in a popup. Press Tab or ↓ to switch input focus to the results.
70
71Search within cached pages is limited to the (small) set of pages that Lagrange keeps in memory for back navigation. Search terms are case insensitive, and if many words are entered, they are all required to appear in the specified order in any matched content.
67 72
68Press Tab or ↓ to switch input focus to the search results. 73Note that the navigation stack is saved to a file when Lagrange is shut down and restored on the next launch. This means the next time you launch Lagrange, you can still search the contents of past pages. However, navigation stacks are tab-specific, so closing a tab will delete its history as well.
69 74
70## Tabs 75## Tabs
71 76
@@ -86,6 +91,8 @@ ${CTRL+}1 through ${CTRL+}4 switch between the sidebar tabs, or hide the sidebar
86 91
87## Navigation 92## Navigation
88 93
94When navigating to a new page, the old page is cached in memory. If you navigate back, the cached copy of the page is restored. Think of it as rewinding time — you return to a past time as if nothing had happened. The same applies to forward navigation; cached pages are loaded if available. This allows back and forward navigation to happen instantly, without any network requests.
95
89### Link icons 96### Link icons
90 97
91The type and destination of a link are indicated by the link's icon and color: ➤ links to the same domain, and 🌐 to a different domain. The colors are: 98The type and destination of a link are indicated by the link's icon and color: ➤ links to the same domain, and 🌐 to a different domain. The colors are:
@@ -103,17 +110,60 @@ When navigating via keyboard, hold down ${ALT} to see link shortcut keys. Try do
103 110
104Each visible link on the page gets an alphanumeric shortcut. For example, the first link can be opened by pressing ${ALT+}1. The tenth link is ${ALT+}A. Additionally hold down ${CTRL} to open the link in a new tab. 111Each visible link on the page gets an alphanumeric shortcut. For example, the first link can be opened by pressing ${ALT+}1. The tenth link is ${ALT+}A. Additionally hold down ${CTRL} to open the link in a new tab.
105 112
113## Downloads
114
115Press ${CTRL+}S to save the contents of the current page to the Downloads folder. This works on all pages regardless of whether Lagrange can display the contents or not.
116
117The location where downloaded files are saved can be set in Preferences.
118
119The 🔃 button on the right side of the URL input field is the Reload/Stop button — it reloads the current page or stops an ongoing download. During large downloads, an additional progress indicator appears next to the Stop button.
120
106## Bookmarks 121## Bookmarks
107 122
108## Managing and using identities 123Press ${CTRL+}D to bookmark the currently open URL.
124
125In addition to a title, bookmarks can have tags. Some tags have a special meaning, but you are free to enter whatever you want in the tags field. In quick search results, tags are given extra weight so they appear higher in results.
126
127### Special tags
128
129* Set a "homepage" tag on a bookmark to make it one of the pages that will be opened when pressing the 🏠 button.
130
131## Identities (TLS client certificates)
132
133Gemini uses TLS client certificates for manual user/session identification purposes. This is analogous to logging into a web site, except you are in full control of the information. The term "Identity" is used in Lagrange to refer to client certificates.
134
135Lagrange can easily create a new identity. The shortcut for this is ${SHIFT+}${CTRL+}N. Consider any information you enter in the certificate as public; only the Common Name is required and will appear as the issuer and subject of the certificate.
136
137Clicking on an identity in the sidebar will toggle it on/off for the currently open URL. On subsequent page loads, the certificate will then be sent to the server when the URL or any URL under it is fetched. You can click on the 👤 button in the navigation bar to see which identity is being used for the current page.
109 138
110TLS client certificates that you can identify yourself with. Consider any information you enter in the certificate as public; only the Common Name is required and will appear as the issuer and subject of the certificate. 139### Importing existing certificates
140
141At launch, Lagrange looks through its "idents" directory to see if any new certificates have been copied there. (See "Runtime files" below for the location.) The file format must be PEM. Both a certificate (.crt) and its private key (.key) must be found in "idents" and they must have matching file names. For example:
142* mycert.crt
143* mycert.key
144Lagrange will add a note to the imported identities to mark them as "Imported".
145
146# OS integration
147
148## Opening Gemini URLs (macOS)
149
150Lagrange registers itself as a "gemini:" URL scheme handler, so you can click on Gemini links in any application to open Lagrange with that URL.
151
152Likewise, .gmi/.gemini file extensions are registered as file formats that Lagrange can view so Finder will know how to open those automatically using Lagrange.
111 153
112## Drop and drop 154## Drop and drop
113 155
114You can drag and drop .gmi files on the Lagrange window to open them in the current tab. Dropping multiple files opens them in separate tabs. This is the recommended way to view local files, because there is no "Open File" menu item. You may also type "file://" URLs in the URL field. 156You can drag and drop .gmi files on the Lagrange window to open them in the current tab. Dropping multiple files opens them in separate tabs. This is the recommended way to view local files, because there is no "Open File" menu item. You may also type "file://" URLs in the URL field.
115 157
116# Runtime files 158## Runtime files
159
160Lagrange stores user-specific persistent files in one of the following locations (depending on the operating system):
161
162```
163 Windows : C:\Users\Name\AppData\Roaming\fi.skyjake.Lagrange\
164 macOS : ~/Library/Application Support/fi.skyjake.Lagrange/
165Other Unix : ~/.config/lagrange/
166```
117 167
118* bookmarks.txt 168* bookmarks.txt
119* idents.binary and idents/ 169* idents.binary and idents/
@@ -122,108 +172,13 @@ You can drag and drop .gmi files on the Lagrange window to open them in the curr
122* trusted.txt 172* trusted.txt
123* visited.txt 173* visited.txt
124 174
125# Open source licenses 175## Command line options
126 176
127Lagrange itself is distributed under the BSD 2-clause license: 177### --echo
128=> https://opensource.org/licenses/BSD-2-Clause The 2-Clause BSD License 178Debugging utility: internal events are printed to stdout.
129=> https://git.skyjake.fi/skyjake/lagrange.git Lagrange Git Repository 179
130 180### --sw
131> Copyright 2020 Jaakko Keränen 181Disable hardware accelerated graphics. Note that software rendering is anyway used as a fallback, so usually this option should not be necessary.
132> 182
133> Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 183# Open source licenses
134> 184=> about:license
135> 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
136>
137> 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
138>
139> THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
140
141## SDL
142
143SDL 2.0 and newer are available under the zlib license:
144=> https://www.zlib.net/zlib_license.html ZLIB License
145
146> This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
147>
148> Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
149>
150> 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
151>
152> 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
153>
154> 3. This notice may not be removed or altered from any source distribution.
155
156## the_Foundation
157
158the_Foundation is an opinionated C11 library by Jaakko Keränen. It is under the BSD 2-clause license. Note that the rest of the libraries in this section are used by the_Foundation, and not directly by Lagrange.
159=> https://opensource.org/licenses/BSD-2-Clause The 2-Clause BSD License
160=> https://git.skyjake.fi/skyjake/the_Foundation.git the_Foundation Git Repository
161
162## OpenSSL
163
164OpenSSL 1.1.1 is under a double license, which both apply to the library.
165=> https://www.openssl.org/source/license-openssl-ssleay.txt OpenSSL and SSLeay Licenses
166
167> Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved.
168>
169> Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
170>
171> 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
172>
173> 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
174>
175> 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
176>
177> 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact openssl-core@openssl.org.
178>
179> 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written permission of the OpenSSL Project.
180>
181> 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/)"
182>
183> THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
184>
185> This product includes cryptographic software written by Eric Young (eay@cryptsoft.com). This product includes software written by Tim Hudson (tjh@cryptsoft.com).
186
187SSLeay license:
188
189> Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
190> All rights reserved.
191>
192> This package is an SSL implementation written by Eric Young (eay@cryptsoft.com). The implementation was written so as to conform with Netscapes SSL.
193>
194> This library is free for commercial and non-commercial use as long as the following conditions are aheared to. The following conditions apply to all code found in this distribution, be it the RC4, RSA, lhash, DES, etc., code; not just the SSL code. The SSL documentation included with this distribution is covered by the same copyright terms except that the holder is Tim Hudson (tjh@cryptsoft.com).
195>
196> Copyright remains Eric Young's, and as such any Copyright notices in the code are not to be removed. If this package is used in a product, Eric Young should be given attribution as the author of the parts of the library used. This can be in the form of a textual message at program startup or in documentation (online or textual) provided with the package.
197>
198> Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
199>
200> 1. Redistributions of source code must retain the copyright notice, this list of conditions and the following disclaimer.
201>
202> 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
203>
204> 3. All advertising materials mentioning features or use of this software must display the following acknowledgement: "This product includes cryptographic software written by Eric Young (eay@cryptsoft.com)" The word 'cryptographic' can be left out if the rouines from the library being used are not cryptographic related :-).
205>
206> 4. If you include any Windows specific code (or a derivative thereof) from the apps directory (application code) you must include an acknowledgement: "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
207>
208> THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
209>
210> The licence and distribution terms for any publically available version or derivative of this code cannot be changed. i.e. this code cannot simply be copied and put under another distribution licence [including the GNU Public Licence.]
211
212## GNU libunistring
213
214The libunistring library is covered by the GNU Lesser General Public License (LGPL):
215=> https://www.gnu.org/software/libunistring/manual/libunistring.html#GNU-LGPL GNU LGPL License
216
217## Fonts
218
219This application uses fonts licensed under the Open Font License.
220
221=> https://github.com/mozilla/Fira/blob/master/LICENSE Fira Sans, Fira Mono
222=> https://github.com/googlefonts/nunito/blob/master/OFL.txt Nunito
223=> https://github.com/adobe-fonts/source-sans-pro/blob/release/LICENSE.md Source Sans Pro
224
225Additional fonts:
226
227=> https://fonts.google.com/specimen/Kosugi+Maru#license Kosugi Maru (Apache License 2.0)
228=> https://github.com/googlefonts/noto-emoji/blob/master/LICENSE Noto Emoji (Apache License 2.0)
229=> https://dn-works.com/ufas/ Symbola (Public Domain) \ No newline at end of file
diff --git a/res/about/license.gmi b/res/about/license.gmi
new file mode 100644
index 00000000..4f654540
--- /dev/null
+++ b/res/about/license.gmi
@@ -0,0 +1,105 @@
1# Open source licenses
2
3Lagrange is distributed under the BSD 2-clause license.
4=> https://opensource.org/licenses/BSD-2-Clause The 2-Clause BSD License
5=> https://git.skyjake.fi/skyjake/lagrange.git Lagrange Git Repository
6
7> Copyright 2020 Jaakko Keränen
8>
9> Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
10>
11> 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
12>
13> 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
14>
15> THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16
17## SDL
18
19SDL 2.0 and newer are available under the zlib license:
20=> https://www.zlib.net/zlib_license.html ZLIB License
21
22> This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
23>
24> Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
25>
26> 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
27>
28> 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
29>
30> 3. This notice may not be removed or altered from any source distribution.
31
32## the_Foundation
33
34the_Foundation is an opinionated C11 library by Jaakko Keränen. It is under the BSD 2-clause license. Note that the rest of the libraries in this section are used by the_Foundation, and not directly by Lagrange.
35=> https://opensource.org/licenses/BSD-2-Clause The 2-Clause BSD License
36=> https://git.skyjake.fi/skyjake/the_Foundation.git the_Foundation Git Repository
37
38## OpenSSL
39
40OpenSSL 1.1.1 is under a double license, which both apply to the library.
41=> https://www.openssl.org/source/license-openssl-ssleay.txt OpenSSL and SSLeay Licenses
42
43> Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved.
44>
45> Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
46>
47> 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
48>
49> 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
50>
51> 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
52>
53> 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact openssl-core@openssl.org.
54>
55> 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written permission of the OpenSSL Project.
56>
57> 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/)"
58>
59> THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
60>
61> This product includes cryptographic software written by Eric Young (eay@cryptsoft.com). This product includes software written by Tim Hudson (tjh@cryptsoft.com).
62
63SSLeay license:
64
65> Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
66> All rights reserved.
67>
68> This package is an SSL implementation written by Eric Young (eay@cryptsoft.com). The implementation was written so as to conform with Netscapes SSL.
69>
70> This library is free for commercial and non-commercial use as long as the following conditions are aheared to. The following conditions apply to all code found in this distribution, be it the RC4, RSA, lhash, DES, etc., code; not just the SSL code. The SSL documentation included with this distribution is covered by the same copyright terms except that the holder is Tim Hudson (tjh@cryptsoft.com).
71>
72> Copyright remains Eric Young's, and as such any Copyright notices in the code are not to be removed. If this package is used in a product, Eric Young should be given attribution as the author of the parts of the library used. This can be in the form of a textual message at program startup or in documentation (online or textual) provided with the package.
73>
74> Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
75>
76> 1. Redistributions of source code must retain the copyright notice, this list of conditions and the following disclaimer.
77>
78> 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
79>
80> 3. All advertising materials mentioning features or use of this software must display the following acknowledgement: "This product includes cryptographic software written by Eric Young (eay@cryptsoft.com)" The word 'cryptographic' can be left out if the rouines from the library being used are not cryptographic related :-).
81>
82> 4. If you include any Windows specific code (or a derivative thereof) from the apps directory (application code) you must include an acknowledgement: "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
83>
84> THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
85>
86> The licence and distribution terms for any publically available version or derivative of this code cannot be changed. i.e. this code cannot simply be copied and put under another distribution licence [including the GNU Public Licence.]
87
88## GNU libunistring
89
90The libunistring library is covered by the GNU Lesser General Public License (LGPL):
91=> https://www.gnu.org/software/libunistring/manual/libunistring.html#GNU-LGPL GNU LGPL License
92
93## Fonts
94
95This application uses fonts licensed under the Open Font License.
96
97=> https://github.com/mozilla/Fira/blob/master/LICENSE Fira Sans, Fira Mono
98=> https://github.com/googlefonts/nunito/blob/master/OFL.txt Nunito
99=> https://github.com/adobe-fonts/source-sans-pro/blob/release/LICENSE.md Source Sans Pro
100
101Additional fonts:
102
103=> https://fonts.google.com/specimen/Kosugi+Maru#license Kosugi Maru (Apache License 2.0)
104=> https://github.com/googlefonts/noto-emoji/blob/master/LICENSE Noto Emoji (Apache License 2.0)
105=> https://dn-works.com/ufas/ Symbola (Public Domain)
diff --git a/res/about/version.gmi b/res/about/version.gmi
index 2bbf673a..32f1e49f 100644
--- a/res/about/version.gmi
+++ b/res/about/version.gmi
@@ -6,6 +6,21 @@
6``` 6```
7# Release notes 7# Release notes
8 8
9## 0.2
10* Added an icon for quote paragraphs.
11* Added Downloads folder to Preferences.
12* Added "Save to Downloads" menu item (${CTRL+}S) for saving page contents.
13* Added a download progress indicator in the URL input field.
14* Added a progress indicator for inline image fetching.
15* Added `--sw` option to force software rendering.
16* Added macOS touch bar buttons for Back, Forward, Find, New Tab, and sidebar modes.
17* Home button opens a random bookmark with the "homepage" tag.
18* Improved context menu when right-clicking on links or the page.
19* Recognize and handle "mailto:" links.
20* Fixed behavior of images on single-image pages; cannot be hidden like inline images.
21* Fall back to software rendering automatically if accelerated graphics are not available.
22* Minor bug fixes.
23
9## 0.1.1 24## 0.1.1
10* Fixed a potential crash at startup. 25* Fixed a potential crash at startup.
11* Fixed bug where user's query input is handled by all tabs. 26* Fixed bug where user's query input is handled by all tabs.