about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAge
* add drone shellcheck badgeBen Harris2021-02-25
|
* add shellcheck with droneBen Harris2021-02-25
|
* Trap SIGINT: fixes #3Case Duckworth2021-02-25
|
* Update READMECase Duckworth2021-02-25
| | | | | - specify `less` version - change CONTRIBUTING notes
* Merge pull request 'change default install PREFIX to /usr/local' (#5) from ↵Case Duckworth2021-02-25
|\ | | | | | | | | | | ben/bollux:local-prefix into main Reviewed-on: https://tildegit.org/acdw/bollux/pulls/5
| * change default install PREFIX to /usr/localBen Harris2021-02-25
|/
* Change implementation of URL arrayCase Duckworth2020-06-18
|
* Handle unknown protocols better (by not handling them)Case Duckworth2020-06-08
|
* Reload page if no linksCase Duckworth2020-06-08
|
* Implement 'sleep' as a builtinCase Duckworth2020-06-08
|
* Set BOLLUX_URL on 3* status codesCase Duckworth2020-06-08
|
* Fix bye messageCase Duckworth2020-06-08
|
* Comment less invocationCase Duckworth2020-06-08
|
* Remove unneeded variablesCase Duckworth2020-06-08
|
* Fold text betterCase Duckworth2020-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 extglobCase Duckworth2020-06-08
|
* Log function nameCase Duckworth2020-06-08
|
* Notes for TOFUCase Duckworth2020-06-08
|
* Specify permissionsCase Duckworth2020-06-08
|
* Actually fix regression in MakefileCase Duckworth2020-06-08
|
* Fix MakefileCase Duckworth2020-06-08
|
* Escape URL queriesCase Duckworth2020-06-08
|
* Fix regression with BOLLUX_URL not being setCase Duckworth2020-06-08
|
* Change formatting of quotes and fix listCase Duckworth2020-06-08
|
* Add quote support to text/gemini typesettingCase Duckworth2020-06-08
|
* Add -servername to openssl commandCase Duckworth2020-06-07
|
* Fix makefileCase Duckworth2020-06-07
|
* Add commentsCase Duckworth2020-06-07
|
* Update manpageCase Duckworth2020-06-07
|
* Change display and keymapsCase Duckworth2020-06-07
|
* Comment unused optionsCase Duckworth2020-06-07
|
* Change less optionsCase Duckworth2020-06-07
|
* Support status code 11Case Duckworth2020-06-07
|
* Update READMECase Duckworth2020-06-07
|
* Update READMECase Duckworth2020-06-07
|
* Update documentationCase Duckworth2020-06-07
|
* Set timeoutCase Duckworth2020-06-07
|
* Add gophertypes 7 and hopefully others (download)Case Duckworth2020-06-04
|
* Add gopher support; clean upCase Duckworth2020-06-04
|
* Version bumpCase Duckworth2020-06-03
|
* Update docsCase Duckworth2020-06-03
|
* Add G bindCase Duckworth2020-06-03
|
* Add back/forward binds to statuslineCase Duckworth2020-06-02
|
* Fix title extractionCase Duckworth2020-06-02
|
* Change variables and update manpagesCase Duckworth2020-06-02
|
* Customize Bye MessageCase Duckworth2020-06-02
|
* Change ssl_cmd settingCase Duckworth2020-06-02
|
* Added explicit support for TLS v1.3Parker Ellertson2020-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 wipCase Duckworth2020-06-02
| | | | | This is where all my works in progress are going to go. Expect it to be really messy.
* Add history fileCase Duckworth2020-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.