Compare commits

..

No commits in common. "b67c738b05771893e4c0578d02da5e6fc33835ff" and "23b461aa4500e0c5f20be11e99191c8e3f0bddb3" have entirely different histories.

5 changed files with 6 additions and 7 deletions

View file

@ -1,5 +1,6 @@
TODO
----------------------------------------
mac bug: arrows in cli are off
@ -20,8 +21,6 @@ use a pad for command-line
use a pad for status bar
response code 11 (if still there)
gopher?
finger?
web????
opt. maintain history between sessions
history (forward) (useful?)
search in page (ugh)

View file

@ -163,7 +163,7 @@ class Request:
except FileNotFoundError as exc:
sock.close()
self.state = Request.STATE_CONNECTION_FAILED
self.error = "Could not load identity files ({exc})"
self.error = "Could not load identity files."
logging.error(f"Failed to load identity files {self.identity}")
return False

View file

@ -1,6 +1,6 @@
import unittest
from ..mime import MimeType
from ..mime import MimeType, DEFAULT_CHARSET, DEFAULT_MIME_TYPE
class TestMime(unittest.TestCase):

View file

@ -11,7 +11,7 @@ This version fixes a few quirks of the standard module, namely:
- Discard multi-lines mode: only one line is supported.
- Moving in line more reasonably: no more going alone rightward.
- Handle Unicode.
- Handle Unicode
"""
import curses
@ -31,7 +31,7 @@ class Textbox:
- Ctrl-L: Refresh screen.
Move operations do nothing if the cursor is at an edge where the movement
is not possible. The following synonyms are supported where possible:
is not possible. The following synonyms are supported where possible:
- KEY_LEFT: Ctrl-B
- KEY_RIGHT: Ctrl-F

View file

@ -1,6 +1,6 @@
[metadata]
name = bebop-browser
version = 0.0.3
version = 0.0.2
description = Terminal browser for Gemini
long_description = file: README.md
license = GPLv3