- 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:2495779
head repository:coder/coder-desktop-windows
Uh oh!
There was an error while loading.Please reload this page.
compare:d49de5b
- 19commits
- 72files changed
- 4contributors
Commits on May 2, 2025
feat: add support for notifications (#85)
Adds support for OS notifications, which I'll use to show errors handling URIs in a subsequent PR.[Screen Recording 2025-05-01 145532.mp4 <span>(uploaded via Graphite)</span> <img src="https://app.graphite.dev/api/v1/graphite/video/thumbnail/tCz4CxRU9jhAJ7zH8RTi/f838fb8a-6815-48a7-bd52-63d6a06ce742.mp4" />](https://app.graphite.dev/media/video/tCz4CxRU9jhAJ7zH8RTi/f838fb8a-6815-48a7-bd52-63d6a06ce742.mp4)
Commits on May 8, 2025
feat: add support for RDP URIs (#87)
Adds basic support for `coder:/` URIs for opening RDP.relates to#52 but I still need to add support for checking the authority.
feat: enter submits sign in information (#90)
Closes:#88---------Co-authored-by: Dean Sheather <dean@deansheather.com>
Commits on May 12, 2025
Commits on May 13, 2025
feat: add check for coder:// URI authority section (#97)
Fixes#52Checks for the authority string, i.e. `coder.example.com` in `coder://coder.example.com/v0/open/...` links matches the HTTP(S) URL we are signed into. This ensures that the names we use are properly scoped and links generated on one Coder deployment won't accidentally open workspaces on another.
Commits on May 14, 2025
fix: fix daemon.lock race on mutagen startup (#101)
I found the source of the issue where mutagen would fail to acquire the lock on `daemon.lock` at startup.The MutagenClient attempts to lock the `daemon.lock` file while it is starting, so that it can fail fast if the daemon is not running.While well meaning, this creates a race condition because as soon as we start the daemon process we create a MutagenClient so that we can talk to the daemon over its API. The MutagenClient might be holding the lock or have the lockfile open at the exact moment the daemon itself attempts to acquire and lock the file. The daemon immediately exits in that case and doesn't retry locking the file.I've just removed the preflight checks on the `daemon.lock`, since we don't want Coder Desktop to ever mess with that file (outside of tests).
Commits on May 16, 2025
chore: make hostname suffix mutable in views (#102)
Part 1 of#49Makes the workspace suffix dynamic in the views. A later PR in this stack will fetch the suffix and apply it to any views if it changes.If the suffix doesn't match the FQDN provided by the VPN service, we won't gray out anything when we show the name, but if we later get a suffix that matches, it will update.
Commits on May 20, 2025
feat: fetch hostname suffix from API (#103)
Fixes#49Adds support to query the hostname suffix from Coder server, and thenpropagates any changes to the agent view models.
Commits on May 22, 2025
fix: change dummy workspace logic to include starting and stopping (#107
)fixes#104Includes starting, stopping, pending and unknown (rare!) workspaces as "dummy" grayed workspaces.TBD what we want to do with failed or canceled workspaces.
Commits on May 28, 2025
feat: enabled sign out and animated window resize (#109)
Closes:#96---------Co-authored-by: Dean Sheather <dean@deansheather.com>
Commits on Jun 2, 2025
feat: added icon to installer's bootstrap application (#112)
Closes:#38 WiX 5 introduced a bug that stopped respecting the icon file on thetheme's Window. This is described in this issue:wixtoolset/issues#8104This PR introduces:- an additional option in our `build-bootstrapper` to allow optionalsetting of the `theme xml`,- adds a copy of the `RtfLargeTheme.xml` from WiX `5.0.2` with the addedattribute of `IconFile`
Commits on Jun 3, 2025
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 2495779...d49de5b
Uh oh!
There was an error while loading.Please reload this page.