Matt Bierner
98b5ee978b
Replacing IDisposible[] with DisposableStore
...
#74250
2019-07-02 16:37:35 -07:00
Logan Ramos
26d0bbd5d9
Initial Strict Typing Support for Telemetry Events ( #75785 )
...
* Added command line information to display details about collected telemetry
* Telemetry tooling exploration
* Changing telemetry calls to be strongly typed
* Fixed an event definition
* Removed telemetry command
* More removing of telemetry command
* Fixed compilation errors
* Forgotten property
* Updated typings so diff was aligned
2019-07-01 14:37:43 -07:00
Rachel Macfarlane
3a6605a3c0
Report workspace stats in shared process
2019-06-24 10:25:30 -07:00
Sandeep Somavarapu
57f55c5bb9
#75713 Enable log level listening in web
2019-06-18 20:57:33 +02:00
Sandeep Somavarapu
0d0e4dfe40
Fix #75109
2019-06-11 09:55:20 +02:00
Sandeep Somavarapu
70d9efeac2
#75079 Use URI for settings
2019-06-07 18:44:32 +02:00
Waldir Pimenta
f3e4e47164
Fix spelling of the example abbreviation (e.g.)
2019-06-05 16:00:26 +02:00
Johannes Rieken
ee070dc2db
remove --prof-modules-flag, adopt new loader, https://github.com/microsoft/vscode/issues/62643
2019-06-05 15:04:41 +02:00
Sandeep Somavarapu
3dc76ed11f
Fix #74661
2019-06-04 12:30:04 +02:00
Sandeep Somavarapu
4026f653b4
#72906 Restructure spdlog service
2019-05-27 15:26:48 +02:00
Matt Bierner
0f32f0ef5f
Clean up some usages of IDisposable[]
...
Part of #74250
- Extend `Disposable` in classes where it makes sense
- Use `DisposableStore` for lists of disposables
- Make `combinedDisposable` take arguments instead of an array (so that you can't pass in an array and then modify the array after the fact)
2019-05-23 22:58:16 -07:00
Matt Bierner
ae8da480f0
Use fileService and Blob for resource viewer
...
Fixes #74191
Instead of using a base64 encoded data uri to display images, use the fileService to read Buffer, convert this to a Blob, and display the blob
2019-05-23 18:32:02 -07:00
Rachel Macfarlane
52ee044787
Show prompt in issue reporter when writing to clipboard, fixes #50659
2019-05-23 10:46:05 -07:00
Rachel Macfarlane
1e54e7f4cb
Decrease issue reporter url length limit, fixes #70343
2019-05-23 10:38:08 -07:00
Sandeep Somavarapu
cf87944720
do not check for ui extensions while installing on remote server
2019-05-23 05:44:28 +02:00
Sandeep Somavarapu
3c00afcb27
#72906 use async spdlog service
2019-05-22 04:36:21 +02:00
Benjamin Pasero
905680b459
Merge branch 'master' into ben/web-companion
2019-05-13 11:20:13 -07:00
Benjamin Pasero
4b5c68c1bd
web - scaffold a basic dev setup via "yarn web"
2019-05-09 13:13:27 +02:00
Benjamin Pasero
e1c2fcf955
debt - no more monaco-shell
2019-05-09 10:50:31 +02:00
Rachel Macfarlane
0595b3d76f
Improve error handling when opening issue reporter
2019-04-17 16:10:52 -07:00
Martin Aeschlimann
1d3a96edca
allow remote fonts to be loaded
2019-04-17 10:44:15 +02:00
Paul.K.Zhang
c78d0ff35c
fix typos
2019-04-15 19:16:09 +08:00
Rachel Macfarlane
668068e26f
Fix process explorer highest memory calculation
2019-04-12 14:34:20 -07:00
Rachel Macfarlane
9d958136be
Set initial focus on an input field when opening the issue reporter
2019-04-12 14:25:16 -07:00
Rachel Macfarlane
ea7e2600d8
Expose vscode.openIssueReporter command that allows passing an extensionId to open the reporter with
2019-04-11 14:28:53 -07:00
RMacfarlane
6dce972b61
Improve CSS
2019-04-10 20:57:40 +02:00
Sandeep Somavarapu
f329277979
- Define Machine Settings: Schema, Environment
...
- Scope machine settings
- Make remote settings scoped to machine settings
2019-04-10 18:25:13 +02:00
Andre Weinand
fd44b66c0f
cleanup multi extension debugging
2019-04-09 18:28:23 +02:00
Rachel Macfarlane
019f23ed01
Return processes in original order, not alphabetized
2019-04-08 16:30:35 -07:00
Rachel Macfarlane
4c512883c9
Improve error handling when fetching diagnostics
2019-04-08 15:49:57 -07:00
Rachel Macfarlane
97f93d2901
Process explorer refactoring
2019-04-05 15:14:21 -07:00
Rachel Macfarlane
d234937aed
More diagnostics refactoring
2019-04-04 17:30:27 -07:00
Andre Weinand
e07de5b3ad
support debuging more than one extension; fixes #71081
2019-04-04 16:11:13 +02:00
Rachel Macfarlane
65e55416c4
Some diagnostics refactoring
2019-04-03 15:51:20 -07:00
Joao Moreno
1a0da289fb
report snap on telemetry, issue reporter, about menu
...
fixes #71595
2019-04-02 15:35:38 +02:00
Benjamin Pasero
64c3f1a93e
debt - reduce explicit any or casts
2019-04-01 08:11:11 +02:00
Alex Dima
8fc88c6dc6
Move ipc.ts to /common/
2019-03-22 18:03:14 +01:00
Matt Bierner
61c369b5ab
Replace some instances of || null with withUndefinedAsNull
...
The latter is more explicit, correctly handles some edge cases, and helps tag places in the code where we should look into replacing null with undefined.
2019-03-21 10:40:43 -07:00
Matt Bierner
e7a7248009
Work on implicit any errors
...
#70352
2019-03-20 16:53:43 -07:00
Sandeep Somavarapu
cd10c5bde3
#70784 fix removing deprecated extensions on startup
2019-03-20 13:54:27 +01:00
Matt Bierner
eac048313a
Add typings for simple _ and other parameters that are missing types
...
For #70352
Uses `unknown` for parameters that we don't care about the type of. This prevents the type from being used incorrectly (which `any` would allow)
2019-03-19 23:42:28 -07:00
Alex Ross
8f16a02e66
Move remote agent environment out of node ( #70568 )
2019-03-15 17:00:57 +01:00
Benjamin Pasero
418470122b
nodeless - fix baseUrl
2019-03-14 12:36:03 +01:00
Benjamin Pasero
76c330c3cd
electron 5 - bootstrap a nodeless configuration ( #68302 )
2019-03-11 09:01:45 +01:00
Sandeep Somavarapu
a50020021c
Fix #69940
2019-03-07 10:43:04 +01:00
Matt Bierner
e80300adbe
Auto let -> const and auto mark privates as readonly in vs/code
2019-03-06 14:35:49 -08:00
Rachel Macfarlane
8b6daa690b
Fix includeExtensions checkbox value in issue reporter
2019-02-25 15:56:58 -08:00
Benjamin Pasero
1aee0c194c
debt - scaffold a service for package.json/product.json access
2019-02-21 12:55:46 +01:00
Rachel Macfarlane
da83a7ece5
Fixes #69029 , File On should be marked as a required field in issue reporter
2019-02-20 10:05:58 -08:00
Rachel Macfarlane
a509265116
Fixes
2019-02-12 16:49:50 -08:00