diff --git a/changelog.html b/changelog.html
index f0c223cb0d..aaf52850ff 100644
--- a/changelog.html
+++ b/changelog.html
@@ -1,3 +1,7 @@
+2016.10.13 - 1.8.2 - BetaFlight
+
+ - Added DSHOT600 and DSHOT150
+
2016.10.12 - 1.8.2 - BetaFlight
- More OSD parameters conform 3.0.1
diff --git a/manifest.json b/manifest.json
index 726c4cf48c..eee132acc5 100644
--- a/manifest.json
+++ b/manifest.json
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"minimum_chrome_version": "38",
- "version": "1.8.2",
+ "version": "1.8.3",
"author": "Betaflight Squad",
"name": "Betaflight - Configurator",
"short_name": "Betaflight",
diff --git a/tabs/configuration.js b/tabs/configuration.js
index cf741ba609..ca8c79425c 100644
--- a/tabs/configuration.js
+++ b/tabs/configuration.js
@@ -191,7 +191,8 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
}
if (semver.gte(CONFIG.flightControllerVersion, "3.1.0")) {
- escprotocols.push('DSHOT');
+ escprotocols.push('DSHOT600');
+ escprotocols.push('DSHOT150');
}
var esc_protocol_e = $('select.escprotocol');