Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 1.06 KB

File metadata and controls

19 lines (13 loc) · 1.06 KB

Ideas

  • print is configurable with multiple cli flags
    • e.g. should show file paths
    • each file should be a list
  • use logging

Next Steps

App Integrations

Things

Unfortunately it isn't as simple as I thought to use x-callback-url Scheme with Rust. To get reqwest as far as it could parse the x-callback Scheme Uri one has to use it in the following form things://x-callback-url/show?id=today. With the normal things:///show?id=today form it is no valid Uri. The next problem was, that reqwest said it found x-callback-url no matching server- or nodename. A working draft was to use the macos open command for these calls, but then it is not possible to get the callback information, which I need to get the created Todo Ids in Things. A possible solution could be, to build a rust wrapper around a small swift library to call these x-callback-urls, which seems to be no good solution(!).