Changeset 2367558
- Timestamp:
- 08/24/2020 04:55:30 AM (6 years ago)
- Location:
- voxpow/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
loader.php (modified) (1 diff)
-
voxpow_class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
voxpow/trunk/README.txt
r2358858 r2367558 6 6 Tested up to: 5.5.0 7 7 Requires PHP: 5.6 8 Stable tag: 1.1. 68 Stable tag: 1.1.7 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 87 87 * Compatibility checks with WordPress 5.5 88 88 89 = 1.1.7 = 90 * Changes in tracking code snippet to support more field types 91 89 92 == Upgrade Notice == 90 93 -
voxpow/trunk/loader.php
r2358858 r2367558 3 3 * Plugin Name: Voxpow - Speech Recognition for your website 4 4 * Description: Speech Recognition Tool powered by Machine Learning. Direct in your website and for free. 5 * Version: 1.1. 65 * Version: 1.1.7 6 6 * Author: Voxpow 7 7 * Author URI: https://voxpow.com -
voxpow/trunk/voxpow_class.php
r2222107 r2367558 219 219 return 220 220 "var voxpowShow=voxpowShowTracker();voxpow&&voxpowShow&& 221 (voxpow.setLanguage(voxpowLanguage),voxpow.addCommands 222 (voxpowCommands),voxpow.addCallback(voxpowCallbacks), 223 SpeechKITT.voxpow(),SpeechKITT.setStylesheet(voxpowStylesheet), 224 SpeechKITT.setInstructionsText(voxpowSearchMessage), 225 SpeechKITT.setToggleLabelText(voxpowLabelText), 226 SpeechKITT.rememberStatus(voxpowRememberStatus), 227 SpeechKITT.render(),1===voxpowUseVoiceTyping&&(window.onload=function() 228 {document.querySelectorAll(voxpowQuerySelector).forEach(voxpowElementsIterator)}));"; 221 (voxpow.setLanguage(voxpowLanguage),voxpow.addCommands(voxpowCommands), 222 voxpow.addCallback(voxpowCallbacks),SpeechKITT.voxpow(), 223 SpeechKITT.setStylesheet(voxpowStylesheet),SpeechKITT.setInstructionsText(voxpowSearchMessage), 224 SpeechKITT.setToggleLabelText(voxpowLabelText),SpeechKITT.rememberStatus(voxpowRememberStatus), 225 SpeechKITT.render(),voxpowUseVoiceTyping&&document.addEventListener&&\"function\"==typeof 226 voxpowInitTextVoice&&(document.addEventListener(\"DOMContentLoaded\", 227 voxpowInitTextVoice,!1),setInterval(voxpowInitTextVoice,1e3)));"; 229 228 } 230 229
Note: See TracChangeset
for help on using the changeset viewer.