ITADN
CodeEditApp/CodeEdit

版本发布 8

v0.3.6
? · 2025-08-26

# Task Output, External File Changes, Invisible Characters This release introduces editor restoration, a new feature that keeps your place across files, tabs, and sessions so you can pick up right where you left off. It also adds a global search shortcut for faster navigation, a major upgrade to task output with a full terminal emulator so you can view and interact with tasks just like a real terminal, and improved task controls with new shortcuts and a dedicated menu. File changes made outside the app are now reflected in open editors automatically, and you can choose to show invisible characters while editing including customizable replacement characters and warning characters for pesky unicode characters. We also have a lot baking in this update, including a new language server install menu in settings. This section is experimental, and we're going to improve upon the existing implementation ASAP. We'll have more information on language servers soon, so expect this feature to change and grow over the next few releases. Expect clearer installation permissions as well as more visible package information before installation. ## ✨ Enhancements * Added global search keyboard shortcut (#2094) @FastestMolasses * View Task Output Using Terminal Emulator (#2088) @thecoolwinter * Upgrade Output Utility, Add Language Server Output (#2092) @thecoolwinter * Reflect External File Changes (#2075) @thecoolwinter * Add `⌘R` and `⌘.` to Start and Stop Tasks, Add Tasks Menu (#2081) @thecoolwinter * Language server installation menu (#1997) @FastestMolasses * Editor Restoration (#2078) @thecoolwinter * Implement Invisible Characters Setting (#2065) @thecoolwinter ## 🐞 Bug Fixes * Correctly Handle Language Server Timeout When Quitting (#2110) @thecoolwinter * Fix Ventura Crash (#2106) @thecoolwinter * Prevent `Makefile` from being renamed to `Makefile.make` during save (#2105) @antigluten * Adjust LSP Content Object Lifecycle (#2102) @thecoolwinter * Utility area animation disabled with hide interface (#2104) @SimonKudsk * Fix Semantic Highlight Out-Of-Range Bug (#2097) @thecoolwinter * Fix: Terminals Losing Output (#2100) @thecoolwinter * Ensure LSPs Exit, Add Exit Activities (#2080) @thecoolwinter ## 📝 Source Editor [CodeEditSourceEditor](https://github.com/CodeEditApp/CodeEditSourceEditor) updated from version `0.14.1` to `0.15.1` * Fix Bugs With Multiple Highlight Providers by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/346 * Update CodeEditTextView to `0.12.0` by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/347 * Autocomplete Feature by @FastestMolasses in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/282 * Jump To Definition by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/348 * Only Show Jump to Definition Hover When Available by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/349 ## 📄 Text View [CodeEditTextView](https://github.com/CodeEditApp/CodeEditTextView) updated from version `0.11.6` to `0.12.1`. * Implement Missing Accessibility APIs by @thecoolwinter in https://github.com/CodeEditApp/CodeEditTextView/pull/116 * Log Layout Time Less Religiously by @thecoolwinter in https://github.com/CodeEditApp/CodeEditTextView/pull/117 * Layout Invalidation Performance by @thecoolwinter in https://github.com/CodeEditApp/CodeEditTextView/pull/118 * Add `fill` Emphasis Style Option by @thecoolwinter in https://github.com/CodeEditApp/CodeEditTextView/pull/120 ## 🧰 Maintenance * [chore] Update CodeEditSourceEditor to `v0.15.1` (#2113) @thecoolwinter * Bump Build Number to 47 (#2112) @github-actions * Bump Version to `0.3.6` (#2111) @thecoolwinter * Show Language Server Menu, Adjust Warning, Add Info Button (#2109) @thecoolwinter * Serialize Task Manager Tests (#2108) @thecoolwinter * Fix Build Warnings (#2107) @thecoolwinter * Add Warning to Language Server Install (#2090) @thecoolwinter <!-- sparkle:edSignature=xxxxx -->

v0.3.4
? · 2025-04-08

# Find in Editor, Notifications, Quality of Life Included in this version is the ability to find text in the editor and navigate results using our custom find panel. CodeEdit also now has a custom-built notification UI for consistent alert and message management across workspaces. This release also includes numerous quality improvements, including but not limited to: editor over scroll, file management updates, drag and drop to open editors, terminal tab bug fixes, improved word detection, enhanced cursor selection modes, and task bug fixes. ## ✨ Enhancements * Clean Up File Management (#1969) @thecoolwinter * Global Notification System (#1984) @austincondiff * Add indication for externally deleted files (#1999) @pro100filipp * Drag and Drop External Files to Open in Editor (#2000) @austincondiff * Added editor overscroll setting (#2010) @FastestMolasses * Added copy path and copy relative path options in project navigator menu (#2013) @FastestMolasses * Added activity viewer inactive state (#1971) @austincondiff * Workspace Panel View (#1960) @austincondiff ## 🐞 Bug Fixes * Fix: Tasks In Folder With Spaces (#1978) @thecoolwinter * Terminal Tabs Closing Wrong Tab, Terminal Right Click Semantics (#1963) @thecoolwinter * Fix Task Dropdown Crash (#1956) @thecoolwinter * Fix Open in Tab not working issue (#1994) @karan0046 * Fixed editor tabs from being non-interactive (#2004) @austincondiff ## 📝 Source Editor [CodeEditSourceEditor](https://github.com/CodeEditApp/CodeEditSourceEditor) updated from version `0.9.0` to `0.11.0` * Fix `CaptureModifierSet.insert` by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/281 * Fix End Of Doc Crash by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/285 * Always Show Highlights After Applying by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/288 * Add Bold and Italics Support To Themes by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/289 * Feat: Highlighter Provider Diffing by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/291 * Bump CETV, Revert Trailing Padding (#272) by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/292 * Fix Delegate Typo by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/294 * Update CodeEditTextView by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/299 * Move Overscroll To TextView by @FastestMolasses in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/296 * feat: Find in Editor by @tom-ludwig in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/295 ## 📄 Text View [CodeEditTextView](https://github.com/CodeEditApp/CodeEditTextView) updated from version `0.7.7` to `0.8.2`. * ✨ Emphasis API for Highlighting Text Ranges by @tom-ludwig in https://github.com/CodeEditApp/CodeEditTextView/pull/62 * Inset Selection Rect By Leading Edge by @thecoolwinter in https://github.com/CodeEditApp/CodeEditTextView/pull/60 * Add Example App by @thecoolwinter in https://github.com/CodeEditApp/CodeEditTextView/pull/64 * Add Text Insets by @thecoolwinter in https://github.com/CodeEditApp/CodeEditTextView/pull/65 * Final Text & Selection Inset Fix by @thecoolwinter in https://github.com/CodeEditApp/CodeEditTextView/pull/67 * Fix CEUndoManager grouping by @hi2gage in https://github.com/CodeEditApp/CodeEditTextView/pull/69 * feat: Scroll to range by @tom-ludwig in https://github.com/CodeEditApp/CodeEditTextView/pull/70 * Added underscore to selection by @FastestMolasses in https://github.com/CodeEditApp/CodeEditTextView/pull/73 * Added mouse drag selection modes by @FastestMolasses in https://github.com/CodeEditApp/CodeEditTextView/pull/75 * Emphasis Manager Enhancements by @austincondiff in https://github.com/CodeEditApp/CodeEditTextView/pull/78 * Added scroll past end behavior (overscroll) by @FastestMolasses in https://github.com/CodeEditApp/CodeEditTextView/pull/77 * Fix EmphasisManager Leaking Layers, Fix Emphasis Drawing by @thecoolwinter in https://github.com/CodeEditApp/CodeEditTextView/pull/79 ## 🧰 Maintenance * LSP Semantic Token Decoder, Improve LSP-CodeFileDoc Arch (#1951) @thecoolwinter * Update Project Settings - Generate Asset Symbols (#2009) @thecoolwinter * [chore:] Bump Version Number (#2021) @thecoolwinter * [chore:] Update CodeEditSourceEditor, add Find In Editor, Misc Bug Fixes (#2020) @thecoolwinter * chore: Project Cleanup, Group to Folder Conversion, and SwiftLint Upgrade (#2003) @austincondiff * Replace deprecated appendingPathComponent calls (#1998) @FastestMolasses * [chore]: Update CodeEditSourceEditor to 0.10.0 (#1980) @thecoolwinter * Update copyright to 2025 (#1973) @hi2gage * Renamed PathBar to JumpBar (#1957) @austincondiff ## 👨‍💻 New Contributors * @hi2gage made their first contribution in #1973 * @pro100filipp made their first contribution in #1999 <!-- sparkle:edSignature=xxxxx -->

v0.3.3
? · 2024-12-14

# Navigator, Settings, and Editor Improvements This version introduces project navigator filtering and multiple file selection, source control settings. Theme management now supports fuzzy search for easier discovery, and the editor supports indenting and unindenting selected lines. Other fixes include improved tab behavior, tidied up cursors, and enhanced source highlighting. ## ✨ Enhancements * Source Control Settings (#1926) @austincondiff * Deleting a file in the Workspace UI now closes the tab (#1937) @LeonardoLarranaga * Instant Popovers (#1922) @Kihron * Select multiple files in the project navigator (#1906) @LeonardoLarranaga * AboutView Animation Improvements (#1915) @Kihron * Automatic Window Deminimization on Dock Icon Click (#1907) @Kihron * LSP Document Content Sync (#1887) @thecoolwinter * Bold and italic text formatting in themes (#1893) @austincondiff * feat(themes): Add fuzzy search for filtering and sorting themes in settings (#1849) @tom-ludwig * LSP Activates On Workspace Files, LSP Document Open/Close (#1879) @thecoolwinter * Project navigator file filtering (#1896) @LeonardoLarranaga ## 🐞 Bug Fixes * Theme export and theme details flicker fix when duplicating and then canceling (#1920) @austincondiff * Fix Edited Indicator Behavior (#1910) @Kihron * Fix Navigator Area Label Truncation (#1912) @Kihron * "Close Tabs to the Right" no longer closes the tab the action is performed on (#1901) @LeonardoLarranaga * Fix/navigation commands (#1895) @karan0046 * Closing tabs while Open Quickly or Command Palette is open is no longer allowed. (#1868) @scaredcr6w * Clean Up Child Processes (#1885) @thecoolwinter * Fix search text disappearance on changing navigation item (#1889) @karan0046 * Update Recently Opened Menu (#1919) @thecoolwinter * EditorManager Always Opens Files (#1892) @thecoolwinter ## 📝 Source Editor * Indent/Unindent Selected Lines by @tom-ludwig in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/266 * TreeSitterClient Highlight Responsiveness by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/267 * Adjust Gutter Background, Add Trailing Padding by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/272 * Multiple Highlighter Support by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/273 * Fix Ambiguous Highlights by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/275 * Invalidate Correct Edited Range by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/279 * Fix TreeSitterClient Not Being Set by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/280 ## 📄 Text View * Remove Problematic CATransaction, Fix Lines Disappearing by @thecoolwinter in https://github.com/CodeEditApp/CodeEditTextView/pull/52 * Fix Padding Issue, Assertion Failure On Width Update by @thecoolwinter in https://github.com/CodeEditApp/CodeEditTextView/pull/53 * Scroll Cursor Visible While Typing by @thecoolwinter in https://github.com/CodeEditApp/CodeEditTextView/pull/55 * Sync System Cursor Animation by @thecoolwinter in https://github.com/CodeEditApp/CodeEditTextView/pull/56 * Move All Delegate Calls Outside Layout Pass by @thecoolwinter in https://github.com/CodeEditApp/CodeEditTextView/pull/57 ## 🧰 Maintenance * Removed unnecessary nested folder (#1928) @austincondiff * Bumping grdb in order to support xcode 16 (#1877) @Vaidios ## 👨‍💻 New Contributors * @Kihron made their first contribution in #1909 <!-- sparkle:edSignature=xxxxx -->

v0.3.2
? · 2024-09-16

# Fixes For Symlinks, Autosave, Source Control and More This update a stability and bug fix update. Included are fixes for viewing symlink directories, using filenames with spaces in git, autosave stability, and a few UI enhancements. ## 🐞 Bug Fixes * Fix for symlinks bug (#1840) @armartinez * Clear Task Output Button #1875 (#1876) @SavelyUkuren * Fix Monochrome Setting Crash (#1873) @thecoolwinter * Fix Source Control File Names With Spaces (#1858) @thecoolwinter * Mark Autosave Changes Immediately (#1865) @thecoolwinter * Rebuild Cached Files After Rename, Git Status Label (#1866) @thecoolwinter ## 👨‍💻 New Contributors * @SavelyUkuren made their first contribution in #1876 **Full Changelog**: https://github.com/CodeEditApp/CodeEdit/compare/v0.3.1...v0.3.2 <!-- minimumSystemVersion=13.0 -->

v0.3.1
? · 2024-08-25

# Multi-Line Comments and Terminal Improvements This update adds the ability to toggle multi-line comments in the source editor using the `⌘/` keybind. It also adds support for the common `⇧-click` text interaction to modify selections, and includes some major changes to the terminal pane that improve usability. Some recent improvements to file previews have been applied to the Quick Look pane and the single file window. ## ✨ Enhancements * Fix Terminal State Loss (#1843) @thecoolwinter * Search bar scrolls with the list closes #1818 (#1855) @scaredcr6w * Correctly view non-text files in single file window and Open Quickly (#1820) @plbstl ## 🐞 Bug Fixes * fix: Source Control Menu Commit Name (#1857) @NobelLiu ## 📝 Source Editor * fix(comments): Add Support for Commenting Multiple Lines https://github.com/CodeEditApp/CodeEditSourceEditor/pull/261 @activcoding ## 📄 Text View * Shift-Click to Extend Selection https://github.com/CodeEditApp/CodeEditTextView/pull/45 @thecoolwinter ## 👨‍💻 New Contributors * @scaredcr6w made their first contribution in #1855 * @NobelLiu made their first contribution in #1857 **Full Changelog**: https://github.com/CodeEditApp/CodeEdit/compare/v0.3.0...v0.3.1 <!-- minimumSystemVersion=13.0 -->

v0.3.0
? · 2024-08-17

# Task Running and Source Control Improvements We are introducing the ability to run tasks and see their current status and output. We have also improved source control integration by providing push, pull, fetch, and stash capabilities just to name a few. The UI around the utility area and terminal has also been improved. ## ✨ Enhancements * Enabled git push force and tags options (#1846) @austincondiff * Additional source control functionality (#1785) @austincondiff * Run Tasks (#1798) @activcoding * Tasks and Activity Viewer UI Improvements (#1831) @austincondiff * Update Task to Use Relative Working Path (#1844) @activcoding * Fixed terminal resize and scroll layout issues (#1845) @austincondiff * Improved utility area toggle animation (#1845) @austincondiff **Full Changelog**: https://github.com/CodeEditApp/CodeEdit/compare/v0.2.1...v0.3.0 <!-- minimumSystemVersion=13.0 -->

v0.2.1
? · 2024-07-27

## ✨ Enhancements * Enable preview for files that are not images or PDFs (#1822) @plbstl ## 🐞 Bug Fixes * Use `NSApp.keyWindow` Over Global `keyWindow` (#1819) @thecoolwinter **Full Changelog**: https://github.com/CodeEditApp/CodeEdit/compare/v0.2.0...v0.2.1 <!-- minimumSystemVersion=13.0 -->

v0.2.0
? · 2024-07-20

# Maintenance, Stability, and Groundwork for More to Come This release brings self-closing tags, UI improvements, better theme management including theme import, duplication, modification and deletion, support for the new system cursor introduced in macOS Sonoma, and upgraded file handling. It also incorporates various bug fixes and maintenance updates to ensure a more polished and reliable experience. ## ✨ Enhancements * Option to Use the System Cursor (#1812) @thecoolwinter * Validate filenames consisting solely of extensions (#1802) @LeonardoLarranaga * Highlight search query in 'Open Quickly' results (#1790) @plbstl * Windows Restore Correct Size (#1788) @thecoolwinter * Import, duplicate and delete themes (#1718) @austincondiff * Activity View Resize, Inspector Toggle, Window Consistency (#1776) @thecoolwinter * LSP Backend (#1739) @FastestMolasses * naturally orders files and folders #1714 (#1774) @hkarmoush * feat: Activity Viewer (#1769) @activcoding * Added font weight pickers to text editing and terminal settings (#1758) @austincondiff * Stop Modifying User's RC Files (#1753) @thecoolwinter * Use Single Text Storage For Documents (#1740) @thecoolwinter * Developer settings menu (#1733) @FastestMolasses * View text files that are not UTF-8 encoded (#1727) @plbstl * Show information for non-text files in the status bar (#1713) @plbstl * New tabs after current focused tab#1704 (#1715) @Shivam-Parekh * Only Save Workspace Settings If Necessary (#1702) @thecoolwinter * Added ability to hide toolbar (#1683) @knotbin * All recent projects searchable in Spotlight (#1680) @knotbin * Keyboard shortcut for tab switching (#1677) @knotbin * Workspace settings (#1670) @armartinez * Added Tooltips for Buttons In Navigator Bottom Toolbar (#1668) @dvandyy * Git branches list order and truncate priority issue (#1647) @phlpsong * Git branch show track information (#1644) @phlpsong * File icon improvements (#1645) @austincondiff * New split editor symbol (#1643) @austincondiff ## 🐞 Bug Fixes * Fix `WorkspaceDocument` Leak (#1808) @thecoolwinter * Fix Navigator Key Navigation Explosion (#1803) @thecoolwinter * Fix 'Open Quickly' fatal error (#1793) @plbstl * Add UTType conformance checks in `NonTextFileView` to properly preview files using QuickLook (#1783) @plbstl * Fix for bug showing preview icon for unknown files (#1768) @armartinez * File Icon Type setting reflects immediately #1765 (#1773) @hkarmoush * Using the correct color when File Icon Type is set to Monochrome (#1766) @austincondiff * Allow text files to be edited even when empty (#1724) @plbstl * Show Git history in the History Inspector, even when a remote is not configured (#1744) @simonwhitaker * Fix rendering of git commits with bodies in the History Inspector (#1742) @simonwhitaker * SearchKit memory leaks (#1735) @activcoding * New tabs after current focus Bug Fix for issue #1704 (#1719) @Shivam-Parekh * Fixes "Menu Bar Items Not Updating (#1684)" (#1697) @danielzsh * Correctly preview non-text files (#1707) @plbstl * delete warning message uses enumerator instead of shallow search (#1699) @knotbin * Distinguish between Move to Trash and Delete Immediately when right clicking a file or folder. (#1694) @plbstl * Resolved issue with SearchKit (#1688) @activcoding * Add avatar CommitListItemView and other fixes (#1676) @activcoding * Fixed commit changes file icons to support all symbols (#1672) @austincondiff * Rename `CommandPalleteView` and `CommandPalleteViewModel` classes (#1655) @DanKlaver15 * Rename `OverlayPanel` and `OverlayView` classes (#1653) @DanKlaver15 * Show An Alert If No Changes Available When Using Discard All Changes (#1642) @phlpsong * Fix: Filename with whitespaces and new lines (#1629) @phlpsong * Fix: Git branch picker does not load list in branch picker initially (#1637) @phlpsong * Adjusted titlebar spacing (#1638) @austincondiff * Fix toolbar tracking separator (#1636) @Wouter01 ## 🧰 Maintenance * Appcast Link To Live Release Notes (#1809) @thecoolwinter * Lay Foundation For Automation Testing (#1804) @thecoolwinter * update CodeEditTextView package (#1771) @plbstl * Update CONTRIBUTING.md (#1772) @activcoding * Clean Up Code (#1737) @FastestMolasses * Removed tab bar style setting and native editor tab design (#1761) @austincondiff * SwiftLint GH Actions Reporter (#1759) @thecoolwinter * Replace deprecated modifier .cornerRadius (#1748) @Jerry23011 * Update LogStream version, remove build setting (#1685) @Wouter01 * Fix broken project board links in CONTRIBUTING.md and README.md (#1690) @danielzsh * Added dependency injection (#1662) @FastestMolasses * Remove new window system (#1631) @Wouter01 ## 📝 Source Editor * Use System Cursor by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/251 * Fix Reference Cycle by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/255 * Fix Gutter Reference Cycle by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/257 * Toggle comment for current line via <kbd>⌘</kbd> <kbd>/</kbd> by @Sophiahooley in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/241 * Fix incorrect link by @ladvoc in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/246 * Autocomplete tags by @knotbin in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/247 * Show horizontal scrollbar only when `wrapLines` is off by @danielzsh in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/249 * Add `NSTextStorage` Initializer by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/248 * TreeSitter Tag Auto Close by @thecoolwinter in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/250 ## 📄 Text View * Implement the Emacs Kill Ring by @thecoolwinter in https://github.com/CodeEditApp/CodeEditTextView/pull/35 * Fix Page Up/Down Keys by @thecoolwinter in https://github.com/CodeEditApp/CodeEditTextView/pull/38 * Fix Hidden Cursor At End Of Doc by @thecoolwinter in https://github.com/CodeEditApp/CodeEditTextView/pull/39 * Fix Marked Text Input by @thecoolwinter in https://github.com/CodeEditApp/CodeEditTextView/pull/40 * Update scrollToVisible Loop by @thecoolwinter in https://github.com/CodeEditApp/CodeEditTextView/pull/29 * Lazier Layout, Cursor Height, First & Last Line Selections by @thecoolwinter in https://github.com/CodeEditApp/CodeEditTextView/pull/30 * Remove insets from scroll view by @danielzsh in https://github.com/CodeEditApp/CodeEditTextView/pull/27 * Fix Deleting Selected Range by @thecoolwinter in https://github.com/CodeEditApp/CodeEditTextView/pull/33 ## 👨‍💻 New Contributors * @LeonardoLarranaga made their first contribution in https://github.com/CodeEditApp/CodeEdit/pull/1802 * @simonwhitaker made their first contribution in https://github.com/CodeEditApp/CodeEdit/pull/1742 * @danielzsh made their first contribution in https://github.com/CodeEditApp/CodeEdit/pull/1697 * @plbstl made their first contribution in https://github.com/CodeEditApp/CodeEdit/pull/1694 * @knotbin made their first contribution in https://github.com/CodeEditApp/CodeEdit/pull/1677 * @armartinez made their first contribution in https://github.com/CodeEditApp/CodeEdit/pull/1670 * @DanKlaver15 made their first contribution in https://github.com/CodeEditApp/CodeEdit/pull/1653 * @Sophiahooley made their first contribution in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/241 * @ladvoc made their first contribution in https://github.com/CodeEditApp/CodeEditSourceEditor/pull/246 **Full Changelog**: https://github.com/CodeEditApp/CodeEdit/compare/v0.1.0..v0.2.0 <!-- minimumSystemVersion=13.0 -->