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: CodeEditApp/CodeEdit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.1
Choose a base ref
...
head repository: CodeEditApp/CodeEdit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.3.2
Choose a head ref
  • 8 commits
  • 45 files changed
  • 6 contributors

Commits on Aug 31, 2024

  1. Rebuild Cached Files After Rename, Git Status Label (#1866)

    - Updates the rename method to get a new, cached, file instead of creating one unrelated to the rest of the tree.
    - Removes the temporary tab when closing a tab if the tab was the temporary tab.
    - Updates the git status label to use a dynamic color, so it appears white when the cell is selected.
    thecoolwinter authored Aug 31, 2024
    Configuration menu
    Copy the full SHA
    4bc7548 View commit details
    Browse the repository at this point in the history
  2. Mark Autosave Changes Immediately (#1865)

    - Modifies `CodeFileView` to mark the document as changed immediately when changes occur rather than debounced. This fixes a small issue where the "Edited" marker would appear after the file was saved, because the change notification was debounced.
    - Adds some error logging to `CodeFileDocument`.
    thecoolwinter authored Aug 31, 2024
    Configuration menu
    Copy the full SHA
    02b6919 View commit details
    Browse the repository at this point in the history
  3. Fix Source Control File Names With Spaces (#1858)

    Main Changes
    - Modifies the GitClient to use `GitChangedFile`s or `URL`s instead of `CEWorkspaceFile`s. The `CEWorkspaceFiles` created by these methods were disconnected from the workspace's file manager and it becomes messy to store things like old file names (in the case of renames) and the staged and unstaged statuses.
    - Updates `GitChangedFile` to be able to much more accurately represent a git file change. It now tracks two statuses, provides multiple helper methods and properties for use in UI.
    - Replaces `GitClient. getChangedFiles` and `GitClient. getStagedFiles` with `GitClient. getStatus`. Also adds a `Status` struct to the `GitClient`. This new method uses the porcelain v2 version of `git status` to fetch more information per file. It also uses the `-z` option to get a easily-readable format.
    - Updates related UI to use `GitChangedFile` or `URL` in place of `CEWorkspaceFIle` where possible and only fetch `CEWorkspaceFile`s when necessary.
    
    This also sets up the required changes to view file renames correctly in source control lists.
    
    Other Changes
    - Fixed file statuses toggling on and off when files are saved.
    - Updates `GitClient. getCommitHistory` to correctly specify the branch name and file. Fixes an untracked bug where a file with the same name as a branch would cause an error (eg a file named `main` on the `main` branch).
    - Renames `GitType` to `GitStatus`.
    - Adds a logger to the `GitClient` and logs errors in a few key methods.
    - Fixes a small bug with the workspace document where the URL would not have a trailing `/` caused issues when using relative URLs.
    - Consolidates list view rows for git changes into one View that's reused in a few different lists.
    - Updates `GitClient.add` and `GitClient.reset` to use quoted, relative, paths.
    
    ---------
    
    Co-authored-by: Tom Ludwig <[email protected]>
    thecoolwinter and tom-ludwig authored Aug 31, 2024
    Configuration menu
    Copy the full SHA
    a78e586 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2024

  1. Configuration menu
    Copy the full SHA
    8accb3b View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2024

  1. Bug fix. #1875 (#1876)

    Bug fix. TaskOutputView cleared after a double tap on Clear output button in TaskOutputActionsView
    SavelyUkuren authored Sep 9, 2024
    Configuration menu
    Copy the full SHA
    efe2baf View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2024

  1. Fix for symlinks bug (#1840)

    * Added check for folder symlink on the file manager
    
    * Created new directory events file manager extension, added label to symlinks in navigator, bugfixes
    
    * Updated CodeFileDocument url to linked url when opening files
    
    * Fix for the loop when saving symlinks
    
    * Renamed linkedURL, fixed typo and updated isSymbolicLink property
    
    * Restored named computed property
    
    * Fixed typos
    
    * Update CodeEdit/Features/Editor/Views/EditorAreaFileView.swift
    
    ---------
    
    Co-authored-by: Tom Ludwig <[email protected]>
    armartinez and tom-ludwig authored Sep 14, 2024
    Configuration menu
    Copy the full SHA
    e98a622 View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2024

  1. Bump to 0.3.2, Bump CESE to 0.8.0 (#1881)

    Bump to 0.3.2
    thecoolwinter authored Sep 16, 2024
    Configuration menu
    Copy the full SHA
    d118bc5 View commit details
    Browse the repository at this point in the history
  2. Bump Build Number to 43 (#1882)

    bump build number to 43
    
    Co-authored-by: GitHub Action <[email protected]>
    github-actions[bot] and actions-user authored Sep 16, 2024
    Configuration menu
    Copy the full SHA
    dc31f1d View commit details
    Browse the repository at this point in the history
Loading