Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: coder/coder-desktop-macos
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 15f1890
Choose a base ref
...
head repository: coder/coder-desktop-macos
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d5bc158
Choose a head ref
  • 5 commits
  • 9 files changed
  • 1 contributor

Commits on Jul 10, 2025

  1. 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
    ```
    ethanndickson authored Jul 10, 2025
    Configuration menu
    Copy the full SHA
    ff0bea0 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2025

  1. 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.
    ethanndickson authored Jul 23, 2025
    Configuration menu
    Copy the full SHA
    ebcb698 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2025

  1. 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.
    ethanndickson authored Jul 24, 2025
    Configuration menu
    Copy the full SHA
    faaa0af View commit details
    Browse the repository at this point in the history
  2. 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.
    ethanndickson authored Jul 24, 2025
    Configuration menu
    Copy the full SHA
    5da2698 View commit details
    Browse the repository at this point in the history
  3. 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.
    ethanndickson authored Jul 24, 2025
    Configuration menu
    Copy the full SHA
    d5bc158 View commit details
    Browse the repository at this point in the history
Loading