diff --git a/README.md b/README.md index f30d2dd..488a62d 100644 --- a/README.md +++ b/README.md @@ -155,9 +155,10 @@ The minimal version is limited by the core component Electron, you may want to c - [x] GNU/Linux x86 (`deb`, `rpm`, `tar.gz`) ([up to v1.35.1](https://code.visualstudio.com/updates/v1_36#_linux-32bit-support-ends)) - [x] GNU/Linux arm64 (`deb`, `tar.gz`) - [x] GNU/Linux armhf (`deb`, `tar.gz`) -- [x] Windows 7 or newer x64 -- [x] Windows 7 or newer x86 -- [x] Windows 10 arm64 +- [x] Windows 10 / Server 2012 R2 or newer x64 +- [x] Windows 10 / Server 2012 R2 or newer x86 +- [x] Windows 10 / Server 2012 R2 or newer arm64 + ## Donate diff --git a/update_settings.sh b/update_settings.sh index 48ab1bf..0e32374 100755 --- a/update_settings.sh +++ b/update_settings.sh @@ -4,6 +4,7 @@ DEFAULT_ON="'default': TelemetryConfiguration.ON" DEFAULT_OFF="'default': TelemetryConfiguration.OFF" TELEMETRY_CRASH_REPORTER="'telemetry.enableCrashReporter':" TELEMETRY_CONFIGURATION=" TelemetryConfiguration.ON" +NLS=workbench.settings.enableNaturalLanguageSearch # include common functions . ../utils.sh @@ -47,3 +48,4 @@ update_setting () { update_setting "${TELEMETRY_CRASH_REPORTER}" src/vs/workbench/electron-sandbox/desktop.contribution.ts update_setting "${TELEMETRY_CONFIGURATION}" src/vs/platform/telemetry/common/telemetryService.ts +update_setting "${NLS}" src/vs/workbench/contrib/preferences/common/preferencesContribution.ts