Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Fix bye message | Case Duckworth | 2020-06-08 |
| | |||
* | Comment less invocation | Case Duckworth | 2020-06-08 |
| | |||
* | Remove unneeded variables | Case Duckworth | 2020-06-08 |
| | |||
* | Fold text better | Case Duckworth | 2020-06-08 |
| | | | | | | | `fold_line` now has a lot of options that determine how to fold the text so that each line can be separately styled with ANSI escapes. It turns out that `less` only styles the first line of multi-line blocks that are ANSI-escaped, so this was necessary to make it look "good." | ||
* | Enable extglob on extglob | Case Duckworth | 2020-06-08 |
| | |||
* | Log function name | Case Duckworth | 2020-06-08 |
| | |||
* | Notes for TOFU | Case Duckworth | 2020-06-08 |
| | |||
* | Specify permissions | Case Duckworth | 2020-06-08 |
| | |||
* | Actually fix regression in Makefile | Case Duckworth | 2020-06-08 |
| | |||
* | Fix Makefile | Case Duckworth | 2020-06-08 |
| | |||
* | Escape URL queries | Case Duckworth | 2020-06-08 |
| | |||
* | Fix regression with BOLLUX_URL not being set | Case Duckworth | 2020-06-08 |
| | |||
* | Change formatting of quotes and fix list | Case Duckworth | 2020-06-08 |
| | |||
* | Add quote support to text/gemini typesetting | Case Duckworth | 2020-06-08 |
| | |||
* | Add -servername to openssl command | Case Duckworth | 2020-06-07 |
| | |||
* | Fix makefile | Case Duckworth | 2020-06-07 |
| | |||
* | Add comments | Case Duckworth | 2020-06-07 |
| | |||
* | Update manpage | Case Duckworth | 2020-06-07 |
| | |||
* | Change display and keymaps | Case Duckworth | 2020-06-07 |
| | |||
* | Comment unused options | Case Duckworth | 2020-06-07 |
| | |||
* | Change less options | Case Duckworth | 2020-06-07 |
| | |||
* | Support status code 11 | Case Duckworth | 2020-06-07 |
| | |||
* | Update README | Case Duckworth | 2020-06-07 |
| | |||
* | Update README | Case Duckworth | 2020-06-07 |
| | |||
* | Update documentation | Case Duckworth | 2020-06-07 |
| | |||
* | Set timeout | Case Duckworth | 2020-06-07 |
| | |||
* | Add gophertypes 7 and hopefully others (download) | Case Duckworth | 2020-06-04 |
| | |||
* | Add gopher support; clean up | Case Duckworth | 2020-06-04 |
| | |||
* | Version bump | Case Duckworth | 2020-06-03 |
| | |||
* | Update docs | Case Duckworth | 2020-06-03 |
| | |||
* | Add G bind | Case Duckworth | 2020-06-03 |
| | |||
* | Add back/forward binds to statusline | Case Duckworth | 2020-06-02 |
| | |||
* | Fix title extraction | Case Duckworth | 2020-06-02 |
| | |||
* | Change variables and update manpages | Case Duckworth | 2020-06-02 |
| | |||
* | Customize Bye Message | Case Duckworth | 2020-06-02 |
| | |||
* | Change ssl_cmd setting | Case Duckworth | 2020-06-02 |
| | |||
* | Added explicit support for TLS v1.3 | Parker Ellertson | 2020-06-02 |
| | | | | | | | From 8d20bf3b790991a33c0ab721a2746ec222a74f2a Mon Sep 17 00:00:00 2001 From: Parker Ellertson <pellertson@firemail.cc> Date: Tue, 2 Jun 2020 15:06:34 -0700 Subject: [PATCH bollux] Added explicit support for TLS v1.3 | ||
* | Add wip | Case Duckworth | 2020-06-02 |
| | | | | | This is where all my works in progress are going to go. Expect it to be really messy. | ||
* | Add history file | Case Duckworth | 2020-06-02 |
| | | | | | | | | | | | | I added a history file at $XDG_DATA_HOME/bollux/history. Its format is of the form <date %FT%T> <URL> <TITLE> the date is generated with the printf trick. I should probably be doing version checking or at least say we require bash 4+. The code to get the title of the page is pretty gross. Basically I have to run the content of the pipeline through like, two times? A read loop. Check out ll. 333-348 to see how weird it is. | ||
* | Reimplement extract_links in bash | Case Duckworth | 2020-06-02 |
| | |||
* | Remove iconv dash | Case Duckworth | 2020-06-02 |
| | |||
* | Merge branch 'master' into history | Case Duckworth | 2020-06-01 |
|\ | |||
| * | Add keybind | Case Duckworth | 2020-06-01 |
| | | |||
| * | Add INSTALL section | Case Duckworth | 2020-06-01 |
| | | |||
| * | update README | Case Duckworth | 2020-06-01 |
| | | |||
* | | Fix beginning of history detection | Case Duckworth | 2020-06-01 |
| | | |||
* | | Add rudimentary history support. | Case Duckworth | 2020-06-01 |
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit adds `history_init`, `history_append`, `history_back`, and `history_forward` functions. The history is implemented as an array, HISTORY, which is appended to with history_append when pages are visited, and a pointer, HN, which points to the current position in the array. When history_back is called, it moves the pointer back 2 and calls blastoff to the URL there. When history_forward is called, it does not move the pointer and blastsoff to the URL. Why back and forward basically have an off-by-one error is beyond me at this time. ISSUES: - if the user goes back then forward, the history is not rewritten for later URLs. for example, if the history is 1.gmi 2.gmi 3.gmi* where the * indicates the current history position, when the user goes back 2, it looks like this: 1.gmi* 2.gmi 3.gmi if the user then navigates to another page: 1.gmi 4.gmi* 3.gmi 3.gmi is still in the history, so the user can go forward from 4. This is unexpected as far as every other client that I know of goes. | ||
* | Accept but ignore pre lines with alt text | Case Duckworth | 2020-06-01 |
| | |||
* | Add quit message and set title | Case Duckworth | 2020-05-31 |
| | |||
* | Trim mime and only look at it once | Case Duckworth | 2020-05-31 |
| |