You've already forked com.unity.ide.cursor
mirror of
https://github.com/boxqkrtm/com.unity.ide.cursor.git
synced 2026-05-15 14:50:08 +00:00
Compare commits
2 Commits
copilot/fi
...
v2.0.28
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fd8ff1fb70 | ||
|
|
d17d7814f6 |
@@ -1,5 +1,12 @@
|
|||||||
# Code Editor Package for Cursor
|
# Code Editor Package for Cursor
|
||||||
|
|
||||||
|
## [2.0.28] - 2026-02-12
|
||||||
|
|
||||||
|
Integration:
|
||||||
|
|
||||||
|
- Performance optimization for opening files
|
||||||
|
- Fix CS1525: Use C# 7.3-compatible null-coalescing for Unity 2019.4
|
||||||
|
|
||||||
## [2.0.27] - 2025-11-02
|
## [2.0.27] - 2025-11-02
|
||||||
|
|
||||||
Integration:
|
Integration:
|
||||||
|
|||||||
@@ -584,7 +584,12 @@ namespace Microsoft.Unity.VisualStudio.Editor
|
|||||||
var application = Path;
|
var application = Path;
|
||||||
|
|
||||||
var workspace = TryFindWorkspace(directory);
|
var workspace = TryFindWorkspace(directory);
|
||||||
|
// Use version-compatible null-coalescing for Unity 2019.4 (C# 7.3) support
|
||||||
|
#if UNITY_2020_2_OR_NEWER
|
||||||
workspace ??= directory;
|
workspace ??= directory;
|
||||||
|
#else
|
||||||
|
workspace = workspace ?? directory;
|
||||||
|
#endif
|
||||||
directory = workspace;
|
directory = workspace;
|
||||||
|
|
||||||
if (EditorPrefs.GetBool(ReuseExistingWindowKey, false))
|
if (EditorPrefs.GetBool(ReuseExistingWindowKey, false))
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"name": "com.boxqkrtm.ide.cursor",
|
"name": "com.boxqkrtm.ide.cursor",
|
||||||
"displayName": "Cursor Editor",
|
"displayName": "Cursor Editor",
|
||||||
"description": "Cursor editor integration for supporting Cursor as code editor for unity. Adds support for generating csproj files for intellisense purposes, auto discovery of installations, etc.",
|
"description": "Cursor editor integration for supporting Cursor as code editor for unity. Adds support for generating csproj files for intellisense purposes, auto discovery of installations, etc.",
|
||||||
"version": "2.0.27",
|
"version": "2.0.28",
|
||||||
"unity": "2019.4",
|
"unity": "2019.4",
|
||||||
"unityRelease": "25f1",
|
"unityRelease": "25f1",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
Reference in New Issue
Block a user