Plugin Directory

Changeset 2367558


Ignore:
Timestamp:
08/24/2020 04:55:30 AM (6 years ago)
Author:
voxpow
Message:

Release 1.1.7

Location:
voxpow/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • voxpow/trunk/README.txt

    r2358858 r2367558  
    66Tested up to: 5.5.0
    77Requires PHP: 5.6
    8 Stable tag: 1.1.6
     8Stable tag: 1.1.7
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8787* Compatibility checks with WordPress 5.5
    8888
     89= 1.1.7 =
     90* Changes in tracking code snippet to support more field types
     91
    8992== Upgrade Notice ==
    9093
  • voxpow/trunk/loader.php

    r2358858 r2367558  
    33 * Plugin Name: Voxpow - Speech Recognition for your website
    44 * Description: Speech Recognition Tool powered by Machine Learning. Direct in your website and for free.
    5  * Version: 1.1.6
     5 * Version: 1.1.7
    66 * Author: Voxpow
    77 * Author URI: https://voxpow.com
  • voxpow/trunk/voxpow_class.php

    r2222107 r2367558  
    219219        return
    220220            "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)));";
    229228    }
    230229
Note: See TracChangeset for help on using the changeset viewer.