1. 05 5月, 2020 1 次提交
  2. 30 4月, 2020 1 次提交
  3. 29 4月, 2020 5 次提交
  4. 27 4月, 2020 1 次提交
  5. 21 4月, 2020 2 次提交
  6. 18 4月, 2020 1 次提交
    • A
      Improve request error handling · 27ba64c7
      Asher 提交于
      See #1532 for more context.
      
      - Errored JSON requests will get back the error in JSON instead of using
        the status text. This seems better to me because it seems more correct
        to utilize the response body over hijacking the status text. The
        caller is expecting JSON anyway. Worst of all I never actually set the
        status text like I thought I did so it wasn't working to begin with.
      - Allow the update error to propagate for JSON update requests. It was
        caught to show the error inline instead of an error page when using
        the update page but for JSON requests it meant there was no error and
        no error code so it looked like it succeeded.
      - Make errors for failed requests to GitHub less incomprehensible.
        Previously they would just be the code which is no context at all.
      27ba64c7
  7. 17 4月, 2020 1 次提交
  8. 14 4月, 2020 1 次提交
  9. 09 4月, 2020 1 次提交
  10. 08 4月, 2020 1 次提交
    • A
      Fix encoding issues with folder and workspace params · a5c35af8
      Asher 提交于
      The raw value is now passed back to VS Code so it can do the parsing
      with its own URI class rather than trying to parse using Node's url
      module first since that has no guarantee of working the same way. It
      also lets us keep the vscode-remote bit internal to VS Code.
      
      Removed the logic that keeps trying paths until it finds a valid one
      because it seems confusing to open a path and silently get some other
      path instead of an error for the one you tried to open. Now it'll just
      use exactly what you specified or fail trying.
      
      Fixes #1488. The problem here was that url.parse was encoding the spaces
      then the validation failed looking for a literal %20.
      a5c35af8
  11. 03 4月, 2020 18 次提交
  12. 31 3月, 2020 4 次提交
  13. 28 3月, 2020 1 次提交
  14. 26 3月, 2020 2 次提交