diff --git a/CHANGELOG.md b/CHANGELOG.md index 2392b07..d5b67b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Voice Fill Changelog +## [1.4.4] - 2019-07-08 +### Added +### Changed +### Removed +### Fixed +- Issues with the silence detector module on Firefox versions newer than 67. + ## [1.4.3] - 2018-10-22 ### Added - Show changelog after upgrade diff --git a/extension/background.js b/extension/background.js index aa6fe9c..2ddc6b4 100644 --- a/extension/background.js +++ b/extension/background.js @@ -9,7 +9,7 @@ const analytics = new TestPilotGA({ ds: 'addon', an: 'Voice Fill', aid: 'voicefill@mozilla.com', - av: '1.4.3' + av: '1.4.4' }); browser.runtime.onMessage.addListener(event => { diff --git a/extension/manifest.json b/extension/manifest.json index c71c781..1e9b42d 100644 --- a/extension/manifest.json +++ b/extension/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Voice Fill", - "version": "1.4.3", + "version": "1.4.4", "description": "Adds voice input to popular search pages in Firefox. Learn more about Voice Fill at https://testpilot.firefox.com", "developer": { "name": "Emerging Technologies Advanced Dev Team", diff --git a/package.json b/package.json index 7507b9a..7988a93 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "voicefill", "id": "voicefill@mozilla.com", "description": "This is a simple WebExtension that adds support to use Speech To Text as an input method in web pages.", - "version": "1.4.3", + "version": "1.4.4", "author": { "name": "Andre Natal & Fabrice Desré", "url": "https://github.com/mozilla/voicefill"