summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2020-08-28 12:46:15 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2020-08-28 12:46:19 +0300
commit33e286b86159e237d16f27bfe00d9b1a8b5cb4d0 (patch)
tree97596d703b0406fead989c67d50a5ac9c986c6e5
parent8104328b315ce1afd865b06109c5c33b86a56aab (diff)
Cleanup
-rw-r--r--res/about/help.gmi14
-rw-r--r--src/ui/macos.m2
2 files changed, 8 insertions, 8 deletions
diff --git a/res/about/help.gmi b/res/about/help.gmi
index e3c8fd23..11c76931 100644
--- a/res/about/help.gmi
+++ b/res/about/help.gmi
@@ -1,9 +1,9 @@
1``` 1```
2 __ __ __ ___ 2 __ __ __ ___
3| /\ / _` |__) /\ |\ | / _` |__ 3| /\ / _` |__) /\ |\ | / _` |__
4|___ /~~\ \__> | \ /~~\ | \| \__> |___ 4|___ /~~\ \__> | \ /~~\ | \| \__> |___
5 5
6``` 6```
7# Introduction 7# Introduction
8 8
9## What is Lagrange 9## What is Lagrange
@@ -19,7 +19,7 @@ Lagrange relies on a minimal set of dependencies. It is written in C and uses SD
19 19
20Gemini is a simple protocol for serving content over the internet. It specifies a Markdown inspired format allowing basic plain text document markup. Compared to HTTP and HTML, Gemini is vastly simpler and easier to work with. 20Gemini is a simple protocol for serving content over the internet. It specifies a Markdown inspired format allowing basic plain text document markup. Compared to HTTP and HTML, Gemini is vastly simpler and easier to work with.
21 21
22=> gemini://gemini.circumlunar.space/docs/faq.gmi Project Gemini FAQ 22=> gemini://gemini.circumlunar.space/docs/faq.gmi Project Gemini FAQ
23=> gemini://gemini.circumlunar.space/docs/specification.gmi Protocol and text/gemini specification 23=> gemini://gemini.circumlunar.space/docs/specification.gmi Protocol and text/gemini specification
24 24
25## Why not just use a web browser 25## Why not just use a web browser
@@ -30,7 +30,7 @@ Modern web browsers are complex beasts. In fact, they are so complex that one ca
30 30
31If one seeks to just read text and view images, this is absurd overkill. While having a universal platform that runs on everything and everywhere is clearly a valuable notion, it comes with a hefty price tag. The software stack towers ever higher, and similarly hardware needs to be ever more powerful and complicated to run it well. But everything happening over the internet doesn't have to be on this behemoth. 31If one seeks to just read text and view images, this is absurd overkill. While having a universal platform that runs on everything and everywhere is clearly a valuable notion, it comes with a hefty price tag. The software stack towers ever higher, and similarly hardware needs to be ever more powerful and complicated to run it well. But everything happening over the internet doesn't have to be on this behemoth.
32 32
33One way to browse Gemini content is via web browser extensions or proxies that translate the content for the web. This may be a sufficient and easy solution for you. However, native clients such as Lagrange also benefit from the simpleness of the protocol and the content. The experience can be optimized, and the software runs well even on simple hardware like the Raspberry Pi. 33One way to browse Gemini content is via web browser extensions or proxies that translate the content for the web. This may be a sufficient and easy solution for you. However, native clients such as Lagrange also benefit from the simpleness of the protocol and the content. The experience can be optimized, and the software runs well even on simple hardware like the Raspberry Pi.
34 34
35# User interface 35# User interface
36 36
@@ -93,7 +93,7 @@ the_Foundation is an opinionated C11 library by Jaakko Keränen. It is under the
93 93
94## OpenSSL 94## OpenSSL
95 95
96OpenSSL 1.1.1 is under a double license, which both apply to the library. 96OpenSSL 1.1.1 is under a double license, which both apply to the library.
97=> https://www.openssl.org/source/license-openssl-ssleay.txt OpenSSL and SSLeay Licenses 97=> https://www.openssl.org/source/license-openssl-ssleay.txt OpenSSL and SSLeay Licenses
98 98
99> Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved. 99> Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved.
diff --git a/src/ui/macos.m b/src/ui/macos.m
index 0e4927ee..593c3810 100644
--- a/src/ui/macos.m
+++ b/src/ui/macos.m
@@ -278,7 +278,7 @@ static void appearanceChanged_MacOS_(NSString *name) {
278 return [[CommandButton alloc] initWithIdentifier:identifier 278 return [[CommandButton alloc] initWithIdentifier:identifier
279 title:@"Go to…" 279 title:@"Go to…"
280 command:@"pattern.goto arg:-1"]; 280 command:@"pattern.goto arg:-1"];
281 } 281 }
282 else if ([identifier isEqualToString:event_TouchId_]) { 282 else if ([identifier isEqualToString:event_TouchId_]) {
283 NSTouchBar *events = [[NSTouchBar alloc] init]; 283 NSTouchBar *events = [[NSTouchBar alloc] init];
284 events.delegate = self; 284 events.delegate = self;