Changeset 2721688
- Timestamp:
- 05/11/2022 05:36:16 AM (4 years ago)
- Location:
- responsivevoice-text-to-speech/trunk
- Files:
-
- 4 edited
-
includes/responsivevoice-includes.php (modified) (1 diff)
-
includes/responsivevoice-options.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
responsivevoice-text-to-speech.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
responsivevoice-text-to-speech/trunk/includes/responsivevoice-includes.php
r2595481 r2721688 3 3 function RV_load_scripts() 4 4 { 5 $options = get_option('RV_settings'); 5 $options = get_option('RV_settings', ''); 6 $apiKey = !empty($options) && array_key_exists('RV_text_api_key', $options) ? $options['RV_text_api_key'] : ''; 7 6 8 $appendScriptTag = [ 7 9 'source=wp-plugin' 8 10 ]; 9 11 10 if( $options['RV_text_api_key']){11 $appendScriptTag[] = "key= {$options['RV_text_api_key']}";12 if(!empty($apiKey)){ 13 $appendScriptTag[] = "key=$apiKey"; 12 14 } 13 15 -
responsivevoice-text-to-speech/trunk/includes/responsivevoice-options.php
r2403917 r2721688 42 42 function RV_text_api_key_render() 43 43 { 44 $options = get_option('RV_settings'); 45 echo '<input class="form-control" type="text" name="RV_settings[RV_text_api_key]" value="' . $options['RV_text_api_key'] . '">'; 44 $options = get_option('RV_settings', ''); 45 $apiKey = !empty($options) && array_key_exists('RV_text_api_key', $options) ? $options['RV_text_api_key'] : ''; 46 echo '<input class="form-control" type="text" name="RV_settings[RV_text_api_key]" value="' . $apiKey . '">'; 46 47 } 47 48 -
responsivevoice-text-to-speech/trunk/readme.txt
r2595481 r2721688 5 5 Tags: audio, google translate, Google Voice, speech, text to audio, text to speech, text-to-speech, text2speech, speech synthesis api, webspeech api, voice, espeak, javascript, Speak, speech, spoken, text, text-to-speech, talk, listen, accessibility, a11y, webreader, ivona, tts, arabic, mp3, ogg, buddypress, button, chinese, english, french, german, google, welcome, greetings, hebrew, html, html5, iPad, iphone, italian, jquery, link, links, menus, mobile, multilingual, page, pages, plugin, plugins, portuguese, Post, posts, readability, Russian, seo, shortcode, sidebar, sound, spanish, gspeech, stats, tablet, tts, widget, wordpress, button, blind, visual impairment, elderly, ADA, BS 8878:2010, WCAG 2.0, Web Content Accessibility Guidelines 2.0 6 6 Requires at least: 3.6 7 Tested up to: 5.88 Stable tag: 1.7. 37 Tested up to: 6.0 8 Stable tag: 1.7.4 9 9 License: GPLv2 10 10 … … 80 80 81 81 == Changelog == 82 83 = Version 1.7.4 = 84 * Fix API Key include logic when the plugin is first installed 85 * Update "Tested up to" for upcoming Wordpress 6.0 release 82 86 83 87 = Version 1.7.3 = … … 296 300 == Upgrade Notice == 297 301 298 = 1.7. 3=302 = 1.7.4 = 299 303 * Upgrade the plugin for the latest improvements. -
responsivevoice-text-to-speech/trunk/responsivevoice-text-to-speech.php
r2595481 r2721688 4 4 Plugin URI: responsivevoice.com/wordpress-text-to-speech-plugin/?utm_source=wpadmin&utm_medium=plugin&utm_campaign=wprvttsplugin 5 5 Description: An easy to use plugin to integrate ResponsiveVoice Text to Speech into your WP blog. 6 Version: 1.7. 36 Version: 1.7.4 7 7 Author: ResponsiveVoice 8 8 Author URI: http://responsivevoice.com
Note: See TracChangeset
for help on using the changeset viewer.