- Notifications
You must be signed in to change notification settings - Fork3
Comparing changes
Open a pull request
base repository:coder/coder-desktop-windows
Uh oh!
There was an error while loading.Please reload this page.
base:8f60b4d
head repository:coder/coder-desktop-windows
Uh oh!
There was an error while loading.Please reload this page.
compare:2495779
- 11commits
- 65files changed
- 2contributors
Commits on Apr 22, 2025
fix: fix downloading different URLs to same destination (#70)
fixes#69Fixes `Downloader` to remove the `DownloadTask` when it is done via a completion. This will allow changing Coder deployments, which use different URLs but whose files are downloaded to the same place.
feat: allow cancelation of download of a different URL (#71)
Respects the cancelation token provided to `StartDownloadAsync` even when there is another download already in progress to the same destination.
feat: add support for URI activations for coder scheme (#72)
relates to#52Adds support for Coder Desktop to handle the `coder:/` URI scheme by registering for this scheme and forwarding activations to the single instance of Coder Desktop.Also removes the `Package.appxmanifest`. It is unused since Coder Desktop is not a packaged app.
Commits on Apr 30, 2025
fix: fix Downloader to dispose tempFile and use synchronous IO (#81)
Fixescoder/internal#598There is a possible race where if the cancellation token is expired, `Download()` never gets called and the tempFile is never disposed of (at least until GC). We also switch to synchronous IO so that a pending overlapped write won't block the deletion.These issues can cause races in our tests when we try to clean up the directory.
feat: add logging to App (#78)
Adds logging to the Coder Desktop application.
Commits on May 1, 2025
feat: add remote directory picker to file sync (#73)
Adds a new remote directory picker window used when creating a file syncto select the remote directory.https://github.com/user-attachments/assets/3c661969-4ba8-46b0-8e3c-e97809c2ae1d## TODOs:- [x] Use a dropdown for picking workspace agent in the file sync UI,currently it's typed out (and will crash if empty lol)- [x] Fix reactivation of the window, try to make it function like anyother system dialog windowCloses#27
chore: add logging to mutagen controller (#79)
Adds some logging to the mutagen controller.
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:git diff 8f60b4d...2495779
Uh oh!
There was an error while loading.Please reload this page.