Skip to content

Commit 7c58d41

Browse files
author
Unity Technologies
committed
## [2.0.16] - 2022-06-08 Integration: - Prevent ADB Refresh while being in safe-mode with a URP project - Fixed an issue keeping the progress bar visible even after opening a script with Visual Studio.
1 parent b132c03 commit 7c58d41

File tree

17 files changed

+49
-111
lines changed

17 files changed

+49
-111
lines changed

CHANGELOG.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Code Editor Package for Visual Studio
22

3+
## [2.0.16] - 2022-06-08
4+
5+
Integration:
6+
7+
- Prevent ADB Refresh while being in safe-mode with a URP project
8+
- Fixed an issue keeping the progress bar visible even after opening a script with Visual Studio.
9+
10+
311
## [2.0.15] - 2022-03-21
412

513
Integration:
@@ -8,15 +16,12 @@ Integration:
816
- Added support for keeping file/folder structure when working with external packages.
917
- Fixed project generation not being refreshed when selecting Visual Studio as the preferred external editor.
1018

11-
12-
1319
## [2.0.14] - 2022-01-14
1420

1521
Integration:
1622

1723
- Remove package version checking.
1824

19-
2025
## [2.0.13] - 2022-01-12
2126

2227
Integration:
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Bundle style (release)
2+
xcodebuild -configuration Release
3+
4+
Standalone style (test)
5+
clang++ -D BUILD_APP -framework Foundation -framework AppKit main.mm

Editor/COMIntegration/COMIntegration~/BStrHolder.h.meta

Lines changed: 0 additions & 26 deletions
This file was deleted.

Editor/COMIntegration/COMIntegration~/CMakeLists.txt.meta

Lines changed: 0 additions & 7 deletions
This file was deleted.

Editor/COMIntegration/COMIntegration~/COMIntegration.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
#include <windows.h>
1212
#include <shlwapi.h>
1313

14+
#include <fcntl.h>
15+
#include <io.h>
16+
1417
#include "BStrHolder.h"
1518
#include "ComPtr.h"
1619
#include "dte80a.tlh"
@@ -441,6 +444,10 @@ static bool VisualStudioOpenFile(
441444
}
442445

443446
int wmain(int argc, wchar_t* argv[]) {
447+
448+
// We need this to properly display UTF16 text on the console
449+
_setmode(_fileno(stdout), _O_U16TEXT);
450+
444451
if (argc != 3 && argc != 5) {
445452
std::wcerr << argc << ": wrong number of arguments\n" << "Usage: com.exe installationPath solutionPath [fileName lineNumber]" << std::endl;
446453
for (int i = 0; i < argc; i++) {

Editor/COMIntegration/COMIntegration~/COMIntegration.cpp.meta

Lines changed: 0 additions & 27 deletions
This file was deleted.

Editor/COMIntegration/COMIntegration~/ComPtr.h.meta

Lines changed: 0 additions & 26 deletions
This file was deleted.

Editor/COMIntegration/COMIntegration~/dte80a.tlh.meta

Lines changed: 0 additions & 7 deletions
This file was deleted.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Direct style:
2+
cl /EHsc /std:c++17 COMIntegration.cpp /link Shlwapi.lib /out:"..\Release\COMIntegration.exe"
3+
4+
CMake style:
5+
cmake ../COMIntegration~ -B ./build
6+
cmake --build ./build --config=release -- /p:OutDir=..

Editor/COMIntegration/COMIntegration~/release-build.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)