diff --git a/features.org b/features.org index cf82e85..c535930 100644 --- a/features.org +++ b/features.org @@ -1,7 +1,7 @@ * Features non exhaustive list of TODOs Some todos collected from source code, sorted roughly in the order of importance -- [-] *Most important features* [0%] +- [-] *Most important features* [9%] - [-] Navigation stack with loaded items and urls [1/3] - [X] Capture the back key - [ ] Add buttons to go back & forth @@ -10,7 +10,7 @@ Some todos collected from source code, sorted roughly in the order of importance - [ ] Add toolbar with disable wrap button - [ ] Menu should be nonwrapping by default - [ ] Add option to wrap only filenames and not info items as they may be just decoration - - [ ] [[https://github.com/llfbandit/app_links/blob/master/doc/README_android.md][Register to handle]] ~gopher://~ protocol + - [X] [[https://github.com/llfbandit/app_links/blob/master/doc/README_android.md][Register to handle]] ~gopher://~ protocol - [ ] Keep toolbar url up to date - [ ] Fix line reading from socket - [ ] Bookmarks diff --git a/lib/gopherlib.dart b/lib/gopherlib.dart index 9ce1f3a..3d83cc4 100644 --- a/lib/gopherlib.dart +++ b/lib/gopherlib.dart @@ -169,8 +169,6 @@ class ParsedGopherItem { for (int i = 0; i < rcvd.length; i++) { if (rcvd[i] == "\n") { var menuLine = rcvd.substring(start, i); - // TODO: Gophernicus sends .\r for some reason which doesnt seem acording to spec - // Maybe ignore when sent from menu=forced? if (menuLine.startsWith(".")) { print("Received starting dot, this should be the end I guess"); return; diff --git a/lib/main.dart b/lib/main.dart index 882e338..946f4a2 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -67,7 +67,7 @@ class _GopherShyState extends State { ), ), // In future replace with bookmark view - body: GopherBrowser( + body: GopherBrowser( //TODO: replace default url with homepage from prefs initialUrl: widget.fromIntentLink ?? "gopher://treebrary.org"), )), );