-
Notifications
You must be signed in to change notification settings - Fork 3
Comparing changes
Open a pull request
base repository: coder/coder-desktop-macos
base: v0.6.0
head repository: coder/coder-desktop-macos
compare: main
- 16 commits
- 46 files changed
- 4 contributors
Commits on Jun 2, 2025
-
ci: fix homebrew out format (#177)
For some reason this line needs to be in the same stanza as conflicts_on. This passes the homebrew CI.
Configuration menu - View commit details
-
Copy full SHA for e25c61d - Browse repository at this point
Copy the full SHA e25c61dView commit details -
ci: bump google-github-actions/auth from 2.1.8 to 2.1.10 in the githu…
…b-actions group (#178) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 681d448 - Browse repository at this point
Copy the full SHA 681d448View commit details
Commits on Jun 3, 2025
-
ci: set preview build description to commit message (#180)
Just lets you see what changed in a preview build at a glance.
Configuration menu - View commit details
-
Copy full SHA for 71c5d4c - Browse repository at this point
Copy the full SHA 71c5d4cView commit details -
fix: disable unattended updates (#179)
There's no point allowing users to enable unattended updates, as the installer requires a password prompt, as does the app the first time it's launched after updating -- it would be more annoying than useful. All this does is remove the checkbox on the update prompt: Before: <img width="1020" alt="image" src="https://github.com/user-attachments/assets/7bed4a05-cf6e-4de4-9f08-e5a05c4ceac5" /> After: <img width="620" alt="image" src="https://github.com/user-attachments/assets/a1375eb2-0cd5-4e35-93d1-52275132fc1b" /> Automatic update *checks* can still be enabled in settings.
Configuration menu - View commit details
-
Copy full SHA for 170b399 - Browse repository at this point
Copy the full SHA 170b399View commit details
Commits on Jun 9, 2025
-
feat: include ping and network stats on status tooltip (#181)
Closes #64.  
Configuration menu - View commit details
-
Copy full SHA for f8a5ca5 - Browse repository at this point
Copy the full SHA f8a5ca5View commit details
Commits on Jun 16, 2025
-
chore: improve performance of indeterminate spinner (#184)
A user reported a constant 10% CPU usage whilst the Cursor svg failed to load. It turns out unnecessarily tying a looping animation to some state in SwiftUI is a bad idea. If you want to render a looping animation that's not tied to some state, you should use the CoreAnimation framework. In this case, we use a `CABasicAnimation`. We leave the determinate spinner unmodified, as it by definition must be tied to some SwiftUI state. Before:  After: 
Configuration menu - View commit details
-
Copy full SHA for 9a7b776 - Browse repository at this point
Copy the full SHA 9a7b776View commit details
Commits on Jun 18, 2025
-
chore: minor ui/ux changes (#186)
These changes were in response to feedback: - Adds tooltips on hover to the copy DNS button, and the open in browser button on the main tray menu. - Includes the download URL in the error message if the client receives an unexpected HTTP code when downloading.  - Makes the file sync table controls a lil bigger (24px -> 28px): - Before: -  - After: - 
Configuration menu - View commit details
-
Copy full SHA for 99d4e4d - Browse repository at this point
Copy the full SHA 99d4e4dView commit details
Commits on Jun 25, 2025
-
Co-authored-by: Ethan Dickson <ethan@coder.com>
Configuration menu - View commit details
-
Copy full SHA for a07ac2c - Browse repository at this point
Copy the full SHA a07ac2cView commit details -
<img width="573" alt="Screenshot 2025-06-25 at 7 56 24 pm" src="https://github.com/user-attachments/assets/55f8fb81-e71b-4292-96b1-1d66d1b8d130" /> <img width="465" alt="Screenshot 2025-06-25 at 7 48 53 pm" src="https://github.com/user-attachments/assets/52cede0f-af8a-49c5-bebc-3a0871391fa5" /> <img width="475" alt="Screenshot 2025-06-25 at 7 35 18 pm" src="https://github.com/user-attachments/assets/5696dfa6-67c7-40ee-9134-21c13f5c488b" /> <img width="486" alt="image" src="https://github.com/user-attachments/assets/ee7dd855-c57f-461b-9a5c-a982897c1a60" />
Configuration menu - View commit details
-
Copy full SHA for 6082e2d - Browse repository at this point
Copy the full SHA 6082e2dView commit details
Commits on Jun 26, 2025
-
chore: append bundle version to mach service name (#191)
We append the CFBundleVersion to the service name to ensure a new service is used for each version. This works around the issue described in #121, presumably caused by the XPC service cache not being invalidated on update. 
Configuration menu - View commit details
-
Copy full SHA for c19b39a - Browse repository at this point
Copy the full SHA c19b39aView commit details
Commits on Jul 9, 2025
-
fix: correct remote file picker dropdown chevron alignment (#192)
There appears to be a bug when a View created using `NSView` is inside a `DisclosureGroup` label - regardless of the size of the `NSView`, it breaks the alignment of the chevron that's included on the DisclosureGroup label by default:  In #184 we added an `NSView` to the spinner, causing this issue. This is almost certainly a SwiftUI bug, and so we'll work around it by placing the spinner and error symbol to the right of the label by just setting a trailing padding on the text. The end result (with spinners on): 
Configuration menu - View commit details
-
Copy full SHA for 15f1890 - Browse repository at this point
Copy the full SHA 15f1890View commit details
Commits on Jul 10, 2025
-
fix: allow creating directories in file sync local file picker (#199)
Closes #198. I just assumed this was on by default 😭 In fact, the documentation says it is, but it's very clearly not! ``` /** `NSSavePanel`/`NSOpenPanel`: Set to `YES` to show the "New Folder" button. Default is `YES`. */ open var canCreateDirectories: Bool ```
Configuration menu - View commit details
-
Copy full SHA for ff0bea0 - Browse repository at this point
Copy the full SHA ff0bea0View commit details
Commits on Jul 23, 2025
-
fix: fix panic deleting file sync session via right click (#202)
Also configures the linter to pick up on unused arguments, and configures the formatter to not format them out (by setting them to _). If this was the case prior, this bug wouldn't have happened.
Configuration menu - View commit details
-
Copy full SHA for ebcb698 - Browse repository at this point
Copy the full SHA ebcb698View commit details
Commits on Jul 24, 2025
-
fix: prompt for sign in when toggling coder connect on (#204)
I undid the work of #114 in #158, by disabling the VPN toggle when the network extension was unconfigured. When signed out, the network extension is unconfigured. This PR adds a special exception to make the VPN toggle always clickable when signed out, as it has special behaviour when signed out. It also adds a proper regression test. A slightly different regression test existed, but it didn't account for cases where the VPN state is one that would normally disable the toggle.
Configuration menu - View commit details
-
Copy full SHA for faaa0af - Browse repository at this point
Copy the full SHA faaa0afView commit details -
fix: trim whitespace and newlines from access url and token textfields (
#207) Prevents scenarios like the following, where newlines are pasted in by accident: <img width="555" height="246" alt="image" src="https://github.com/user-attachments/assets/5f473dd4-dc11-4a28-a3b2-9e7bc57d033f" /> The Windows app has trimming in the same places.
Configuration menu - View commit details
-
Copy full SHA for 5da2698 - Browse repository at this point
Copy the full SHA 5da2698View commit details -
feat: make workspaces list scrollable on overflow (#197)
Closes #188. If the workspaces view exceeds 400px in height, it'll become scrollable. The diff without whitespace changes is like 4 lines. https://github.com/user-attachments/assets/5bdd0369-c882-4085-9513-7594bd100475 I think the `View more`/`View less` very much still makes sense, so I'm keeping it.
Configuration menu - View commit details
-
Copy full SHA for d5bc158 - Browse repository at this point
Copy the full SHA d5bc158View commit details
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 v0.6.0...main