Changeset 2391885
- Timestamp:
- 10/01/2020 06:39:49 PM (6 years ago)
- Location:
- voice2app/trunk
- Files:
-
- 1 added
- 3 edited
-
assets/images/Bars-1s-58px.gif (added)
-
classes/pages/class-general.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
voice-2-app.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
voice2app/trunk/classes/pages/class-general.php
r2262042 r2391885 32 32 $url = 'https://voice2app.com/api/narration/getnarration'; 33 33 $postcontent = str_replace(" ", " ", $post['var_3']); 34 //$postcontentfinal = str_replace("\n", " ", $postcontent); 35 34 36 $data = array( 35 37 "description" => $post['var_2'], -
voice2app/trunk/readme.txt
r2350072 r2391885 4 4 Requires at least: 4.6 5 5 Tested up to: 5.4.2 6 Stable tag: 1.0 56 Stable tag: 1.06 7 7 Requires PHP: 5.2.4 8 8 License: GPLv2 or later … … 71 71 == Changelog == 72 72 73 = 1.06 = 74 * This version supports both voice messaging and narration 75 * Updates to increase the size of text and gifs 76 73 77 = 1.04 = 74 78 * This version supports both voice messaging and narration … … 88 92 89 93 == Upgrade Notice == 90 = 1.0 2=94 = 1.04 = 91 95 This upgrade added gifs for processing and other updates to the messaging dialog. 92 96 -
voice2app/trunk/voice-2-app.php
r2350067 r2391885 3 3 /** 4 4 * 5 * @since 1.0. 45 * @since 1.0.5 6 6 * @package aMpVoice2App 7 7 * … … 9 9 * Plugin Name: Voice2App 10 10 * Description: Voice2App – A software service that provides audio super powers 11 * Version: 1.0. 411 * Version: 1.0.5 12 12 * Author: Jim Adams 13 13 * Author URI: https://www.adamstechsols.com/ … … 133 133 134 134 $actual_link = plugin_dir_url( __FILE__ ); 135 $src = $actual_link.'assets/images/Bars-1s- 38px.gif';135 $src = $actual_link.'assets/images/Bars-1s-58px.gif'; 136 136 $src2 = $actual_link.'assets/images/Spinner-1s-58px.gif'; 137 137 … … 165 165 } 166 166 .voice-modal label { 167 font-weight: 200; 168 color: #616161; 169 margin-top: 15px; 167 font-weight: 700; 168 font-size: 16px; 169 color: #000000; 170 margin-top: 15px; 170 171 } 172 173 171 174 </style> 172 175 <div id="success" style="display:none" class="message-success"> … … 184 187 185 188 </div> 186 <div id="message-container" style="display:none;margin-top:15px"> 187 <audio id="audio-element" preload="auto" controls src=""></audio> 188 <button class="btn btn-danger" id="delete-recording" onclick="deleteRecording()"><i class="fas fa-trash-alt"></i></button> 189 <div id="message-container" style="display:none;margin-top:1px;width:80%;"> 190 <audio id="audio-element" preload="auto" controls src=""></audio> 191 192 <button class="btn btn-danger" id="delete-recording" onclick="deleteRecording()"><i class="fas fa-trash" style="color:black;padding-top:5px;"></i></button> 189 193 </div> 190 194 <table class="border-none">
Note: See TracChangeset
for help on using the changeset viewer.